Sign.cpp 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. /*
  2. EQ2Emulator: Everquest II Server Emulator
  3. Copyright (C) 2007 EQ2EMulator Development Team (http://www.eq2emulator.net)
  4. This file is part of EQ2Emulator.
  5. EQ2Emulator is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. EQ2Emulator is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with EQ2Emulator. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include "Sign.h"
  17. #include "../common/ConfigReader.h"
  18. #include "WorldDatabase.h"
  19. #include "World.h"
  20. #include "../common/Log.h"
  21. extern World world;
  22. extern ConfigReader configReader;
  23. extern WorldDatabase database;
  24. extern ZoneList zone_list;
  25. extern MasterSpellList master_spell_list;
  26. Sign::Sign(){
  27. widget_id = 0;
  28. widget_x = 0;
  29. widget_y = 0;
  30. widget_z = 0;
  31. appearance.pos.state = 1;
  32. appearance.encounter_level = 0;
  33. spawn_type = 2;
  34. appearance.activity_status = 64;
  35. sign_type = 0;
  36. zone_x = 0;
  37. zone_y = 0;
  38. zone_z = 0;
  39. zone_heading = 0;
  40. sign_distance = 0;
  41. include_location = false;
  42. include_heading = false;
  43. zone_id = 0;
  44. }
  45. Sign::~Sign(){
  46. }
  47. int32 Sign::GetWidgetID(){
  48. return widget_id;
  49. }
  50. EQ2Packet* Sign::serialize(Player* player, int16 version){
  51. return spawn_serialize(player, version);
  52. }
  53. void Sign::SetWidgetID(int32 val){
  54. widget_id = val;
  55. }
  56. void Sign::SetWidgetX(float val){
  57. widget_x = val;
  58. }
  59. float Sign::GetWidgetX(){
  60. return widget_x;
  61. }
  62. void Sign::SetWidgetY(float val){
  63. widget_y = val;
  64. }
  65. float Sign::GetWidgetY(){
  66. return widget_y;
  67. }
  68. void Sign::SetWidgetZ(float val){
  69. widget_z = val;
  70. }
  71. float Sign::GetWidgetZ(){
  72. return widget_z;
  73. }
  74. void Sign::SetSignIcon(int8 val){
  75. appearance.icon = val;
  76. }
  77. void Sign::SetIncludeLocation(bool val){
  78. include_location = val;
  79. }
  80. bool Sign::GetIncludeLocation(){
  81. return include_location;
  82. }
  83. void Sign::SetIncludeHeading(bool val){
  84. include_heading = val;
  85. }
  86. bool Sign::GetIncludeHeading(){
  87. return include_heading;
  88. }
  89. Sign* Sign::Copy(){
  90. Sign* new_spawn = new Sign();
  91. if(GetSizeOffset() > 0){
  92. int8 offset = GetSizeOffset()+1;
  93. sint32 tmp_size = size + (rand()%offset - rand()%offset);
  94. if(tmp_size < 0)
  95. tmp_size = 1;
  96. else if(tmp_size >= 0xFFFF)
  97. tmp_size = 0xFFFF;
  98. new_spawn->size = (int16)tmp_size;
  99. }
  100. else
  101. new_spawn->size = size;
  102. new_spawn->SetCollector(IsCollector());
  103. new_spawn->SetMerchantID(merchant_id);
  104. new_spawn->SetMerchantType(merchant_type);
  105. new_spawn->SetMerchantLevelRange(GetMerchantMinLevel(), GetMerchantMaxLevel());
  106. new_spawn->SetPrimaryCommands(&primary_command_list);
  107. new_spawn->primary_command_list_id = primary_command_list_id;
  108. new_spawn->SetSecondaryCommands(&secondary_command_list);
  109. new_spawn->secondary_command_list_id = secondary_command_list_id;
  110. new_spawn->database_id = database_id;
  111. memcpy(&new_spawn->appearance, &appearance, sizeof(AppearanceData));
  112. new_spawn->SetWidgetID(widget_id);
  113. new_spawn->SetWidgetX(widget_x);
  114. new_spawn->SetWidgetY(widget_y);
  115. new_spawn->SetWidgetZ(widget_z);
  116. new_spawn->SetSignType(sign_type);
  117. new_spawn->SetSignZoneX(zone_x);
  118. new_spawn->SetSignZoneY(zone_y);
  119. new_spawn->SetSignZoneZ(zone_z);
  120. new_spawn->SetSignZoneHeading(zone_heading);
  121. new_spawn->SetSignZoneID(GetSignZoneID());
  122. new_spawn->SetSignTitle(GetSignTitle());
  123. new_spawn->SetSignDescription(GetSignDescription());
  124. new_spawn->SetSignDistance(sign_distance);
  125. new_spawn->SetIncludeHeading(include_heading);
  126. new_spawn->SetIncludeLocation(include_location);
  127. new_spawn->SetTransporterID(GetTransporterID());
  128. new_spawn->SetSoundsDisabled(IsSoundsDisabled());
  129. new_spawn->SetOmittedByDBFlag(IsOmittedByDBFlag());
  130. new_spawn->SetLootTier(GetLootTier());
  131. return new_spawn;
  132. }
  133. int32 Sign::GetSignZoneID(){
  134. return zone_id;
  135. }
  136. void Sign::SetSignZoneID(int32 val){
  137. zone_id = val;
  138. }
  139. const char* Sign::GetSignTitle(){
  140. if(title.length() > 0)
  141. return title.c_str();
  142. else
  143. return 0;
  144. }
  145. void Sign::SetSignTitle(const char* val){
  146. if(val)
  147. title = string(val);
  148. }
  149. const char* Sign::GetSignDescription(){
  150. if(description.length() > 0)
  151. return description.c_str();
  152. else
  153. return 0;
  154. }
  155. void Sign::SetSignDescription(const char* val){
  156. if(val)
  157. description = string(val);
  158. }
  159. int8 Sign::GetSignType(){
  160. return sign_type;
  161. }
  162. void Sign::SetSignType(int8 val){
  163. sign_type = val;
  164. }
  165. float Sign::GetSignZoneX(){
  166. return zone_x;
  167. }
  168. void Sign::SetSignZoneX(float val){
  169. zone_x = val;
  170. }
  171. float Sign::GetSignZoneY(){
  172. return zone_y;
  173. }
  174. void Sign::SetSignZoneY(float val){
  175. zone_y = val;
  176. }
  177. float Sign::GetSignZoneZ(){
  178. return zone_z;
  179. }
  180. void Sign::SetSignZoneZ(float val){
  181. zone_z = val;
  182. }
  183. float Sign::GetSignZoneHeading(){
  184. return zone_heading;
  185. }
  186. void Sign::SetSignZoneHeading(float val){
  187. zone_heading = val;
  188. }
  189. float Sign::GetSignDistance(){
  190. return sign_distance;
  191. }
  192. void Sign::SetSignDistance(float val){
  193. sign_distance = val;
  194. }
  195. void Sign::HandleUse(Client* client, string command)
  196. {
  197. vector<TransportDestination*> destinations;
  198. //The following check disables the use of doors and other widgets if the player does not meet the quest requirements
  199. //If this is from a script ignore this check (client will be null)
  200. if (client) {
  201. bool meets_quest_reqs = MeetsSpawnAccessRequirements(client->GetPlayer());
  202. if (!meets_quest_reqs && (GetQuestsRequiredOverride() & 2) == 0)
  203. return;
  204. else if (meets_quest_reqs && appearance.show_command_icon != 1)
  205. return;
  206. }
  207. if( GetTransporterID() > 0 )
  208. GetZone()->GetTransporters(&destinations, client, GetTransporterID());
  209. if( destinations.size() )
  210. {
  211. client->SetTemporaryTransportID(0);
  212. client->ProcessTeleport(this, &destinations, GetTransporterID());
  213. }
  214. else if( sign_type == SIGN_TYPE_ZONE && GetSignZoneID() > 0 )
  215. {
  216. if( GetSignDistance() == 0 || client->GetPlayer()->GetDistance(this) <= GetSignDistance() )
  217. {
  218. string name = database.GetZoneName(GetSignZoneID());
  219. if( name.length() >0 )
  220. {
  221. if( !client->CheckZoneAccess(name.c_str()) )
  222. return;
  223. // determine if the coordinates should be set (returns false if they should)
  224. // clearer, if the sign has x,y,z,heading coordinates, use them otherwise I assume we use the zones safe coords(?)
  225. bool zone_coords_invalid = ( zone_x == 0 && zone_y == 0 && zone_z == 0 && zone_heading == 0 );
  226. // I really hate double-negatives. Seriously?
  227. if ( !zone_coords_invalid )
  228. {
  229. LogWrite(SIGN__DEBUG, 0, "Sign", "Sign has valid zone-to coordinates (%.2f, %.2f, %.2f, %.2f)", zone_x, zone_y, zone_z, zone_heading);
  230. client->GetPlayer()->SetX(zone_x);
  231. client->GetPlayer()->SetY(zone_y);
  232. client->GetPlayer()->SetZ(zone_z);
  233. client->GetPlayer()->SetHeading(zone_heading);
  234. }
  235. else // alert client we couldnt set the coordinates
  236. {
  237. LogWrite(SIGN__WARNING, 0, "Sign", "Sign has no zone-to coordinates set, using zones safe coords.");
  238. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Invalid zone in coords, taking you to a safe point.");
  239. }
  240. // Test if where we're going is an Instanced zone
  241. if ( !client->TryZoneInstance(GetSignZoneID(), zone_coords_invalid) )
  242. {
  243. LogWrite(SIGN__DEBUG, 0, "Sign", "Sending client to instance of zone_id: %u", GetSignZoneID());
  244. client->Zone(name.c_str(), zone_coords_invalid);
  245. }
  246. }
  247. else
  248. {
  249. LogWrite(SIGN__WARNING, 0, "Sign", "Unable to find zone with ID: %u", GetSignZoneID());
  250. client->Message(CHANNEL_COLOR_YELLOW, "Unable to find zone with ID: %u", GetSignZoneID());
  251. }
  252. }
  253. else
  254. {
  255. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You are too far away!");
  256. }
  257. }
  258. else if (client && command.length() > 0)
  259. {
  260. EntityCommand* entity_command = FindEntityCommand(command);
  261. if (entity_command)
  262. {
  263. LogWrite(SIGN__DEBUG, 0, "Sign", "ActivateQuestRequired Sign - Command: '%s'", entity_command->command.c_str());
  264. client->GetCurrentZone()->ProcessEntityCommand(entity_command, client->GetPlayer(), client->GetPlayer()->GetTarget());
  265. }
  266. }
  267. }