Changeset 8284 for code/branches/kicklib2/src/modules
- Timestamp:
- Apr 21, 2011, 6:58:23 PM (14 years ago)
- Location:
- code/branches/kicklib2
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/kicklib2
- Property svn:mergeinfo changed
-
code/branches/kicklib2/src/modules/designtools/DesignToolsPrereqs.h
r7163 r8284 53 53 # endif 54 54 # endif 55 #elif defined ( ORXONOX_GCC_VISIBILITY ) 55 # define _DesignToolsPrivate 56 #elif defined (ORXONOX_GCC_VISIBILITY) 56 57 # define _DesignToolsExport __attribute__ ((visibility("default"))) 58 # define _DesignToolsPrivate __attribute__ ((visibility("hidden"))) 57 59 #else 58 60 # define _DesignToolsExport 61 # define _DesignToolsPrivate 59 62 #endif 60 63 -
code/branches/kicklib2/src/modules/designtools/ScreenshotManager.cc
r8232 r8284 46 46 #include "core/GraphicsManager.h" 47 47 #include "core/PathConfig.h" 48 #include "core/Resource.h" 48 49 #include "core/command/ConsoleCommand.h" 49 50 #include "util/ScopedSingletonManager.h" -
code/branches/kicklib2/src/modules/notifications/NotificationsPrereqs.h
r7403 r8284 53 53 # endif 54 54 # endif 55 #elif defined ( ORXONOX_GCC_VISIBILITY ) 55 # define _NotificationsPrivate 56 #elif defined (ORXONOX_GCC_VISIBILITY) 56 57 # define _NotificationsExport __attribute__ ((visibility("default"))) 58 # define _NotificationsPrivate __attribute__ ((visibility("hidden"))) 57 59 #else 58 60 # define _NotificationsExport 61 # define _NotificationsPrivate 59 62 #endif 60 63 -
code/branches/kicklib2/src/modules/objects/ObjectsPrereqs.h
r7601 r8284 53 53 # endif 54 54 # endif 55 #elif defined ( ORXONOX_GCC_VISIBILITY ) 55 # define _ObjectsPrivate 56 #elif defined (ORXONOX_GCC_VISIBILITY) 56 57 # define _ObjectsExport __attribute__ ((visibility("default"))) 58 # define _ObjectsPrivate __attribute__ ((visibility("hidden"))) 57 59 #else 58 60 # define _ObjectsExport 61 # define _ObjectsPrivate 59 62 #endif 60 63 -
code/branches/kicklib2/src/modules/overlays/OverlaysPrereqs.h
r8079 r8284 53 53 # endif 54 54 # endif 55 #elif defined ( ORXONOX_GCC_VISIBILITY ) 55 # define _OverlaysPrivate 56 #elif defined (ORXONOX_GCC_VISIBILITY) 56 57 # define _OverlaysExport __attribute__ ((visibility("default"))) 58 # define _OverlaysPrivate __attribute__ ((visibility("hidden"))) 57 59 #else 58 60 # define _OverlaysExport 61 # define _OverlaysPrivate 59 62 #endif 60 63 -
code/branches/kicklib2/src/modules/pickup/PickupPrereqs.h
r7163 r8284 53 53 # endif 54 54 # endif 55 #elif defined ( ORXONOX_GCC_VISIBILITY ) 55 # define _PickupPrivate 56 #elif defined (ORXONOX_GCC_VISIBILITY) 56 57 # define _PickupExport __attribute__ ((visibility("default"))) 58 # define _PickupPrivate __attribute__ ((visibility("hidden"))) 57 59 #else 58 60 # define _PickupExport 61 # define _PickupPrivate 59 62 #endif 60 63 -
code/branches/kicklib2/src/modules/pong/PongPrereqs.h
r7163 r8284 53 53 # endif 54 54 # endif 55 #elif defined ( ORXONOX_GCC_VISIBILITY ) 55 # define _PongPrivate 56 #elif defined (ORXONOX_GCC_VISIBILITY) 56 57 # define _PongExport __attribute__ ((visibility("default"))) 58 # define _PongPrivate __attribute__ ((visibility("hidden"))) 57 59 #else 58 60 # define _PongExport 61 # define _PongPrivate 59 62 #endif 60 63 -
code/branches/kicklib2/src/modules/questsystem/QuestEffect.cc
r7456 r8284 68 68 /*static*/ bool QuestEffect::invokeEffects(PlayerInfo* player, std::list<QuestEffect*> & effects) 69 69 { 70 bool check= true;70 bool temp = true; 71 71 72 72 COUT(4) << "Invoking QuestEffects on player: " << player << " ." << std::endl; 73 73 74 74 for (std::list<QuestEffect*>::iterator effect = effects.begin(); effect != effects.end(); effect++) 75 check = check&& (*effect)->invoke(player);75 temp = temp && (*effect)->invoke(player); 76 76 77 return check;77 return temp; 78 78 } 79 79 -
code/branches/kicklib2/src/modules/questsystem/QuestEffectBeacon.cc
r7552 r8284 143 143 COUT(4) << "QuestEffectBeacon executed on player: " << player << " ." << std::endl; 144 144 145 bool check= QuestEffect::invokeEffects(player, this->effects_); // Invoke the QuestEffects on the PlayerInfo.146 if( check)145 bool temp = QuestEffect::invokeEffects(player, this->effects_); // Invoke the QuestEffects on the PlayerInfo. 146 if(temp) 147 147 { 148 148 this->decrementTimes(); // Decrement the number of times the beacon can be used. -
code/branches/kicklib2/src/modules/questsystem/QuestsystemPrereqs.h
r7474 r8284 53 53 # endif 54 54 # endif 55 #elif defined ( ORXONOX_GCC_VISIBILITY ) 55 # define _QuestsystemPrivate 56 #elif defined (ORXONOX_GCC_VISIBILITY) 56 57 # define _QuestsystemExport __attribute__ ((visibility("default"))) 58 # define _QuestsystemPrivate __attribute__ ((visibility("hidden"))) 57 59 #else 58 60 # define _QuestsystemExport 61 # define _QuestsystemPrivate 59 62 #endif 60 63 -
code/branches/kicklib2/src/modules/questsystem/effects/AddReward.cc
r7456 r8284 105 105 COUT(5) << "AddReward on player: " << player << " ." << std::endl; 106 106 107 bool check= true;107 bool temp = true; 108 108 for ( std::list<Rewardable*>::iterator reward = this->rewards_.begin(); reward != this->rewards_.end(); ++reward ) 109 check = check&& (*reward)->reward(player);109 temp = temp && (*reward)->reward(player); 110 110 111 111 COUT(4) << "Rewardable successfully added to player." << player << " ." << std::endl; 112 112 113 return check;113 return temp; 114 114 } 115 115 -
code/branches/kicklib2/src/modules/weapons/WeaponsPrereqs.h
r7846 r8284 53 53 # endif 54 54 # endif 55 #elif defined ( ORXONOX_GCC_VISIBILITY ) 55 # define _WeaponsPrivate 56 #elif defined (ORXONOX_GCC_VISIBILITY) 56 57 # define _WeaponsExport __attribute__ ((visibility("default"))) 58 # define _WeaponsPrivate __attribute__ ((visibility("hidden"))) 57 59 #else 58 60 # define _WeaponsExport 61 # define _WeaponsPrivate 59 62 #endif 60 63
Note: See TracChangeset
for help on using the changeset viewer.