summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-05-31Updating ENet to version 1.3.2Stefan Dombrowski6-51/+270
Source: http://enet.bespin.org/download/enet-1.3.2.tar.gz
2011-05-30Routing party invite through the map serverStefan Dombrowski7-35/+82
The player sends party invites to the game server. If the invitee is within the visual range of the inviter, the game server forwards the invite to the chat server. Reviewed-by: Bjorn, Jaxad0127
2011-05-26Allow monsters to drop multiple itemsStefan Dombrowski3-52/+32
Before at most one item was droped and the sum of all probablilites was limited to 100%. Also in the example data drops are changed to existing items.
2011-05-26Fixing negative being positionsStefan Dombrowski1-1/+4
Reviewed-by: Jaxad0127
2011-05-17Fixed an item dupe bugAngelo Castellani1-4/+15
Listed: http://bugs.manasource.org/view.php?id=324 Reviewed-by: Yohann Ferreira Reviewed-by: Jared Adams
2011-05-16Starting to fix party inviteStefan Dombrowski3-9/+19
Reviewed-by: Bjorn
2011-05-15Removed unused variableThorbjørn Lindeijer1-3/+1
2011-05-15Fixed compile with GCC 4.6Thorbjørn Lindeijer2-1/+2
* Include cstddef to be able to use size_t * Replace NULL with 0 since NULL doesn't happen to be defined in any included header file
2011-05-01Changed the <being-effects> tag to <effects>.Yohann Ferreira1-2/+2
Effects aren't applied only on beings. Hence the former tag name was irrelevant.
2011-05-01Renamed the mana-status-effects.xml to status-effects.xmlYohann Ferreira2-1/+1
In fact, the client never prefixed that file. Hence, the server doesn't have to.
2011-05-01Changed the server to look for the skills.xml file.Yohann Ferreira2-1/+1
This, instead of the mana-skills.xml file, to follow latest client changes.
2011-04-27fixed a bug in the example crafting scriptsPhilipp Sehmisch1-2/+2
(trivial change)
2011-04-27Added a simple crafting systemPhilipp Sehmisch11-0/+253
A client can craft something using the @craft command. The command needs a list of item names and amounts. The gameserver checks if the character has these items in the inventory and then passes the list together with the character handle to the lua script function on_craft in the script file scripts/crafting.lua. This function can then be used to evaluate if the list is a valid crafting combination and when this is the case take or give items. Implemented two example crafting scripts there, one which enforces exact item order and amount and one which doesn't. Both are disabled per default and one needs to be enabled by uncommenting a line. Also gave the player group permission to use the @craft command in permissions.xml and added two new items (wood and iron) required for the example crafting combination. Resolves: #333 Reviewed-by: bcs86, Bertram
2011-04-19Implemented scriptable effects on item use and dispell.Yohann Ferreira4-20/+93
Reviewed-by: Thorbjorn.
2011-04-18Made the server send the being position each 5 seconds.Yohann Ferreira2-4/+14
This will permit the client the make position resyncs when necessary, and make use of the MOVING_POSITION and DESTINATION where relevant. Reviewed-by: Thorbjorn.
2011-04-17Added a shake effect when Harmony is disappearing.Yohann Ferreira1-1/+7
... And one when she's coming back. Reviewed-by: Jaxad0127.
2011-04-17Added of precised some info I found very useful while debugging.Yohann Ferreira2-8/+28
Reviewed-by: Jaxad0127.
2011-04-17Removed useless calls to updateDerivedAttributes().Yohann Ferreira2-2/+0
The setAttribute() already takes care of updating them. Reviewed-by: Jaxad0127.
2011-04-17Removed an unecessary call to attribute recalculation for monsters.Yohann Ferreira1-1/+0
The only need to call this function was to trigger derived attributes recalculation as the base attribute recalulation does nothung for monsters atm. And this is useless as setAttribute() already triggers derived attributes recalulation. Reviewed-by: Jaxad0127.
2011-04-17Fix beings raw speed calculation when obtaining the TPS speed.Yohann Ferreira1-1/+6
The bug made the monsters unable to move. Reviewed-by: Jaxad0127.
2011-04-16Removing unused enum EMAILCHG_EXISTS_EMAILStefan Dombrowski1-5/+0
The protocol uses ERRMSG_EMAIL_ALREADY_EXISTS instead.
2011-04-16Set log verbosity earlier in game server to actually help debug.Yohann Ferreira1-6/+6
Before that, all the loading information were kept at info level. Trivial.
2011-04-15Fixed crash on first map updateThorbjørn Lindeijer2-0/+16
The crash happened when it was trying to move an NPC from its old zone to its new zone. The old zone was based on the old position, which was (0,0). That crashed since its zone didn't match its old position, but its new one. This fix makes sure to update the old position to be in sync with the zone, by resetting it after being inserted into the MapComposite. Reviewed-by: Yohann Ferreira
2011-04-13Fixed swapping of equipment and inventory slotsThorbjørn Lindeijer1-3/+4
This was happening when retrieving characters from the database. Also made the query more explicit about which columns it requests. Reviewed-by: Yohann Ferreira
2011-04-13Fixed equipment duplication when updating it.Yohann Ferreira1-1/+7
Reviewed-by: Thorbjorn.
2011-04-10Initialize attribute base and cached modified valuesThorbjørn Lindeijer1-0/+2
Attributes that didn't get a value yet are not communicated from account to game server. This could leave some attributes with uninitialized (random) values, like the amount of gold or some uncalculated attack speed bonus. Defaulting the value to 0 seems to be appropriate for all current cases. When another default value should be used, it can be specified in attributes.xml and will be sent from the account server. Reviewed-by: Stefan Dombrowski
2011-04-10Fixed infinite loop in deserializeCharacterDataThorbjørn Lindeijer1-10/+5
Could happen on servers where a character is being communicated that has something equipped. The infinite loop was due to using "while (msg.getUnreadLength())" on a message after having read one byte too much, causing it to miss the 0 bytes unread and count to minus infinity. This is a danger that we should probably also fix generally. The byte that was read too much was equipmentInSlotType, which I think should have been the number of items equipped in a certain slot type. This number is never written by the serializeCharacterData function and also doesn't seem necessary. When multiple items are equipped in a single equipment slot type, there will simply be multiple pairs transmitted for that equipment slot type. Reviewed-by: Freeyorp
2011-04-04Fixing reading of drop rate from monsters.xmlStefan Dombrowski1-2/+2
The xml gives the drop rate as a floating point number. Also added 0.5 for correct rounding. (Without it 0.7% calculates to 69.) Reviewed-by: Jaxad0127
2011-04-03Changed SYNC_BUFFER_SIZE to unsigned to avoid compiler warningThorbjørn Lindeijer1-2/+5
It's being compared to an unsigned integer. Reported-by: Stefan Dombrowski
2011-04-02Split GameHandler::processMessage up into multiple functionsThorbjørn Lindeijer2-394/+481
One huge function that handles all the messages isn't very readable and causes everything to be indented by several levels. Hence we generally split this up. It also exposed a missing 'break;' when handling the PGMSG_USE_SPECIAL message, which would continue into the handling of PGMSG_ACTION_CHANGE. Reviewed-by: Stefan Dombrowski
2011-04-02Some ChatHandler cleanupsThorbjørn Lindeijer4-121/+21
* Removed a lot of pointless documentation that was mainly repeating the function name and otherwise just filling up space. * Synced a few method names to the names of the messages that they were handling. * Removed an unimplemented method (sendPartyMemberInfo) Reviewed-by: Jared Adams
2011-04-02Some cleanups related to syncing from game to account serverThorbjørn Lindeijer4-35/+27
* Remove SYNC_END_OF_BUFFER since the end of a message can already be identified by no more data being available. * Consistently prefix ++ rather than postfix ++ when incrementing mSyncMessages. * Made SYNC_BUFFER_SIZE into constants rather than defines, and moved them into the .cpp file since they're not used anywhere else. * Just use 1 and 0 to indicate online status. No point in writing it like 0x01 and 0x00. * Merged some duplicated documentation for AccountConnection::syncChanges. Reviewed-by: Jared Adams
2011-03-31Fixing account server crash when leaving guildStefan Dombrowski1-1/+3
This resolves http://bugs.manasource.org/view.php?id=323
2011-03-30Fixing selection of a character if lower slots are emptyStefan Dombrowski1-1/+1
This resolves http://bugs.manasource.org/view.php?id=321 Reviewed-by: Jaxad0127, VUT
2011-03-24Rely more on the functionality in XML::DocumentThorbjørn Lindeijer7-79/+22
By default XML::Document will use the ResourceManager to resolve the file name you pass to it. There is no point in disabling that functionality only to resolve it manually. Reviewed-by: Jared Adams
2011-03-24Use a map to quickly find items and monsters by their nameThorbjørn Lindeijer5-59/+90
Introduced a template class NameMap, which provides a nice API for mapping any custom types by their name. This change also makes any duplicate item or monster definitions be complete ignored, rather than being merged into the first definition. Reviewed-by: Philipp Sehmisch Reviewed-by: Yohann Ferreira
2011-03-23Fixed problems with loading XML files containing Windows newlinesThorbjørn Lindeijer5-154/+37
By using xmlParseFile instead of xmlParseMemory, the system-dependent newlines should be handled automatically. The .tmx.gz files should still be supported, but instead of manually decompressing them the xmlParseFile function should take care of that. It also fixes the leaking of XML documents in both the SkillManager as well as the PermissionManager, since they now rely on XML::Document, which cleans up automatically. Reviewed-by: Stefan Dombrowski
2011-03-23Simplify implementation of fileExistsThorbjørn Lindeijer1-26/+8
2011-03-20Updating C::B: Moved defines.h and manaserv_protocol.h into 'common'Stefan Dombrowski2-4/+4
The files had been moved in commit: 5b3c4a585b211b03fb2999cddd2558e030ed5c0e
2011-03-20Renamed some members to adhere to naming standardThorbjørn Lindeijer2-25/+25
2011-03-20Introduced separate functions for item database loadingThorbjørn Lindeijer3-299/+337
This splits the huge ItemManager::reload() into readEquipSlotsFile() and readItemsFile(), the latter of which is further split up into multiple functions for reading the different elements. Just to keep the amount of nesting down and increase the readability. Removes the need for huge eye-catching comment blocks. Reviewed-by: Freeyorp
2011-03-20Introduced ModifierLocation structThorbjørn Lindeijer3-25/+41
Easier to understand than a std::pair<unsigned int, unsigned int>, or functions like getTagFromInfo(unsigned int, unsigned int), which does not make clear what that "info" actually is. Now it's simply getTag(const ModifierLocation &location), documenting itself and also allowing the name to be shorter. Reviewed-by: Freeyorp
2011-03-20Introduced some functions for reading the attributes fileThorbjørn Lindeijer2-148/+159
Keeps the code indentation within reasonable limits and makes the structure easier to follow. Reviewed-by: Freeyorp
2011-03-20Renaming stuff to make the code more readableThorbjørn Lindeijer7-34/+36
SCOPE_TYPES -> ScopeType (plural was confusing) ATTR_BEING -> BeingScope ATTR_CHAR -> CharacterScope ATTR_MOD -> MonsterScope ATTR_MAX -> MaxScope AttributeScopes -> AttributeScope (A single scope seems to include multiple lists of attributes. Seems wrong to me to name this type in plural form.) getAttributeInfoForType -> getAttributeScope (just naming it after what it is actually returning) Reviewed-by: Freeyorp
2011-03-20Moved defines.h and manaserv_protocol.h into 'common'Thorbjørn Lindeijer24-28/+29
Just seems a bit more organized to me.
2011-03-20Some renamings to try to make things more readableThorbjørn Lindeijer4-110/+146
AT_TY -> StackableType TY_ST -> Stackable TY_NST -> NonStackable TY_NSTB -> NonStackableBonus AME_TY -> ModifierEffectType AME_MULT -> Multiplicative AME_ADD -> Additive Got rid of related documentation, which is now stating the obvious. Also renamed many related variables. Reviewed-by: Freeyorp
2011-03-20Use of uint64_t requires including C99 header stdint.hThorbjørn Lindeijer1-0/+2
This is not standard C++... Reviewed-by: Freeyorp
2011-03-20General cleanups and code style fixesThorbjørn Lindeijer9-125/+107
A bunch of variables that were continuously requested from the configuration are now members of the AccountHandler. Reviewed-by: Freeyorp
2011-03-18Improved error handling in chr_shake_screen Lua functionThorbjørn Lindeijer1-22/+10
It's better to use luaL_checkint than manually checking and printing out an error, since using the helper function makes a more informative error message. Also, scripts errors need to be raised before constructing objects, since due to the way Lua does error handling the destructors of the objects will not be called. Also fixed an issue with the 4th parameter, which was first cast to integer and then multiplied by 10000. Now the multiplication happens before the casting to integer. Reviewed-by: Crush
2011-03-18Improved @ban commandPhilipp Sehmisch4-16/+43
When banning a character, the game master now sets a time unit (m, h, d, w or y for minutes, hours, days, weeks or years) after the duration. Ban durations longer than 2^16 minutes are now possible. The banned character is now kicked automatically and the banning character receives a feedback chat message. Reviewed-by: Thorbjorn