summaryrefslogtreecommitdiff
path: root/src/net/tmwserv/charserverhandler.cpp
AgeCommit message (Collapse)AuthorFilesLines
2009-09-30Merge login state machines for both clientsJared Adams1-289/+0
Also do some cleanup and refactoring of related code.
2009-08-13Clean up Being and it's derivativesJared Adams1-1/+3
Move stuff only needed for Players into Player (like slots and sprite limits). Move name handling into Being (no need for three copies of this code). Clean up terminology (including Map terminology). Remove hair-related variables.
2009-08-07Gettext fixesKess Vargavind1-15/+15
Trying to use the same kind of capitalization and interpunctuation for various parts of the gui, melding a few split strings, updating POTFILES.in and adding translators' notes.
2009-07-17Various gettext fixesKess Vargavind1-19/+19
* Merged a few split strings * Fixed some spellings and wordings * Turned a couple of std::cout and std::cerr into logger messages
2009-05-07Moved two files which held net data into the net folder. ConsideringTametomo1-1/+1
their function, this is a much better place to put them. Signed-off-by: Tametomo <irarice@gmail.com> Signed-off-by: Bjørn Lindeijer <bjorn@lindeijer.nl>
2009-04-29Removed underscores from some non-conforming filenamesBjørn Lindeijer1-1/+1
We don't use underscores in the filenames generally, and let's be consistent on that matter.
2009-04-19Error server unavailable Add an error box when then game server isn't ↵blue1121-0/+6
available (on char selection)
2009-04-16Make sure math functions are still inlinedBjørn Lindeijer1-5/+0
A function call could be quite a large overhead on top of a fast square root function.
2009-04-07Make GeneralHandlers for both networksJared Adams1-0/+5
Also make Net::LogoutHandler
2009-04-06Implement TMWServ's CharHandlerJared Adams1-1/+54
Also cleanup character creation, which isn't functional at the moment.
2009-03-27Changed the includes for the net/tmwserv/ directoryBjørn Lindeijer1-11/+12
2009-03-26Fixes to file headers and header guardsBjørn Lindeijer1-4/+4
Mostly removal of branding for tmwserv related files, as was done for the eAthena client before.
2009-03-23Move all TMWServ-specific code to net/tmwservJared Adams1-0/+227
Also fix several instances where the same net handler was being used for both servers, and a few other related oddities.