summaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)AuthorFilesLines
2023-05-26Fixed login in case an account gets two pending tokens assignedHEADmasterThorbjørn Lindeijer1-1/+1
Not entirely sure if this is what was happening, but if a PAMSG_LOGIN_RNDTRGR was handled, a new pending account was always created and appended to mPendingAccounts. However, when handling the follow-up PAMSG_LOGIN, only the first pending account with matching username was checked, which could result in a failed login due to mismatching token. Resolved this issue by unifying the client-specific random token with the Stellar token stored on the AccountClient. This means the username value in PAMSG_LOGIN_RNDTRGR could be removed. Eventually it would also be nice to simplify this further such that the token is automatically sent to the client after connecting rather than being something that needs to be requested.
2023-05-16Allow account email to be null in the databaseThorbjørn Lindeijer1-1/+1
When using login with Stellar, the email address remains empty. This was causing issues since the email is also required to be unique, in effect only a single Stellar account could exist. Resolved this by allowing the email column to be null, since the unique requirement does not cover null values. An empty email will now be stored as null value. For non-Stellar logins, an email address is still required.
2023-05-15Manage CharacterData using std::unique_ptrThorbjørn Lindeijer1-0/+2
Fixes many memory leaks, but also made it clear that we're very often loading all the character data only to immediately throw it away again, even when most of the time all we really need is the database ID or the name.
2023-05-15General code cleanupsThorbjørn Lindeijer1-1/+1
* Overall includes cleanup * Use std::make_pair * Make some functions const
2023-05-05Added net_stellarLoginUrl configurationThorbjørn Lindeijer1-1/+1
The client needs to know the URL to open in the browser. The bare token is still sent as well, which might allow the client to directly interact with a Stellar wallet in the future.
2023-05-05Added support for logging in with StellarThorbjørn Lindeijer1-0/+2
* Added PAMSG_STELLAR_LOGIN / PAMSG_STELLAR_LOGIN_RESPONSE, which is used by the client to request a login token that can be signed using a Stellar wallet. * Added uWebSockets dependency, used to listen for a separate server that verifies signed tokens (the Stellar Bridge). When a token is verified, it is sent to manaserv-account, which then sends a APMSG_LOGIN_RESPONSE to the client matching the token. * Added RapidJSON dependency to parse the JSON WebSocket messages. * To keep everything in a single thread, uWebSockets is now driving the event loop. Processing of ENet hosts, writing stats and expired bans have been moved to uSocket timers. * C++ standard updated to C++17, as required by uWebSockets. When Stellar is used to login, the public key is used as the username. It might be better to introduce an explicit field for this, especially when we want to enable an account to feature both Stellar login as well as login with username / password.
2022-08-19Apply C++11 fixitsThorbjørn Lindeijer1-1/+0
modernize-loop-convert modernize-deprecated-headers
2022-08-19Apply C++11 fixitsThorbjørn Lindeijer5-13/+13
modernize-use-auto modernize-use-nullptr modernize-use-override modernize-use-using
2022-06-16Updated PhysFS usageThorbjørn Lindeijer1-6/+7
We now require at least PhysFS 2.1. Also no longer add the "current directory" to the search path and allow the "PKG_DATADIR" used to locate files shipping with the server to be overridden by the "serverPath" configuration variable. Closes #81
2013-11-28Include the list of characters in the login responseThorbjørn Lindeijer1-2/+3
This makes it easier on the client to decide whether to immediately open the Create Character page or to go to the Choose Character page. Still supports client version 9 as well.
2013-10-16Fixed protocol descriptionErik Schilling1-1/+1
2013-10-13Added GPMSG_NPC_BUYSELL_RESPONSEThorbjørn Lindeijer1-0/+1
Without this message it is not possible to reliably know how many items were traded with an NPC at the client side. It helps with updating the shop's inventory.
2013-10-01Send the character data in a single messageErik Schilling1-7/+7
2013-09-26Store questlog values in the databaseErik Schilling1-2/+2
2013-09-19Synchronized some tweaks to protocol file from the clientThorbjørn Lindeijer1-4/+4
2013-09-19Removed the unused OBJECT_ACTOR enum valueThorbjørn Lindeijer1-9/+6
NPCs, monsters and character are all actors, but no entity exists that has "actor" as its type. To avoid having to increment the protocol version, the values of the different entity types are now mentioned explicitly.
2013-09-19Removed unused being state enumsThorbjørn Lindeijer1-18/+0
2013-09-15Fixed handling of reconnects while the old connection is still validErik Schilling1-1/+2
The old connection is now terminated. And the new connection will receive the character data properly.
2013-09-13Added basic questlog supportErik Schilling1-0/+59
I did this patch quite a while ago. Big thx to Stefan Beller for "rebasing" it.
2013-09-09Send equipment data for character selectionErik Schilling1-2/+3
2013-09-08Actually send the info about beings using direction abilitiesErik Schilling1-0/+1
2013-09-08Added support for direction based ability targetsErik Schilling1-33/+34
I had to rearrange the protocol a bit in order to allow to keep the related things together.
2013-09-08Renamed character.cpp to charactercomponent.cppErik Schilling1-1/+1
Now we do not have two character.cpp files in the repository.
2013-09-08Cleaned up the inventory handlingErik Schilling2-29/+17
Things done: - Removed the equips table and added another column which keeps track about whether the item is equipped or not - Added a message to notify the client about failing equips instead of hardcoding to chat notification - Removed the move possibillity. It was a quite long function and our future idea of the inventory does not need any moves - Removed the inInventory and inEquipment parameters from chr_inv_count, but added a equipped key to the table that chr_get_inventory returns This change makes equipped items still being in the inventory. This means in-inventory triggers are still active! However it makes no sense to disable this triggers during equipping since it will appear as still in the inventory to the client.
2013-09-01Fixed inconsistent type of hairstyle networkingErik Schilling1-3/+3
2013-08-26Made cooldowns of abilities scriptableErik Schilling1-3/+3
- Removed hardcoded using of attributes - Simply introduced lua functions to set global and ability cooldowns - Requires database update - Bumps the protocol
2013-08-26Readded level handlingErik Schilling2-1/+4
Things done: Wrote a entity:give_experience function (lua side only). Renamed characterpoints to attributepoints (no db update. Did not want to do one for a simple rename). Temponary introduced a ATTR_LEVEL constant. TODO: dehardcode this. Script binds for settings the correction and attribute points.
2013-08-26Removed skillsErik Schilling2-9/+3
This removes support for skills. The plan is to allow to implement the skills as they were implemented before via attributes. This adds a lot more flexibility to the server creators while also removing the confusion about skills and attributes. So this change does: - Remove the skillmanager with all its calls, the skill xml file, etc - Move exp giving to the script engine: --> Allows to implement the old behaviour (and more) in the scripts - Remove the exp tag from the monster definition: + Since the server itself does not require it anymore it feels wrong to require it for EVERY monster. TODO: Add a system to add properties to the monsters/items.xml which allow defining things like the exp and allows to read the value from the script engine. + Small drawback, but it should not be hard to implement this property system. - Drop the level networking and calculation. + level calculation will happen via the attribute system later but i would prefer to do this in a seperate patch since this patch already got longer than expected especially since this requires to make setting correction points and available status points scriptable. + The level would be simply set as a attribute, the int number of it will be the level, the remaining digits will be the % number till the next levelup. - NOT remove any existing skill tables in the database update scripts. + There is no way to move them into the attribute table in a unified way (there are too many different way they could have been used). So server admins have to care about moving theirs skills to attributes themselves. + Keeping the old tables does not hurt for existing databases. So removing does not give any advantage/is required anyway. The now obsolote info about the EXP transaction is not removed for updated databases either. (The update script basically only bumps the version number without doing anything else. - bump the network protocol version --> old clients won't be able to connect. - bump the database version --> serveradmins need to update their db.
2013-08-26[Abilities] Removed the old autoattack systemErik Schilling1-17/+0
As a side effect i had to remove the monster attack AI for now. I will readd this as next thing.
2013-08-26[Abilities] Inform other players about ability usesErik Schilling1-0/+2
2013-08-26[Abilities] Added support for a global cooldownErik Schilling1-0/+1
Each ability can now define a cooldown that prevents the player from using other abilities for a while. The time of this cooldown can be set to any attribute. The modified value of the attribute is the value of the cooldown in game ticks. The cooldown will be automatically started if the ability has `autoconsume` set to true. Otherwise a script has to call entity:cooldown_ability(ability).
2013-08-26[Abilities] Added network message for removed abilityErik Schilling1-0/+1
This prevents really nasty code clientside
2013-08-26[Abilities] Renamed specials to abilitiesErik Schilling1-4/+4
2013-05-02Fixed a bunch of cppcheck warningsErik Schilling1-10/+6
2013-04-30Bumped the protocol version to 3Thorbjørn Lindeijer1-1/+1
Version 2 was on the lpc2012 branch. With version 3 the lpc2012 and master branches use again the same protocol.
2013-04-29Single xml solutionPrzemysław Grzywacz3-7/+112
Mana-mantis: #506.
2013-04-27Use nullptr instead of NULL everywhereErik Schilling4-6/+6
2013-04-11Converted Being into a ComponentErik Schilling2-7/+7
I did not really care too much about staying consistent with the use of static_casts to Actors since they are only temporary anyway until Actor is a component too.
2013-04-11Converted the Character class into a componentErik Schilling2-10/+13
A CharacterData was created as a proxy class in order to allow using the old serialization method.
2013-04-02Fixed multiple warnings and errors that blocked c++0xErik Schilling1-1/+1
This allows the server to compile with c++0x (and enables it). This also includes some coding style / readabillity fixes.
2013-02-24Added possibility to reserve mapsErik Schilling2-1/+13
If you set net_gameServerName you can now reserve maps in the maps.xml. There you have to add the servername - property to the <map> tag. Then the map will only be activated by that server. Also changed the activate sequence that the account server now tells the game server what maps to activate (previously the server requested all maps and the account server said yes or no). TODO: Fix general inter server map switching.
2013-02-24Made the scripts being able to installErik Schilling1-3/+7
The game server will now look for the scripts in this order: - serverPath - config value - current working directory - the PKG_DATADIR #define
2013-02-03Modifications to allow crosscompiling with mingwErik Schilling2-0/+12
Reviewed-by: bjorn.
2013-02-01Added emote support.Yohann Ferreira1-0/+2
2013-01-09Replaced 'unsigned int' with 'unsigned'Thorbjørn Lindeijer2-9/+9
Same thing, but shorter.
2013-01-08Work on (Auto)Attack system.Erik Schilling1-9/+40
During the implementation bjorn and I agreed to limit the number of attacks that can be used in the same tick to one. This makes a lot of stuff easier and the client cannot display two frames at the same time Things done: - Implemented setting of attacks when equipping/unequipping items - Single place where the xml attack node is parsed - Finished attack logic - Unified the attack handling of monsters and characters - Added a global cooldown after attack use (not only for next use of same attack) - Removed the temponary attributes for the monster attack values - Priorities for all attacks - Rewrote the attack core: - Attacks now have this attributes: - warmup -> time a attack needs after starting it to actually deal the damage - cooldown -> time a attack needs after dealing damage before another attack can be used - reuse -> time before the same attack can be used again - If no attack is performed at the moment the following is done: - make a list with all ready attacks - check for attack that has the necessarily range and highest priority - start this attack (inform client about it) - when warmup is finished -> trigger damage - when cooldown is finished -> allow to use other (or the same if reusetimer allows) attacks TODO: - sync client with this to allow better timed animations
2013-01-08Rename AutoAttack to AttackErik Schilling1-1/+1
2012-10-11Moved order of sending genderErik Schilling1-4/+4
Gender is shared. There is no reason in duplicating code *Breaks compatbility with old clients* *Requires clientside patch* Reviewed-by: Stefan Beller.
2012-07-17Added lua bind to send text effect particle to clientsErik Schilling1-0/+1
Change is tested. Reviewed-by: bjorn.
2012-05-25Fixed handling of skillsErik Schilling1-1/+1
- Removed possibility of skills getting mixed with attributes - Made the server sending the level of the current skill on exp change (currently the client could calculate it itself, but it allows more flexibillity in future this way) - Fixed reading of skills out of the database (for some reason the status effects were added as skills) ** Needs clientside patch as well (coming soon) ** Reviewed-by: Bertram.