Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-08-12 | Avoid string copy for SpriteDef::getAction | Thorbjørn Lindeijer | 2 | -2/+2 | |
Pass std::string as const & when it makes sense. | |||||
2010-08-12 | Fix Label color handling | Jared Adams | 1 | -1/+1 | |
2010-08-10 | Remove NpcDialog references from netcode | Jared Adams | 9 | -193/+281 | |
Reviewed-by: Chuck Miller | |||||
2010-08-10 | Add some new methods to the Event class | Jared Adams | 2 | -7/+112 | |
Adds get methods with default values, and has methods that return true if the variable exists. Reviewed-by: Chuck Miller | |||||
2010-08-09 | Fix enet version check *again* | Jared Adams | 3 | -2/+8 | |
Reviewed-by: Chuck Miller | |||||
2010-08-09 | Replace remaining gcn::Label instances with Label instances | Jared Adams | 3 | -4/+8 | |
Reviewed-by: Chuck Miller | |||||
2010-08-08 | Do proper checks on the ENet version | Thorbjørn Lindeijer | 2 | -2/+2 | |
The previous check broke compilation against ENet 1.2.2, which does define the version macros but does not have the API changes. | |||||
2010-08-07 | Removed superfluous semicolon | Thorbjørn Lindeijer | 1 | -1/+1 | |
2010-08-05 | Add better XML error logging and do some related cleanup | Jared Adams | 3 | -34/+54 | |
Error details from libxml2 are no longer ignored and are properly logged now. XML initialization code is now in the XML namespace. The XML::Document constructor that took a data pointer was removed because it wasn't being used and it would make the new logging less useful (no filename). Signed-off-by: Chuck Miller | |||||
2010-08-05 | Have Being manage speech creation and add permissions to events | Jared Adams | 7 | -23/+59 | |
The Being and Player Chat events now have the precomuted permissions for SPEECH_LOG and SPEECH_FLOAT. The Being class now acts on those events to show speech (if SPEECH_FLOAT is present). ChatWindow now checks for the SPEECH_LOG permission. Reviewed-by: Freeyorp | |||||
2010-08-04 | Remove some unused headers and fix some chat events | Jared Adams | 8 | -19/+14 | |
Reviewed-by: Chuck Miller | |||||
2010-08-04 | Changed the stats.xml to attributes.xml according to the server commit. | Yohann Ferreira | 3 | -7/+12 | |
Also, fixed a compilation warning about passing a NULL value to a boolean parameter. The built-ins are kept for now. Reviewed-by: Jaxad0127. | |||||
2010-08-03 | Move Theme and UserPalette to the resources folder | Jared Adams | 58 | -87/+86 | |
Reviewed-by: Yohann Ferreira | |||||
2010-08-03 | Merge remote branch 'origin/1.0' | Jared Adams | 8 | -1546/+914 | |
Conflicts: src/net/tmwa/chathandler.cpp | |||||
2010-08-03 | Improve OpenGL speed. | Andrei Karas | 3 | -110/+422 | |
Use batch commands and not selecting already selected texture. Signed-off-by: Jared Adams <jaxad0127@gmail.com> | |||||
2010-08-03 | Fix enet version check | Jared Adams | 2 | -0/+8 | |
Tested-by: BaseBallBoy | |||||
2010-08-03 | Added double click to equip unequip and use items | dweems | 1 | -4/+36 | |
-Double-click items in invetory to equip/unequip -Double-click items in inventory to use Signed-off-by: Jared Adams <jaxad0127@gmail.com> | |||||
2010-08-02 | Fix enet version check | Jared Adams | 2 | -10/+6 | |
Tested-by: BaseBallBoy | |||||
2010-08-02 | Fix some bugs | Jared Adams | 2 | -2/+7 | |
Trivial fixes. | |||||
2010-08-02 | Add support for enet 1.3 | Jared Adams | 2 | -0/+12 | |
Reviewed-by: Yohann Ferreira | |||||
2010-08-02 | Remove non-GUI references to MiniStatusWindow | Jared Adams | 9 | -93/+106 | |
Reviewed-by: Freeyorp | |||||
2010-08-02 | Convert most of the remaining chat system to use the event system | Chuck Miller | 3 | -20/+72 | |
Reviewed-by: Jared Adams | |||||
2010-08-01 | Fix events added in last commit to use ints instead of bools | Jared Adams | 1 | -6/+6 | |
2010-08-01 | Remove isActive methods from NPC dialogs and InventoryWindow | Jared Adams | 10 | -25/+122 | |
Uses counts in PlayerInfo instead. Reviewed-by: Chuck Miller | |||||
2010-08-01 | Remove isActive methods from buy/sell windows | Jared Adams | 15 | -65/+140 | |
Uses a state variable in PlayerInfo instead. Moves isTalking from Being to PlayerInfo. Also some small cleanups. Reviewed-by: Chuck Miller | |||||
2010-08-01 | Fix chat spoofing. Remove colors from nicks in public chat. | Andrei Karas | 1 | -10/+29 | |
Signed-off-by: Chuck Miller <shadowmil@gmail.com> | |||||
2010-08-01 | Reduce localChatTab presence replacing it with the event system | Chuck Miller | 11 | -70/+58 | |
Reviewed-By: Jared Adams | |||||
2010-07-30 | I forgot to tidy src/resources/spritedef.h | Yohann Ferreira | 1 | -33/+2 | |
(Trivial) | |||||
2010-07-30 | Fixed weapon animations for manaserv. | Yohann Ferreira | 2 | -1/+2 | |
The beinghandler didn't tell to the being::setSprite() function if the equipment was a weapon or not. Resolves: Manasource-Mantis #157. Reviewed-by: Jaxad0127. | |||||
2010-07-30 | Fixed two more forgotten hard-coded references. | Yohann Ferreira | 2 | -5/+6 | |
2010-07-30 | Changed the FloatData class to store double instead of single floats. | Yohann Ferreira | 4 | -6/+12 | |
Also fixed a few compile warnings. | |||||
2010-07-29 | Changed the items loading to handle a new 'attack-action' parameter. | Yohann Ferreira | 21 | -213/+128 | |
The old behaviour was to load the weapon-type value and do many unnecessary checks and transformation on it: The weapon-type was transformed using hard-coded values into an integer enum value. The exact same thing was done on the opposite side in the animation files before comparing the two. As both data were string values, I simplified all of it by using the value taken in items.xml to call the corresponding action. This now also permit to set up new attack animation in items.xml and in the playerset.xml without having the need to modify the client code. Last but not least, the weapon-type value was used by both the skills and the actions and avoided the possibility to set up a definite action for a weapon-type. Note: The weapon-type parameter will become deprecated for the server in favor of a 'skill' parameter to reflect more it's actual use. This patch is the first step to fix Manasource issue: #157. | |||||
2010-07-28 | Centralized configuration default values using the VariableData system. | Yohann Ferreira | 62 | -220/+597 | |
Please note that I didn't turned all the getValue() call into new ones, simply because I have to have config object initiated which is not forcefully the case the branding file. Resolves: Manasource Mantis #170. | |||||
2010-07-28 | Changed mAttackType to mWeaponAttackType were appropriate. | Yohann Ferreira | 4 | -13/+13 | |
To avoid misunderstanding between the actual attackType and this one. (Trivial fix.) | |||||
2010-07-28 | Add some null being checks and cleanup some related code | Jared Adams | 3 | -27/+25 | |
Reviewed-by: Chuck Miller | |||||
2010-07-27 | Improve OpenGL speed. | Andrei Karas | 3 | -110/+422 | |
Use batch commands and not selecting already selected texture. Signed-off-by: Jared Adams <jaxad0127@gmail.com> | |||||
2010-07-23 | Merge branch '1.0' of gitorious.org:mana/mana into 1.0 | David Athay | 2 | -4/+4 | |
2010-07-23 | Updated xcode project. | David Athay | 1 | -6/+3 | |
2010-07-23 | Added simple sanity checks for missing animation in maps. | Yohann Ferreira | 2 | -13/+38 | |
Fixes a bunch of crash courses for me. Reviewed-by: Freeyorp | |||||
2010-07-23 | Fixing compatibility with cmake 2.6.0 | Renato Alves | 2 | -4/+4 | |
The syntax IF ((condition) OR (condition)) is not accepted by cmake prior to 2.6.4. The syntax IF (NOT (condition OR condition)) is also not accepted. The patch should address this without affecting newer versions. A newline character was also automatically added to the end of the file. | |||||
2010-07-22 | Merge branch '1.0' of gitorious.org:mana/mana into 1.0 | David Athay | 1 | -0/+5 | |
2010-07-22 | Additional temporary cmake files added to .gitignore | Renato Alves | 1 | -0/+2 | |
2010-07-22 | Patches generated by git format-patch added to .gitignore | Renato Alves | 1 | -0/+3 | |
2010-07-22 | Patches generated by git format-patch added to .gitignore | Renato Alves | 1 | -0/+3 | |
2010-07-22 | Additional temporary cmake files added to .gitignore | Renato Alves | 1 | -0/+2 | |
2010-07-22 | Add two debug map modes and improve slightly map drawing. | Andrei Karas | 3 | -14/+84 | |
Reviewed-by: Bertram | |||||
2010-07-20 | Merge branch '1.0' of gitorious.org:mana/mana into 1.0 | David Athay | 1 | -0/+6 | |
2010-07-20 | Updated project file for mac. | David Athay | 2 | -77/+83 | |
2010-07-19 | Finished to add the xmessage support thanks to Kook. | kook | 1 | -1/+3 | |
Reviewed-by: Bertram | |||||
2010-07-19 | added xmessage for linux case of error | koom | 1 | -0/+4 | |
Reviewed-by: Bertram. |