(no title)
mikedelago | 1 year ago
AzerothCore's "killer feature" is that it has a module system, where the game server can use C++ code to hook onto events. It's pretty slick and works quite nicely.
One of the things I've been interested in working on is setting up dynamic linking for the modules so it's easier to just download the compiled module and run it with the server instead of compiling the server with the module. The biggest problem I've run into with my implementation for that is the .so for each module ends up being on the scale of hundreds of megabytes, which seems incorrect.
lairv|1 year ago
mikedelago|1 year ago
There's a lot of people involved, and a lot of various PR's and issues in github. As with most projects, this is where it's a situation that the game is so large and there are only so many people maintaining the project and so many people testing or confirming issues.
The project is a fork of a fork of a fork, for the most part. Much of the code comes from either SunwellCore (parent), or more likely TrinityCore (grand-parent), and over the past few years since the SC fork has been maintenance and bugfixes. I don't think any of the "current" contributors wrote the code that manages the actual game world, for example. My biggest complaint, I would say, is that at times there's a lot of "well this is how we've done it in the past" as opposition to a new feature or pull request
I think I would consider AzerothCore to be as complex as a medium-large monolithic service, I'd say. That's basically what it is, since the client is "off-the-shelf". There's a lot going on in the source code, but it's generally not difficult to figure out where an issue is.
I hope that helped answer your question.
Rexxar|1 year ago
_akhe|1 year ago
mikedelago|1 year ago
yeah, it's possible to create a new client. It'd be a lot of work, though.
Some people make their own patches for the standard client if they have something they want to integrate. I don't really know much about that, though
Sakos|1 year ago
How difficult is it to start contributing to AC?
mikedelago|1 year ago
Testing PR's and confirming that the behavior is correct is actually one of the best things people can do to help - that's something we're always short on.
For most of the code, as long as you can justify the change, it makes sense, and it's in line with the style standard, it'll probably not be an issue