summaryrefslogtreecommitdiff
path: root/src/game.cpp
AgeCommit message (Collapse)AuthorFilesLines
2008-12-07Added some initialization and removed ChargeDialogIra Rice1-8/+0
Many member variables of LocalPlayer were not being initialized properly. In general this shouldn't have caused any problems, but it's bad style. The ChargeDialog was removed. This class was long dead anyway. Signed-off-by: Bjørn Lindeijer <bjorn@lindeijer.nl> Conflicts: src/Makefile.am src/game.cpp src/gui/chargedialog.cpp src/gui/chargedialog.h src/localplayer.cpp src/localplayer.h Signed-off-by: Ira Rice <irarice@gmail.com>
2008-12-07Made minimap visible by defaultBjørn Lindeijer1-0/+2
Also remember its visibility state.
2008-12-07Merge commit 'a7c21e6f8add37af7412449742ec55c8daa8571a'Ira Rice1-4/+11
Conflicts: AUTHORS CMakeLists.txt ChangeLog INSTALL README aethyra.cbp configure.ac data/help/changes.txt data/help/commands.txt data/help/header.txt data/help/support.txt src/Makefile.am src/aethyra.rc src/being.cpp src/being.h src/equipment.cpp src/equipment.h src/floor_item.h src/game.cpp src/gui/buddywindow.cpp src/gui/char_select.cpp src/gui/char_server.cpp src/gui/chat.cpp src/gui/chat.h src/gui/equipmentwindow.cpp src/gui/equipmentwindow.h src/gui/gui.cpp src/gui/inventorywindow.cpp src/gui/inventorywindow.h src/gui/itemcontainer.cpp src/gui/itemcontainer.h src/gui/minimap.cpp src/gui/ministatus.cpp src/gui/newskill.cpp src/gui/npc_text.cpp src/gui/npclistdialog.h src/gui/ok_dialog.cpp src/gui/setup_video.cpp src/gui/skill.cpp src/gui/skill.h src/gui/status.h src/gui/table_model.h src/gui/updatewindow.cpp src/gui/viewport.cpp src/inventory.cpp src/inventory.h src/keyboardconfig.cpp src/keyboardconfig.h src/localplayer.cpp src/localplayer.h src/logindata.h src/main.cpp src/map.cpp src/monster.cpp src/monster.h src/net/beinghandler.cpp src/net/beinghandler.h src/net/buysellhandler.cpp src/net/equipmenthandler.cpp src/net/loginhandler.cpp src/net/loginhandler.h src/net/network.h src/net/npchandler.cpp src/net/playerhandler.cpp src/net/protocol.h src/net/tradehandler.cpp src/npc.cpp src/npc.h src/particleemitter.cpp src/particleemitterprop.h src/player.cpp src/player.h src/player_relations.cpp src/resources/imageset.cpp src/resources/imageset.h src/resources/itemdb.cpp src/resources/mapreader.cpp src/resources/monsterinfo.h src/text.cpp src/text.h src/textmanager.cpp src/textmanager.h src/tileset.h src/utils/fastsqrt.h src/utils/strprintf.cpp src/winver.h tools/tmxcopy/Makefile tools/tmxcopy/base64.cpp tools/tmxcopy/base64.h tools/tmxcopy/tostring.h Signed-off-by: Ira Rice <irarice@gmail.com>
2008-12-03Add an effects manager (patch by Kage Jittai)Ira Rice1-0/+4
NOTE: This patch demonstrates the need to fix pixel coordinates in the eAthena client. Bjorn did the movement patch in the TMWClient, however, I still haven't got that fully working with the merges. It's likely that a clone will be developed to tackle this problem. Signed-off-by: Ira Rice <irarice@gmail.com>
2008-11-27Merged a patch by Bjorn to fix allowing the joystick to be used without Ira Rice1-3/+1
being enabled first. A similar patch was asked for by Doorsman here, so this combined with the setup button on client startup, should be enough to fulfill that request from Doors.
2008-11-27Make sure to initialize joystick enabled stateBjørn Lindeijer1-2/+0
Joystick enabled state could end up uninitialized on unsuccesfully trying to open a joystick. In addition, the enabled state wasn't actually used in the accessor methods for the joystick buttons.
2008-11-18Pedantic fixes to the client, where I alphabetized all of the include Ira Rice1-9/+3
statements, as well as removing the new skill dialog, which we do not, nor will we use (if we do, it'd be a new one that we'd make). WARNING!!! This, and all other previous builds have a linker error for the Gnome libraries version 4.3.2 on my setup. It's assumed that this is also the case for other users of this library as well. I'm currently assuming that there's a bug in the compiler itself, and will look into reporting this, but in the mean time, it doesn't build for these users, unfortunately. Sorry about this.
2008-11-16Got rid of CVS/Subversion $Id$ markersBjørn Lindeijer1-2/+0
I don't know why we dealt with these things for so long. Did we ever get anything out of it?
2008-11-06Don't allow players to use items through item shortcuts while trading. Ira Rice1-74/+78
Patch done by Peavey on TMW.
2008-11-06Fix a missing brace that got lost on last commit (r4927)Dennis Friis1-0/+1
2008-11-06Do not activate shortcuts if tradewindow is visible.Dennis Friis1-9/+12
2008-11-03Fixed talk being recalled while t is held down. Thanks doors for Ira Rice1-9/+12
noticing this bug.
2008-10-31Last commit was a bit premature (was trying to cancel the commit). Ira Rice1-0/+6
Anyways, this patch improves keyboard support for NPCs by allowing the user to hit enter to proceed through the dialogs. What it doesn't do at the moment is give users a way to scroll through the dialog choices... yet. But once one is selected, you can hit enter to continue.
2008-10-31Improved keyboard support by putting the NPC ok button in focus, and Ira Rice1-0/+4
making it so that hitting enter on opening the dialog will close it.
2008-10-28Made it so that the trade window doesn't stay visible when it was open Ira Rice1-0/+1
before the client was closed. Patch by Trelos on TMW.
2008-10-28Fixed a fast walking bug that was caused by a state conflict Ira Rice1-3/+9
where the keys would tell the client to attack and stop attacking all at the same time. Thanks to SoftLace for reporting it.
2008-10-28Fixed trade window being visible on client startup when it was visible onBjørn Lindeijer1-0/+1
shutdown. Thanks to Trelos for looking into this problem.
2008-10-28Fixed attacking so that it will actually continue to attack in Ira Rice1-1/+1
succession like it's intended to if it's given a true keep flag, or just do one attack if that flag isn't set. Since most people seem to prefer to continue to attack when attacking, shift will be used for when someone only wants to hit the target once.
2008-10-27Made targets draw on the fringe layer, as well as added t for talking to Ira Rice1-5/+24
an NPC, n for targeting an NPC, and changed basic targeting code so that it'll time out after being on a target for longer than a minute.
2008-09-25Merged the Tametomo branch into trunk.Ira Rice1-343/+335
2008-08-28Applied patch put together by Jaxad0127 with changes from the Aethyra project.Bjørn Lindeijer1-2/+22
Improves compatibility with the newer version of eAthena and works around an initialization bug.
2008-08-22Added config option to honor stop-walking packet, added X and Y to /where, ↵Lloyd Bryant1-1/+1
reformatted src/chat.cpp
2008-08-07Changes saving screenshots from Aethyra_ScreenShot_ to Ae_Screenshot in game.cppKraant1-1/+1
2008-08-07Rebranding TME to AethyraKraant1-2/+2
2008-07-27Target the nearest monster on joystick button 3v0.0.25Bjørn Lindeijer1-8/+7
Should be made configurable later (Mantis 151)
2008-07-25Applied patch by ElvenProgrammer to remember window locations between sessionsLloyd Bryant1-4/+9
2008-07-24Fixed visibility of buy and sell dialogs.Eugenio Favalli1-0/+2
2008-07-23Remember windows visibility.Eugenio Favalli1-4/+9
2008-07-22Added support for the new eAthena versionLloyd Bryant1-462/+480
2008-07-22User can now configure which modifier key is used for smilies.David Athay1-0/+5
2008-07-22Reverted the Alt-Gr fix as it did not work.David Athay1-1/+1
2008-07-21Commit of Alt-Gr fix for RotonenDavid Athay1-1/+1
2008-07-18Import of client treeLloyd Bryant1-464/+472
2008-05-14Added ability to define friends, players you want to ignore or disregard andBjørn Lindeijer1-4/+11
configure whether trading is allowed. Based on new popup code, configuration improvements to store hierarchical data and a table model.
2008-05-08Allow page up and page down to scroll the chat window, based on patch by fate.Dennis Friis1-0/+16
2008-05-07Make F8 toggle shortcut window as suggested by And1 an fate.Dennis Friis1-1/+1
2008-04-29* Fixed issue with determining whether chat input is focused (method no longerBjørn Lindeijer1-4/+4
virtual). * Fixed sometimes rendering with the wrong font. * Fixed warnings about hiding virtual method, Window now always deletes its children (the option not to do so was never used anyway).
2008-04-28Remove check for KMOD_NONE since this is not working uniformly across systems.Dennis Friis1-76/+72
2008-04-28Tweak keyboard input handling a bit. This fixes using emoticons triggering ↵Dennis Friis1-140/+143
shortcut items to be used.
2008-04-22Fixed a bug, thanks GCC 4.3!Bjørn Lindeijer1-2/+2
2008-04-18Mac now uses Apple key forDavid Athay1-0/+4
emoticons, so alt can be used for alternate characters. Disable vsync on mac.
2008-04-09Re-enabled non-functional item shortcut window, planned to be fixed for 0.0.25Bjørn Lindeijer1-8/+6
(reverted change 3811). Somehow seems it's not drawing anything, not sure why.
2008-04-03Tweaked disconnect dialog to fix crash bug id=250David Athay1-2/+2
2008-03-09Applied some patches by peavey related to chatlog and the quit dialog.Philipp Sehmisch1-1/+5
2007-12-30Added a key for targeting the nearest player character based on patches by ↵Philipp Sehmisch1-0/+13
Trinexx. Some mapping fixes at snake dungeon map.
2007-12-24Minor update, fixed disconnection dialogDavid Athay1-7/+9
2007-12-24Disabled non-functional item shortcut window.Bjørn Lindeijer1-6/+8
2007-12-21Attempted to fix client freeze when unable to connect to update host, and ↵David Athay1-0/+13
added exit dialog
2007-12-10Added an option to show log messages in the chat console.Philipp Sehmisch1-0/+5
2007-11-20Merged revisions 3692 via svnmerge from Bjørn Lindeijer1-8/+8
https://themanaworld.svn.sourceforge.net/svnroot/themanaworld/tmw/trunk ........ r3692 | gmelquio | 2007-10-27 11:03:13 +0200 (Sat, 27 Oct 2007) | 1 line Made it compile with GCC 4.3 ........