summaryrefslogtreecommitdiff
path: root/src/chat-server/chathandler.cpp
AgeCommit message (Collapse)AuthorFilesLines
2008-06-26fix compile error, and improve guild related methodsRoderic Morris1-1/+1
2008-06-25handle topic changing and guild eventsRoderic Morris1-21/+52
2008-06-10update chat packet defs, get rid of unused functionsRoderic Morris1-66/+0
2008-06-03stop storing channels in the db, send channel announcementsRoderic Morris1-15/+12
2008-05-23Use guildmanager to add users to guilds so its stored in the db.David Athay1-2/+2
2008-05-22Fixed compilation with GCC 4.3 (patch by rodge).Bjørn Lindeijer1-0/+1
2008-05-14Added channel registration check to ensure that channel name is not in useDavid Athay1-1/+3
2008-04-28Added sending who accepted invite on invite response to clientDavid Athay1-0/+1
2008-04-22Added more support for partiesDavid Athay1-10/+97
2008-04-18Remove channel when leader quits guild.David Athay1-0/+7
2008-04-18Fixed guilds not being removed when leader quits.David Athay1-7/+2
2008-04-17Added basic party supportDavid Athay1-0/+18
2008-04-16Added handling creating and leavingDavid Athay1-37/+47
parties. Fixed up some of the private channel stuff that remained.
2008-04-15Fixed getting channel userlistDavid Athay1-7/+7
2008-04-03Fixed accepting guild invites, and added updating the guild member list when ↵David Athay1-1/+28
player joins
2008-04-03Restricted who can be invited to guildsDavid Athay1-2/+5
2008-04-03Fixed accepting guild invitesDavid Athay1-2/+2
2008-04-01Consolidated public and private channels into one,David Athay1-26/+22
which also includes guild channels. Channels now have a joinable field, which is true for channels that are created by users, and false for guild channels. Chatting in guild channels now works, and non-guild members can no longer join guild channels
2008-03-06Fixed telling clients what guilds they are in after they reconnectDavid Athay1-11/+53
2008-03-05Fixed guild creation.David Athay1-32/+32
2008-02-28Work in Progress commit of guilds.David Athay1-88/+180
2007-09-23Robustified code with respect to insertion failures.Guillaume Melquiond1-1/+2
2007-08-30Got rid of abstract storage and reference-counted pointers. Fixed lifetime ↵Guillaume Melquiond1-7/+14
of accounts and characters in server memory. Cleaned some code.
2007-08-27Added support for user commands. Implemented "warp" and "item".Guillaume Melquiond1-1/+1
2007-08-17Used TokenCollector to manage cookies in ChatHandler.Guillaume Melquiond1-81/+44
2007-07-28Replaced user names by client pointers when handling channels, in order to ↵Guillaume Melquiond1-20/+18
reduce lookups in ChatHandler::sendInChannel.
2007-07-25Removed a host of unnecessary methods from ChatChannelManager.Bjørn Lindeijer1-112/+104
2007-07-20Separated ChatClient class from chathandler.cpp, cleaned up handling ofBjørn Lindeijer1-416/+468
messages, defining a method for each handled message and some code formatting cleanup and corrected headers.
2007-07-17Some more cleanup of chat handler related code.Bjørn Lindeijer1-21/+20
2007-07-15Some cleaning up of the chat channel manager code.Bjørn Lindeijer1-30/+32
2007-06-26Merged guilds-and-parties branch to trunkDavid Athay1-3/+144
2007-03-10Added a utility function for creating magic_tokensRogier Polak1-1/+2
2007-02-27restored logout from chat serverPhilipp Sehmisch1-0/+8
2007-02-27Implementation of chat channels by Trapdoor.Philipp Sehmisch1-11/+27
2007-02-23Bugfixes related to switch_characterRogier Polak1-0/+8
2007-02-04Added support for switching character by reconnecting to the account server andBjørn Lindeijer1-6/+12
fixed the issue where a client is not logged in after registering (patch by Rogier Polak).
2007-01-06Removed world timer usage from account server, instead letting ENet wait duringBjørn Lindeijer1-33/+61
each host service to reduce CPU usage. Modified timer code to gracefully handle jumps back in time.
2007-01-05Simplified handling of verbosity levels. Optimized code by generating only ↵Guillaume Melquiond1-11/+13
needed messages.
2007-01-03Split persistent player data from game server data. Enabled inventory code back.Guillaume Melquiond1-0/+1
2006-12-29Physically split the server into one tmwserv-acount program (account +Guillaume Melquiond1-0/+529
chat + database) and multiple tmwserv-game programs (selected with respect to the maps). Cleaned the repository by moving server-specific source files into dedicated directories.