summaryrefslogtreecommitdiff
path: root/src/client.h
AgeCommit message (Collapse)AuthorFilesLines
2010-05-21Merge branch '1.0'Thorbjørn Lindeijer1-4/+4
Conflicts: src/beingmanager.cpp src/beingmanager.h src/client.cpp src/localplayer.cpp
2010-05-21Fix some issues found by CppcheckJared Adams1-4/+4
2010-05-01Add chat logging.Andrei Karas1-0/+1
Add option in players setup page. Add command line option. Signed-off-by: Jared Adams <jaxad0127@gmail.com>
2010-04-19Add afk mode for player.Andrei Karas1-0/+1
Add variable cur_time for current time. Add command /away [text] Reviewed by: Bertram
2010-02-28Make the gui more themeable and distribute two themesJared Adams1-0/+4
The older gray theme and the new wood theme are available as themes. The gray theme needs some new graphics for hilights. Add a theme option for branding and add path/to/branding/data to the PhysFS search path. Reviewed-by: Thorbjørn Lindeijer Reviewed-by: Chuck Miller
2010-02-27Some cleanup and compile fixJared Adams1-2/+2
Reviewed-by: Thorbjørn Lindeijer
2010-02-27Corrected some variables names after recent renamingThorbjørn Lindeijer1-1/+1
With help from Jared. Reviewed-by: Jared Adams
2010-02-27Added m prefix to Client's member variablesThorbjørn Lindeijer1-19/+19
Reviewed-by: Jared Adams
2010-02-25Add support for platform specifig config/data directories #84Bernd Wachter1-5/+9
Reviewed-by: Jared Adams
2010-02-24Added the possibility to pass a branding file by command line. Reviewed-by: ↵Philipp Sehmisch1-0/+1
Thorbjørn Lindeijer <thorbjorn@lindeijer.nl>
2010-02-21Made tick counter and framerate limiter work during login sequenceThorbjørn Lindeijer1-0/+212
Much code was moved from main() to the new Client::exec(). This new event loop now integrates with the Game class, so that the tick counter and framerate limiter apply universally. The Client class is also responsible for some things that used to be global variables. Mantis-issue: ...