Sign.cpp 7.9 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. opcode = EQOpcodeManager[GetOpcodeVersion(version)]->EmuToEQ(OP_EqCreateSignWidgetCmd);
  52. return spawn_serialize(player, version);
  53. }
  54. void Sign::SetWidgetID(int32 val){
  55. widget_id = val;
  56. }
  57. void Sign::SetWidgetX(float val){
  58. widget_x = val;
  59. }
  60. float Sign::GetWidgetX(){
  61. return widget_x;
  62. }
  63. void Sign::SetWidgetY(float val){
  64. widget_y = val;
  65. }
  66. float Sign::GetWidgetY(){
  67. return widget_y;
  68. }
  69. void Sign::SetWidgetZ(float val){
  70. widget_z = val;
  71. }
  72. float Sign::GetWidgetZ(){
  73. return widget_z;
  74. }
  75. void Sign::SetSignIcon(int8 val){
  76. appearance.icon = val;
  77. }
  78. void Sign::SetIncludeLocation(bool val){
  79. include_location = val;
  80. }
  81. bool Sign::GetIncludeLocation(){
  82. return include_location;
  83. }
  84. void Sign::SetIncludeHeading(bool val){
  85. include_heading = val;
  86. }
  87. bool Sign::GetIncludeHeading(){
  88. return include_heading;
  89. }
  90. Sign* Sign::Copy(){
  91. Sign* new_spawn = new Sign();
  92. if(GetSizeOffset() > 0){
  93. int8 offset = GetSizeOffset()+1;
  94. sint32 tmp_size = size + (rand()%offset - rand()%offset);
  95. if(tmp_size < 0)
  96. tmp_size = 1;
  97. else if(tmp_size >= 0xFFFF)
  98. tmp_size = 0xFFFF;
  99. new_spawn->size = (int16)tmp_size;
  100. }
  101. else
  102. new_spawn->size = size;
  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. return new_spawn;
  130. }
  131. int32 Sign::GetSignZoneID(){
  132. return zone_id;
  133. }
  134. void Sign::SetSignZoneID(int32 val){
  135. zone_id = val;
  136. }
  137. const char* Sign::GetSignTitle(){
  138. if(title.length() > 0)
  139. return title.c_str();
  140. else
  141. return 0;
  142. }
  143. void Sign::SetSignTitle(const char* val){
  144. if(val)
  145. title = string(val);
  146. }
  147. const char* Sign::GetSignDescription(){
  148. if(description.length() > 0)
  149. return description.c_str();
  150. else
  151. return 0;
  152. }
  153. void Sign::SetSignDescription(const char* val){
  154. if(val)
  155. description = string(val);
  156. }
  157. int8 Sign::GetSignType(){
  158. return sign_type;
  159. }
  160. void Sign::SetSignType(int8 val){
  161. sign_type = val;
  162. }
  163. float Sign::GetSignZoneX(){
  164. return zone_x;
  165. }
  166. void Sign::SetSignZoneX(float val){
  167. zone_x = val;
  168. }
  169. float Sign::GetSignZoneY(){
  170. return zone_y;
  171. }
  172. void Sign::SetSignZoneY(float val){
  173. zone_y = val;
  174. }
  175. float Sign::GetSignZoneZ(){
  176. return zone_z;
  177. }
  178. void Sign::SetSignZoneZ(float val){
  179. zone_z = val;
  180. }
  181. float Sign::GetSignZoneHeading(){
  182. return zone_heading;
  183. }
  184. void Sign::SetSignZoneHeading(float val){
  185. zone_heading = val;
  186. }
  187. float Sign::GetSignDistance(){
  188. return sign_distance;
  189. }
  190. void Sign::SetSignDistance(float val){
  191. sign_distance = val;
  192. }
  193. void Sign::HandleUse(Client* client, string command)
  194. {
  195. vector<TransportDestination*> destinations;
  196. //The following check disables the use of doors and other widgets if the player does not meet the quest requirements
  197. //If this is from a script ignore this check (client will be null)
  198. if (client) {
  199. bool meets_quest_reqs = MeetsSpawnAccessRequirements(client->GetPlayer());
  200. if (!meets_quest_reqs && (GetQuestsRequiredOverride() & 2) == 0)
  201. return;
  202. else if (meets_quest_reqs && appearance.show_command_icon != 1)
  203. return;
  204. }
  205. if( GetTransporterID() > 0 )
  206. GetZone()->GetTransporters(&destinations, client, GetTransporterID());
  207. if( destinations.size() )
  208. {
  209. client->ProcessTeleport(this, &destinations, GetTransporterID());
  210. }
  211. else if( sign_type == SIGN_TYPE_ZONE && GetSignZoneID() > 0 )
  212. {
  213. if( GetSignDistance() == 0 || client->GetPlayer()->GetDistance(this) <= GetSignDistance() )
  214. {
  215. string* name = database.GetZoneName(GetSignZoneID());
  216. if( name )
  217. {
  218. if( !client->CheckZoneAccess(name->c_str()) )
  219. return;
  220. // determine if the coordinates should be set (returns false if they should)
  221. // clearer, if the sign has x,y,z,heading coordinates, use them otherwise I assume we use the zones safe coords(?)
  222. bool zone_coords_invalid = ( zone_x == 0 && zone_y == 0 && zone_z == 0 && zone_heading == 0 );
  223. // I really hate double-negatives. Seriously?
  224. if ( !zone_coords_invalid )
  225. {
  226. LogWrite(SIGN__DEBUG, 0, "Sign", "Sign has valid zone-to coordinates (%.2f, %.2f, %.2f, %.2f)", zone_x, zone_y, zone_z, zone_heading);
  227. client->GetPlayer()->SetX(zone_x);
  228. client->GetPlayer()->SetY(zone_y);
  229. client->GetPlayer()->SetZ(zone_z);
  230. client->GetPlayer()->SetHeading(zone_heading);
  231. }
  232. else // alert client we couldnt set the coordinates
  233. {
  234. LogWrite(SIGN__WARNING, 0, "Sign", "Sign has no zone-to coordinates set, using zones safe coords.");
  235. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Invalid zone in coords, taking you to a safe point.");
  236. }
  237. // Test if where we're going is an Instanced zone
  238. if ( !client->TryZoneInstance(GetSignZoneID(), zone_coords_invalid) )
  239. {
  240. LogWrite(SIGN__DEBUG, 0, "Sign", "Sending client to instance of zone_id: %u", GetSignZoneID());
  241. client->Zone(name->c_str(), zone_coords_invalid);
  242. }
  243. safe_delete(name);
  244. }
  245. else
  246. {
  247. LogWrite(SIGN__WARNING, 0, "Sign", "Unable to find zone with ID: %u", GetSignZoneID());
  248. client->Message(CHANNEL_COLOR_YELLOW, "Unable to find zone with ID: %u", GetSignZoneID());
  249. }
  250. }
  251. else
  252. {
  253. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You are too far away!");
  254. }
  255. }
  256. else if (client && command.length() > 0)
  257. {
  258. EntityCommand* entity_command = FindEntityCommand(command);
  259. if (entity_command)
  260. {
  261. LogWrite(SIGN__DEBUG, 0, "Sign", "ActivateQuestRequired Sign - Command: '%s'", entity_command->command.c_str());
  262. client->GetCurrentZone()->ProcessEntityCommand(entity_command, client->GetPlayer(), client->GetPlayer()->GetTarget());
  263. }
  264. }
  265. }