summaryrefslogtreecommitdiff
path: root/src/gui/gui.cpp
AgeCommit message (Collapse)AuthorFilesLines
2007-10-18Merged removal of dependency on Guichan OpenGL from trunk to 0.0 branch, Bjørn Lindeijer1-20/+5
including optimization of OpenGL memory usage on modern OpenGL drivers. Patches by Guillaume Melquiond.
2007-09-20Merged a bunch of small changes from trunk to 0.0 and set svn:eol-style Bjørn Lindeijer1-3/+3
to native for some files that were still missing this property. This is a feeble attempt to reduce the amount of conflicts for future merges.
2007-08-24Removed useless logic method and reverted mouse cursor to non-static sinceBjørn Lindeijer1-18/+12
there can be only one Gui instance so there is no point in supporting a shared resource.
2007-08-22Added close button and item shortcut backgrounds to files that will beBjørn Lindeijer1-1/+1
installed.
2007-08-21mantis id=118 - Added Item Shortcut Bar.Joshua Langley1-3/+2
2007-08-20Added monster killed xp notification effect.Joshua Langley1-1/+1
2007-08-20Added close button functionality, resize cursor cues.Joshua Langley1-8/+13
2007-07-07Ported to Guichan 0.7.0. Unfortunately, since Guichan 0.6.x didn't have aBjørn Lindeijer1-4/+0
FocusListener, compatibility with older versions is broken.
2006-12-05Fixed visibility of item amount window.Bjørn Lindeijer1-0/+1
2006-12-04Introduced a new class Viewport which combines the drawing code from EngineBjørn Lindeijer1-168/+9
with the (rather misplaced) input handling from the Gui class. Also, it's a Container itself which should allow for extending it to show Guichan widgets on map coordinates.
2006-12-01forgot to include one file in the commitPhilipp Sehmisch1-2/+2
2006-11-26Higher precision log timestamps, some more logging and support for TGA images.Bjørn Lindeijer1-0/+1
2006-11-17Added mouse following support.Björn Steinbrink1-1/+29
2006-11-01Added support for å and Å (with help of Håkan Rönn)Bjørn Lindeijer1-1/+1
2006-09-09Removed easy targeting functionality since it interferes with walking aroundBjørn Lindeijer1-2/+3
too much. Targeting can still be rather conveniently done with 'a' or the middle mouse button.
2006-09-02Corrected mistake in using player coordinates instead of mouse coordinates.Bjørn Lindeijer1-2/+1
2006-09-02Applied patch by Bernard Lidicky, adding targetting nearest monster with eitherBjørn Lindeijer1-1/+15
keyboard or mouse. Also made clicking beings in general a bit easier (patch applied by Bjørn Lindeijer).
2006-08-13Fixed Guichan 0.5.0 compilation issues.Eugenio Favalli1-2/+3
2006-08-13Merged Guichan 0.5.0 support from guichan-0.5.0 branch, plus several updatesBjørn Lindeijer1-6/+4
from the 0.1.0 branch.
2006-03-19Removed some useless null pointer checks.Björn Steinbrink1-4/+1
2006-03-09Made all class members named like mClassMember.Björn Steinbrink1-2/+2
2006-03-08Reverted changes from r2225, it broke walking code as I missed the ↵Björn Steinbrink1-3/+3
differences between tile and being collisions.
2006-03-08Let the LocalPlayer decide whether it can walk to a destination.Björn Steinbrink1-3/+3
2006-02-16Use Widget::mFont instead of browserFont for drawing, fixes the "gui needs ↵Björn Steinbrink1-3/+0
to be valid real early" issue.
2006-02-06Added a FloorItemManager class.Björn Steinbrink1-3/+3
2006-02-05Made the player walk to items prior to picking them up.Björn Steinbrink1-4/+0
2006-01-22Merged NETWORK branch (includes BEING_OVERHAUL).Björn Steinbrink1-22/+13
2005-12-29ixed two little bugsJan-Fabian Humann1-4/+4
2005-12-29Added the workaround suggested by DoenerJan-Fabian Humann1-0/+3
2005-12-29Added popup support to the Gui class. Moved all mouse input handling into ↵Björn Steinbrink1-13/+117
the Gui class.
2005-10-13Use gcn::Font instead of gcn::ImageFont as pointer type.Björn Steinbrink1-4/+4
2005-10-10Introduced new window shortcuts and corrected position of job xp bar. AlsoBjørn Lindeijer1-1/+1
corrected strange commit by ElvenProgrammer.
2005-10-10Pajarico added more international characters to the fixed font and rpg font.Bjørn Lindeijer1-1/+2
2005-10-09* Made Sprite into an interface implemented by both FloorItem and Being, whichBjørn Lindeijer1-2/+5
hook themselves into the map on construction. The improved fringe layer is working as expected now. * Made sure TMW compiles without warnings even when using "-Wconversion -Wshadow -Wcast-qual -Wwrite-strings -ansi -pedantic", lots of cleanups. * Added two new small tilesets that contain the desert tiles that are twice and three times the height of a normal tile. One well in new_3-1 has been converted to use the new double tiles for testing purposes.
2005-10-07Modified finding NPC as by timonator's suggestion in order to allow NPCs to beBjørn Lindeijer1-6/+13
clicked on their heads too. Also made start to tile engine improvement by adding the Sprite class that is now used by the floor items for being displayed on the map. Finally added documentation to Item class and splitted out Properties class from Map.
2005-09-30Updated NEWS file for next release.Bjørn Lindeijer1-5/+0
2005-09-26Added a nicer handling of when you get disconnected from the server.Eugenio Favalli1-1/+1
2005-09-18 Applyed biggeruniverse's patch to fix memory leaks.Eugenio Favalli1-0/+1
2005-09-12Added SDLImageLoader class to make guichan support physfs.Björn Steinbrink1-15/+8
2005-08-28Prepare our source so that it'll survive a guichan header cleanup, should it ↵Björn Steinbrink1-0/+1
ever happen...
2005-08-28Create a GuiConfigListener class.Björn Steinbrink1-9/+21
2005-08-18Semi-separated OpenGL and SDL graphics classes, improving OpenGL performance.Björn Steinbrink1-5/+2
2005-08-15Removed guiTop global variable.Björn Steinbrink1-5/+4
2005-08-14Fully removed the useOpenGL global.Björn Steinbrink1-2/+1
2005-08-14Started to fade out the useOpenGL global variable.Björn Steinbrink1-0/+1
2005-08-14Removed guiGraphics global pointer and removed dependencies on gui.h in some ↵Björn Steinbrink1-6/+3
places.
2005-08-13Huge header cleanup to reduce dependencies and compile time.Björn Steinbrink1-20/+34
2005-08-10Moved knowledge about whether we use OpenGL into the Graphics class. Added ↵Björn Steinbrink1-18/+3
helper function for being creation to reduce code duplication. Some code simplifications.
2005-08-04Made the paths to some graphics being determined dynamically.Björn Steinbrink1-42/+10
2005-07-28Added an action enumeration to th Being class and removed the old #define's.Björn Steinbrink1-1/+1