Sign.cpp 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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->SetMerchantID(merchant_id);
  103. new_spawn->SetMerchantType(merchant_type);
  104. new_spawn->SetMerchantLevelRange(GetMerchantMinLevel(), GetMerchantMaxLevel());
  105. new_spawn->SetPrimaryCommands(&primary_command_list);
  106. new_spawn->primary_command_list_id = primary_command_list_id;
  107. new_spawn->SetSecondaryCommands(&secondary_command_list);
  108. new_spawn->secondary_command_list_id = secondary_command_list_id;
  109. new_spawn->database_id = database_id;
  110. memcpy(&new_spawn->appearance, &appearance, sizeof(AppearanceData));
  111. new_spawn->SetWidgetID(widget_id);
  112. new_spawn->SetWidgetX(widget_x);
  113. new_spawn->SetWidgetY(widget_y);
  114. new_spawn->SetWidgetZ(widget_z);
  115. new_spawn->SetSignType(sign_type);
  116. new_spawn->SetSignZoneX(zone_x);
  117. new_spawn->SetSignZoneY(zone_y);
  118. new_spawn->SetSignZoneZ(zone_z);
  119. new_spawn->SetSignZoneHeading(zone_heading);
  120. new_spawn->SetSignZoneID(GetSignZoneID());
  121. new_spawn->SetSignTitle(GetSignTitle());
  122. new_spawn->SetSignDescription(GetSignDescription());
  123. new_spawn->SetSignDistance(sign_distance);
  124. new_spawn->SetIncludeHeading(include_heading);
  125. new_spawn->SetIncludeLocation(include_location);
  126. new_spawn->SetTransporterID(GetTransporterID());
  127. new_spawn->SetSoundsDisabled(IsSoundsDisabled());
  128. return new_spawn;
  129. }
  130. int32 Sign::GetSignZoneID(){
  131. return zone_id;
  132. }
  133. void Sign::SetSignZoneID(int32 val){
  134. zone_id = val;
  135. }
  136. const char* Sign::GetSignTitle(){
  137. if(title.length() > 0)
  138. return title.c_str();
  139. else
  140. return 0;
  141. }
  142. void Sign::SetSignTitle(const char* val){
  143. if(val)
  144. title = string(val);
  145. }
  146. const char* Sign::GetSignDescription(){
  147. if(description.length() > 0)
  148. return description.c_str();
  149. else
  150. return 0;
  151. }
  152. void Sign::SetSignDescription(const char* val){
  153. if(val)
  154. description = string(val);
  155. }
  156. int8 Sign::GetSignType(){
  157. return sign_type;
  158. }
  159. void Sign::SetSignType(int8 val){
  160. sign_type = val;
  161. }
  162. float Sign::GetSignZoneX(){
  163. return zone_x;
  164. }
  165. void Sign::SetSignZoneX(float val){
  166. zone_x = val;
  167. }
  168. float Sign::GetSignZoneY(){
  169. return zone_y;
  170. }
  171. void Sign::SetSignZoneY(float val){
  172. zone_y = val;
  173. }
  174. float Sign::GetSignZoneZ(){
  175. return zone_z;
  176. }
  177. void Sign::SetSignZoneZ(float val){
  178. zone_z = val;
  179. }
  180. float Sign::GetSignZoneHeading(){
  181. return zone_heading;
  182. }
  183. void Sign::SetSignZoneHeading(float val){
  184. zone_heading = val;
  185. }
  186. float Sign::GetSignDistance(){
  187. return sign_distance;
  188. }
  189. void Sign::SetSignDistance(float val){
  190. sign_distance = val;
  191. }
  192. void Sign::HandleUse(Client* client, string command)
  193. {
  194. vector<TransportDestination*> destinations;
  195. //The following check disables the use of doors and other widgets if the player does not meet the quest requirements
  196. //If this is from a script ignore this check (client will be null)
  197. if (client) {
  198. bool meets_quest_reqs = MeetsSpawnAccessRequirements(client->GetPlayer());
  199. if (!meets_quest_reqs && (GetQuestsRequiredOverride() & 2) == 0)
  200. return;
  201. else if (meets_quest_reqs && appearance.show_command_icon != 1)
  202. return;
  203. }
  204. if( GetTransporterID() > 0 )
  205. GetZone()->GetTransporters(&destinations, client, GetTransporterID());
  206. if( destinations.size() )
  207. {
  208. client->SetTemporaryTransportID(0);
  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.length() >0 )
  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. }
  244. else
  245. {
  246. LogWrite(SIGN__WARNING, 0, "Sign", "Unable to find zone with ID: %u", GetSignZoneID());
  247. client->Message(CHANNEL_COLOR_YELLOW, "Unable to find zone with ID: %u", GetSignZoneID());
  248. }
  249. }
  250. else
  251. {
  252. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You are too far away!");
  253. }
  254. }
  255. else if (client && command.length() > 0)
  256. {
  257. EntityCommand* entity_command = FindEntityCommand(command);
  258. if (entity_command)
  259. {
  260. LogWrite(SIGN__DEBUG, 0, "Sign", "ActivateQuestRequired Sign - Command: '%s'", entity_command->command.c_str());
  261. client->GetCurrentZone()->ProcessEntityCommand(entity_command, client->GetPlayer(), client->GetPlayer()->GetTarget());
  262. }
  263. }
  264. }