summaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
AgeCommit message (Collapse)AuthorFilesLines
2009-01-08Removed the unused Box, VBox and HBox classesBjørn Lindeijer1-6/+0
They were once meant for doing layout, but never used and the way they're implemented they would be relayouting with every draw, which isn't really nice.
2009-01-06Added support for unicode charset in textfields and chat.Guillaume Melquiond1-0/+2
Conflicts: src/Makefile.am src/game.cpp src/gui/browserbox.cpp src/gui/gui.cpp src/gui/textfield.cpp src/main.cpp (cherry picked from mainline commit 7b67e852086ad3ccd98a622f890b245ab6a0a321)
2009-01-06Merged layout handler from mainlineBjørn Lindeijer1-0/+2
Also fixed login dialog layout. This is the layout handler by Guillaume Melquiond, which he started in commit 59472ef68fdef3f7e8858a81a46e28c127119c58.
2009-01-06Added support for internationalizationBjørn Lindeijer1-0/+1
Merged from the mainline client. Originally implemented by Guillaume Melquiond, starting with commit 1828eee6a6d91fd385ad1e69d93044516493aa91.
2009-01-05Renamed PATH_NODE to Position as on mainlineBjørn Lindeijer1-0/+2
2009-01-04Merged Vector class improvements from mainlineBjørn Lindeijer1-0/+1
2008-12-09Removed the unused NewSkillDialogBjørn Lindeijer1-2/+0
Won't be introduced based on eAthena anyway, I think even with tmwserv we have different plans now. Signed-off-by: Bjørn Lindeijer <bjorn@lindeijer.nl>
2008-12-07Added some initialization and removed ChargeDialogBjørn Lindeijer1-2/+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>
2008-10-26Implemented particle emitters with properties which change over time ↵Philipp Sehmisch1-1/+1
according to wave functions.
2008-06-30Updated CMake file to fix compilation. Patch by darkKnight.Bjørn Lindeijer1-0/+8
2008-06-12Merged revisions 3738 via svnmerge from Bjørn Lindeijer1-0/+2
https://themanaworld.svn.sourceforge.net/svnroot/themanaworld/tmw/trunk ........ r3738 | b_lindeijer | 2007-11-16 00:44:01 +0100 (Fri, 16 Nov 2007) | 3 lines Moved item icon from ItemInfo class to the Item class, so that it can be loaded on demand. Results in faster startup time and reduced memory usage. ........
2008-05-22Did the same for CMake.Bjørn Lindeijer1-0/+2
2008-04-09Re-enabled non-functional item shortcut window, planned to be fixed for 0.0.25Bjørn Lindeijer1-0/+6
(reverted change 3811). Somehow seems it's not drawing anything, not sure why.
2008-04-07Upgraded to Guichan 0.8.0 (merge from guichan-0.8 branch, except forBjørn Lindeijer1-2/+0
gcn::TabbedArea usage)
2007-12-25Updated CMake file.Bjørn Lindeijer1-0/+2
2007-12-24Disabled non-functional item shortcut window.Bjørn Lindeijer1-6/+0
2007-11-21Merged revisions 3705-3711,3714,3718,3721-3722,3729-3731,3735,3742 via ↵Bjørn Lindeijer1-0/+2
svnmerge from https://themanaworld.svn.sourceforge.net/svnroot/themanaworld/tmw/trunk (dynamic recoloring of sprites and related changes) ........ r3705 | gmelquio | 2007-11-03 10:58:25 +0100 (Sat, 03 Nov 2007) | 1 line Fixed double load of hair graphics. ........ r3706 | gmelquio | 2007-11-03 22:04:51 +0100 (Sat, 03 Nov 2007) | 1 line Added automatic recoloring of images. Inspired by fungos' ideas (PR #41). ........ r3707 | gmelquio | 2007-11-03 22:08:21 +0100 (Sat, 03 Nov 2007) | 1 line Experimented recoloring on scorpions. ........ r3708 | gmelquio | 2007-11-04 12:52:44 +0100 (Sun, 04 Nov 2007) | 1 line Tightened palette handling. ........ r3709 | gmelquio | 2007-11-04 12:54:31 +0100 (Sun, 04 Nov 2007) | 1 line Experimented with scorpions again. ........ r3710 | gmelquio | 2007-11-04 16:40:37 +0100 (Sun, 04 Nov 2007) | 1 line Applied recoloring to hair styles. ........ r3711 | gmelquio | 2007-11-04 17:50:37 +0100 (Sun, 04 Nov 2007) | 1 line Converted slimes to recoloring. ........ r3742 | gmelquio | 2007-11-16 14:16:00 +0100 (Fri, 16 Nov 2007) | 1 line Sped up recoloring of transparent pixels. ........
2007-10-18Merged removal of dependency on Guichan OpenGL from trunk to 0.0 branch, Bjørn Lindeijer1-13/+11
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-6/+5
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-30Merged equipment database with items database and got rid of the unused itemBjørn Lindeijer1-4/+0
art attribute. Removed the now unnecessary multiplication of weapon IDs with 10000. Added a fallback item icon and used it for unknown items or when an item image fails to load.
2007-08-28Added Vector class and used it in the particle engine.Bjørn Lindeijer1-0/+1
2007-08-28Made buy dialog resizable and added a WindowListener class for listening forBjørn Lindeijer1-10/+11
window resize and move events.
2007-08-22Added trimming of chat messages.Bjørn Lindeijer1-0/+1
2007-08-22Fixed a compiler warning and updated source lists.Bjørn Lindeijer1-0/+6
2007-07-24Fixed initialization order and added setup_keyboard.* and keyboardconfig.* toBjørn Lindeijer1-0/+4
the list of source files. Also set some missing Subversion properties.
2007-07-11Weapon sprites are now (almost) threated like other equipment sprites ↵Philipp Sehmisch1-0/+1
through the equipment sprite database. (use -u to ignore updates)
2007-06-03Added some files to be included with the release.Bjørn Lindeijer1-0/+2
2007-05-04Merged particle engine into main eAthena branch.Philipp Sehmisch1-0/+10
2007-04-15Reimplemented window resizing. It is now once again possible to resize windowsBjørn Lindeijer1-0/+2
using their borders (except for the top one, since that's the title bar for Guichan) and the resize grip in the bottom right is much easier to grab. Needs some testing.
2007-03-21Renamed Spriteset to ImageSet.Bjørn Lindeijer1-3/+3
2007-03-12Added a simple animation class that hosts a looping animation without the ↵Philipp Sehmisch1-1/+3
action and direction stuff from AnimatedSprite.
2007-01-30Removed unused Packet class.Bjørn Lindeijer1-2/+0
2007-01-05Synchronized build files.Björn Steinbrink1-0/+13
2006-12-12Merged r2829 from trunk (Merged the definition of ImageRect into graphics.h)Bjørn Lindeijer1-1/+0
2006-12-12Moved base64 module into utils directory.Bjørn Lindeijer1-2/+2
2006-12-12Moved Action, Animation and Frame (renamed from AnimationPhase) classes intoBjørn Lindeijer1-4/+4
the resources directory, since they are part of the SpriteDef class.
2006-12-04Introduced a new class Viewport which combines the drawing code from EngineBjørn Lindeijer1-11/+13
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-11-29Updated Makefile and CMakeListPhilipp Sehmisch1-0/+4
2006-11-26Updated Makefiles and CMake ListsPhilipp Sehmisch1-5/+8
2006-11-19Separated sprite definition from playback.Bjørn Lindeijer1-0/+2
2006-11-15Separated getProperty method to an XML utility namespace.Bjørn Lindeijer1-0/+2
2006-11-14Separated Action class to its own module.Bjørn Lindeijer1-0/+2
2006-11-05Fixed money field to no longer hide below the bottom of the window.Bjørn Lindeijer1-0/+2
2006-10-26Merged CMake branchBjörn Steinbrink1-0/+303