Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-03-11 | Fix order of function calls when loading data | Jared Adams | 1 | -3/+3 | |
2009-03-11 | Fix segfault when being count reaches 0 too often | Jared Adams | 3 | -30/+34 | |
2009-03-11 | Don't move stuff from inventory when not visible | Jared Adams | 3 | -3/+7 | |
2009-03-10 | Delete local player earlier and fix a rare crash | Jared Adams | 2 | -1/+3 | |
Rare crash is in KeyboardConfig, where the active keys array is accessed before it's initialized. Also remove some debug prints that made it into a previous commit. | |||||
2009-03-10 | Introduced in a Skin holder class, to reduce the amount of needed XML | Ira Rice | 2 | -41/+91 | |
skin loads. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-10 | Delete local player earlier and fix a rare crash | Jared Adams | 3 | -4/+2 | |
Rare crash is in KeyboardConfig, where the active keys array is accessed before it's initialized. Also remove some debug prints that made it into a previous commit. | |||||
2009-03-10 | Set minimum bounds for speech bubbles, based on the skin's minimum | Ira Rice | 1 | -0/+3 | |
dimensions. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-10 | Remove some SetupWindow weirdness | Jared Adams | 4 | -8/+18 | |
2009-03-10 | Fix some mem leaks | Jared Adams | 13 | -48/+20 | |
2009-03-10 | Remove some SetupWindow weirdness | Jared Adams | 4 | -7/+10 | |
2009-03-10 | Fix some mem leaks | Jared Adams | 13 | -20/+48 | |
2009-03-10 | Fix some mem leaks | Jared Adams | 13 | -20/+48 | |
2009-03-10 | Allow for offsets for the enumerated position version of | Ira Rice | 2 | -17/+17 | |
setLocationRelativeTo as well. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-10 | Allow null link handlers for browser box | Jared Adams | 1 | -0/+1 | |
2009-03-10 | Extended window layout to take relative positions, as well as offsets to | Ira Rice | 23 | -75/+194 | |
that position. This makes it so that when resolutions are changed, the default locations stay relative to the window's position, and not the 800x600 screen resolution. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-10 | Allow null link handlers for browser box | Jared Adams | 1 | -0/+1 | |
2009-03-10 | Start NPC dialogs out hidden | Jared Adams | 1 | -0/+5 | |
2009-03-10 | Start NPC dialogs out hidden | Jared Adams | 1 | -0/+5 | |
2009-03-10 | Allow NPCList dialog to use it's old location | Jared Adams | 3 | -4/+4 | |
2009-03-10 | Make sure NPC input dialogs get focus | Jared Adams | 3 | -3/+12 | |
2009-03-10 | Don't center the NPC interraction dialogs | Jared Adams | 9 | -11/+4 | |
Use the last location the user gave instead. Also, do the same for the inventory dialog. | |||||
2009-03-10 | Extended hit type handling | sniper | 6 | -60/+66 | |
The client can now differentiate between the following hit types: - hit (normal) - critical (full attack) - multi (more than one hit at once, currently not used) - reflect (reflected damage, currently not used) - flee (dodging criticals) The Being's showCrit method is now merged into takeDamage. Being's takeDamage and handleAttack now both get the opponent, the amount of damage and the attack type as parameter. | |||||
2009-03-10 | Reverted last commit (since I confused it with something else) as well | Ira Rice | 2 | -3/+6 | |
as removed a redundant call for sizing in the minimap class. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-10 | Fixed setContentSize in the window class to only care about exceeding | Ira Rice | 1 | -6/+2 | |
the maximum width and height. Exceeding the minumum width and height is a desireable case in some situations. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-10 | Copyright header fix | Steve Cotton | 1 | -5/+5 | |
As Bjorn did in 0a106989bd16c48525f01cb8515809e74f37a8d8 | |||||
2009-03-10 | Moved enforcement of minimum widths and heights to the Window class. | Ira Rice | 3 | -40/+53 | |
This was needed in the Minimap class, but not migrated out to the Window class until now. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-10 | Made it so that when windows load previous states, they are never | Ira Rice | 7 | -22/+61 | |
smaller than the minimum width and height (a check that should have been enforced in the first place), as well as modified the NPC list and text dialogs to remember where they were when they were moved or resized last. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-10 | Extended hit type handling | sniper | 6 | -46/+79 | |
The client can now differentiate between the following hit types: - hit (normal) - critical (full attack) - multi (more than one hit at once, currently not used) - reflect (reflected damage, currently not used) - flee (dodging criticals) The Being's showCrit method is now merged into takeDamage. Being's takeDamage and handleAttack now both get the opponent, the amount of damage and the attack type as parameter. | |||||
2009-03-10 | Fix video config cancel button for "show name". | Majin Sniper | 1 | -0/+2 | |
The cancel button in Video configuration window doesn't switch back the "show name" setting to the original state. This patch fixes that. | |||||
2009-03-10 | Fix typo in item link parsing | Jared Adams | 1 | -13/+18 | |
2009-03-10 | Expand the scope where item links work | Kess Vargavind | 2 | -32/+32 | |
This patch makes item links work in any chatLog() message, not only chatSend() as before. I enabled it for the "You picked <nr> <item>" message by explicitly adding [] around the item name in the string. | |||||
2009-03-10 | Fixed an indentation error in the last commit. | Ira Rice | 1 | -8/+8 | |
Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-10 | Remove some tabs and trailing whitespace | Jared Adams | 10 | -23/+23 | |
2009-03-10 | Fix video config cancel button for "show name". | Majin Sniper | 1 | -0/+2 | |
The cancel button in Video configuration window doesn't switch back the "show name" setting to the original state. This patch fixes that. | |||||
2009-03-10 | Fix layout issue of NPC list dialog | Jared Adams | 1 | -0/+1 | |
2009-03-10 | Fix typo in item link parsing | Jared Adams | 1 | -13/+18 | |
2009-03-10 | Remove some tabs and trailing whitespace | Jared Adams | 10 | -23/+23 | |
2009-03-10 | Expand the scope where item links work | Kess Vargavind | 2 | -32/+32 | |
This patch makes item links work in any chatLog() message, not only chatSend() as before. I enabled it for the "You picked <nr> <item>" message by explicitly adding [] around the item name in the string. | |||||
2009-03-10 | Removed section about updating ChangeLog file | Bjørn Lindeijer | 1 | -17/+0 | |
We're no longer using the ChangeLog file. | |||||
2009-03-09 | Make tmxcopy pair up layers by name | Steve Cotton | 4 | -28/+231 | |
2009-03-09 | Fix tmxcopy off-by-one error translating tilesets | Steve Cotton | 1 | -1/+5 | |
The first tiles of each tileset got shuffled. | |||||
2009-03-09 | Added missing header and print newline at end of usage instructions | Bjørn Lindeijer | 2 | -1/+2 | |
2009-03-09 | Send the correct packet for the NPC close button | Jared Adams | 5 | -10/+23 | |
Both packets do the same, but we should be explicit anyways. Also, seperate out NPC client packets. | |||||
2009-03-09 | Send the correct packet for the NPC close button | Jared Adams | 4 | -9/+20 | |
Both packets do the same, but we should be explicit anyways. Also, seperate out NPC client packets. | |||||
2009-03-09 | Ship the Code::Blocks project in the source release | Bjørn Lindeijer | 1 | -1/+1 | |
2009-03-09 | Got rid of an ugly and unified interface breaking cancel button in favor | Ira Rice | 5 | -10/+12 | |
of adding overridable close functionality to the Window class. Now, if you need a close button, but need to do something different, or in addition to the Window close functionality, you can override it and do that action. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-09 | Add an interface for eAthena's storage system | Jared Adams | 20 | -69/+437 | |
2009-03-08 | Forgot the actual storage window | Jared Adams | 4 | -7/+328 | |
2009-03-08 | Add an interface for eAthena's storage system | Jared Adams | 10 | -24/+94 | |
2009-03-08 | Add units files to CMake list | Jared Adams | 1 | -0/+2 | |