]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/mutators/sandbox.qc
Use EF_SELECTABLE on sandbox objects, making them turn bright when looking at them...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / mutators / sandbox.qc
1 const float MAX_STORAGE_ATTACHMENTS = 16;
2 float object_count;
3 .entity object_attach;
4 .string material;
5
6 .float touch_timer;
7 void sandbox_ObjectFunction_Touch()
8 {
9         // apply material impact effects
10
11         if(!self.material)
12                 return;
13         if(self.touch_timer > time)
14                 return; // don't execute each frame
15         self.touch_timer = time + 0.1;
16
17         // make particle count and sound volume depend on impact speed
18         float intensity;
19         intensity = vlen(self.velocity) + vlen(other.velocity);
20         if(intensity) // avoid divisions by 0
21                 intensity /= 2; // average the two velocities
22         if not(intensity >= autocvar_g_sandbox_object_material_velocity_min)
23                 return; // impact not strong enough to do anything
24         // now offset intensity and apply it to the effects
25         intensity -= autocvar_g_sandbox_object_material_velocity_min; // start from minimum velocity, not actual velocity
26         intensity = bound(0, intensity * autocvar_g_sandbox_object_material_velocity_factor, 1);
27
28         sound(self, CH_TRIGGER, strcat("object/impact_", self.material, "_", ftos(ceil(random() * 5)) , ".ogg"), VOL_BASE * intensity, ATTN_NORM);
29         pointparticles(particleeffectnum(strcat("impact_", self.material)), self.origin, '0 0 0', ceil(intensity * 10)); // allow a count from 1 to 10
30 }
31
32 entity sandbox_ObjectEdit_Get(float permissions)
33 {
34         // returns the traced entity if the player can edit it, and world if not
35         // if permissions if FALSE, the object is returned regardless of editing rights
36         // attached objects are SOLID_NOT and don't risk getting traced
37
38         makevectors(self.v_angle);
39         WarpZone_TraceLine(self.origin + self.view_ofs, self.origin + self.view_ofs + v_forward * autocvar_g_sandbox_editor_distance_edit, MOVE_NORMAL, self);
40
41         if(trace_ent.classname != "object")
42                 return world; // entity is not an object
43         if(!permissions)
44                 return trace_ent; // don't check permissions, anyone can edit this object
45         if(!trace_ent.crypto_idfp)
46                 return trace_ent; // the player who spawned this object did not have an UID, so anyone can edit it
47         if not(trace_ent.crypto_idfp != self.crypto_idfp && autocvar_g_sandbox_editor_free < 2)
48                 return trace_ent; // object does not belong to the player, and players can only edit their own objects on this server
49         return world;
50 }
51
52 void sandbox_ObjectEdit_Scale(entity e, float f)
53 {
54         e.scale = f;
55         if(e.scale)
56         {
57                 e.scale = bound(autocvar_g_sandbox_object_scale_min, e.scale, autocvar_g_sandbox_object_scale_max);
58                 setsize(e, e.mins * e.scale, e.maxs * e.scale); // adapt bounding box size to model size
59         }
60 }
61
62 .float old_movetype;
63 void sandbox_ObjectAttach_Remove(entity e);
64 void sandbox_ObjectAttach_Set(entity e, entity parent, string s)
65 {
66         // attaches e to parent on string s
67
68         // we can't attach to an attachment, for obvious reasons
69         sandbox_ObjectAttach_Remove(e);
70
71         e.old_movetype = e.movetype; // persist physics
72         e.movetype = MOVETYPE_FOLLOW;
73         e.solid = SOLID_NOT;
74         e.takedamage = DAMAGE_NO;
75
76         setattachment(e, parent, s);
77         e.owner = parent;
78 }
79
80 void sandbox_ObjectAttach_Remove(entity e)
81 {
82         // detaches any object attached to e
83
84         entity head;
85         for(head = world; (head = find(head, classname, "object")); )
86         {
87                 if(head.owner == e)
88                 {
89                         vector org;
90                         head.movetype = head.old_movetype; // restore persisted physics
91                         head.solid = SOLID_BBOX;
92                         head.takedamage = DAMAGE_AIM;
93
94                         org = gettaginfo(head, 0);
95                         setattachment(head, world, "");
96                         head.owner = world;
97
98                         // objects change origin and angles when detached, so apply previous position
99                         setorigin(head, org);
100                         head.angles = e.angles; // don't allow detached objects to spin or roll
101                 }
102         }
103 }
104
105 entity sandbox_ObjectSpawn(float database)
106 {
107         // spawn a new object with default properties
108
109         entity e;
110         e = spawn();
111         e.classname = "object";
112         e.takedamage = DAMAGE_AIM;
113         e.damageforcescale = 1;
114         e.solid = SOLID_BBOX; // SOLID_BSP would be best, but can lag the server badly
115         e.movetype = MOVETYPE_TOSS;
116         e.frame = 0;
117         e.skin = 0;
118         e.material = string_null;
119         e.touch = sandbox_ObjectFunction_Touch;
120         e.effects |= EF_SELECTABLE;
121
122         if(!database)
123         {
124                 // set the object's owner via player UID
125                 // if the player does not have an UID, the owner cannot be stored and his objects may be edited by anyone
126                 if(self.crypto_idfp != "")
127                         e.crypto_idfp = strzone(self.crypto_idfp);
128                 else
129                         print_to(self, "^1SANDBOX - WARNING: ^7You spawned an object, but lack a player UID. ^1Your objects are not secured and can be edited by any player!");
130
131                 // set origin and direction based on player position and view angle
132                 makevectors(self.v_angle);
133                 WarpZone_TraceLine(self.origin + self.view_ofs, self.origin + self.view_ofs + v_forward * autocvar_g_sandbox_editor_distance_spawn, MOVE_NORMAL, self);
134                 setorigin(e, trace_endpos);
135                 e.angles_y = self.v_angle_y;
136         }
137
138         object_count += 1;
139         return e;
140 }
141
142 void sandbox_ObjectRemove(entity e)
143 {
144         sandbox_ObjectAttach_Remove(e); // detach child objects
145         if(e.material)
146         {
147                 strunzone(e.material);
148                 e.material = string_null;
149         }
150         if(e.crypto_idfp)
151         {
152                 strunzone(e.crypto_idfp);
153                 e.crypto_idfp = string_null;
154         }
155         remove(e);
156         e = world;
157
158         object_count -= 1;
159 }
160
161 string port_string[MAX_STORAGE_ATTACHMENTS]; // fteqcc crashes if this isn't defined as a global
162
163 string sandbox_ObjectPort_Save(entity e, float database)
164 {
165         // save object properties, and return them as a string
166         float i;
167         string s;
168         entity head;
169
170         for(head = world; (head = find(head, classname, "object")); )
171         {
172                 // the main object needs to be first in the array [0] with attached objects following
173                 float slot, physics;
174                 if(head == e) // this is the main object, place it first
175                 {
176                         slot = 0;
177                         physics = head.movetype; // applied physics are normal physics for parents
178                 }
179                 else if(head.owner == e) // child object, list them in order
180                 {
181                         i += 1; // children start from 1
182                         slot = i;
183                         physics = head.old_movetype; // persisted physics are normal physics for children
184                         gettaginfo(head.owner, head.tag_index); // get the name of the tag our object is attached to, used further below
185                 }
186                 else
187                         continue;
188
189                 // ---------------- OBJECT PROPERTY STORAGE: SAVE ----------------
190                 if(slot)
191                 {
192                         // properties stored only for child objects
193                         if(gettaginfo_name)     port_string[slot] = strcat(port_string[slot], "\"", gettaginfo_name, "\" ");    else    port_string[slot] = strcat(port_string[slot], "- "); // none
194                 }
195                 else
196                 {
197                         // properties stored only for parent objects
198                         if(database)
199                         {
200                                 port_string[slot] = strcat(port_string[slot], sprintf("\"%.9v\"", head.origin), " ");
201                                 port_string[slot] = strcat(port_string[slot], sprintf("\"%.9v\"", head.angles), " ");
202                         }
203                 }
204                 // properties stored for all objects
205                 port_string[slot] = strcat(port_string[slot], "\"", head.model, "\" ");
206                 port_string[slot] = strcat(port_string[slot], ftos(head.skin), " ");
207                 port_string[slot] = strcat(port_string[slot], ftos(head.alpha), " ");
208                 port_string[slot] = strcat(port_string[slot], sprintf("\"%.9v\"", head.colormod), " ");
209                 port_string[slot] = strcat(port_string[slot], sprintf("\"%.9v\"", head.glowmod), " ");
210                 port_string[slot] = strcat(port_string[slot], ftos(head.frame), " ");
211                 port_string[slot] = strcat(port_string[slot], ftos(head.scale), " ");
212                 port_string[slot] = strcat(port_string[slot], ftos(physics), " ");
213                 port_string[slot] = strcat(port_string[slot], ftos(head.damageforcescale), " ");
214                 if(head.material)       port_string[slot] = strcat(port_string[slot], "\"", head.material, "\" ");      else    port_string[slot] = strcat(port_string[slot], "- "); // none
215                 if(database)
216                 {
217                         // properties stored only for the database
218                         if(head.crypto_idfp)    port_string[slot] = strcat(port_string[slot], "\"", head.crypto_idfp, "\" ");   else    port_string[slot] = strcat(port_string[slot], "- "); // none
219                 }
220         }
221
222         // now apply the array to a simple string, with the ; symbol separating objects
223         for(i = 0; i <= MAX_STORAGE_ATTACHMENTS; ++i)
224         {
225                 if(port_string[i])
226                         s = strcat(s, port_string[i], "; ");
227                 port_string[i] = string_null; // fully clear the string
228         }
229
230         return s;
231 }
232
233 entity sandbox_ObjectPort_Load(string s, float database)
234 {
235         // load object properties, and spawn a new object with them
236         float n, i;
237         entity e, parent;
238
239         // separate objects between the ; symbols
240         n = tokenizebyseparator(s, "; ");
241         for(i = 0; i < n; ++i)
242                 port_string[i] = argv(i);
243
244         // now separate and apply the properties of each object
245         for(i = 0; i < n; ++i)
246         {
247                 float argv_num;
248                 string tagname;
249                 argv_num = 0;
250                 tokenize_console(port_string[i]);
251                 e = sandbox_ObjectSpawn(database);
252
253                 // ---------------- OBJECT PROPERTY STORAGE: LOAD ----------------
254                 if(i)
255                 {
256                         // properties stored only for child objects
257                         if(argv(argv_num) != "-")       tagname = argv(argv_num);       else tagname = string_null;     ++argv_num;
258                 }
259                 else
260                 {
261                         // properties stored only for parent objects
262                         if(database)
263                         {
264                                 setorigin(e, stov(argv(argv_num)));     ++argv_num;
265                                 e.angles = stov(argv(argv_num));        ++argv_num;
266                         }
267                         parent = e; // mark parent objects as such
268                 }
269                 // properties stored for all objects
270                 setmodel(e, argv(argv_num));    ++argv_num;
271                 e.skin = stof(argv(argv_num));  ++argv_num;
272                 e.alpha = stof(argv(argv_num)); ++argv_num;
273                 e.colormod = stov(argv(argv_num));      ++argv_num;
274                 e.glowmod = stov(argv(argv_num));       ++argv_num;
275                 e.frame = stof(argv(argv_num)); ++argv_num;
276                 sandbox_ObjectEdit_Scale(e, stof(argv(argv_num)));      ++argv_num;
277                 e.movetype = e.old_movetype = stof(argv(argv_num));     ++argv_num;
278                 e.damageforcescale = stof(argv(argv_num));      ++argv_num;
279                 if(e.material)  strunzone(e.material);  if(argv(argv_num) != "-")       e.material = strzone(argv(argv_num));   else    e.material = string_null;       ++argv_num;
280                 if(database)
281                 {
282                         // properties stored only for the database
283                         if(e.crypto_idfp)       strunzone(e.crypto_idfp);       if(argv(argv_num) != "-")       e.crypto_idfp = strzone(argv(argv_num));        else    e.crypto_idfp = string_null;    ++argv_num;
284                 }
285
286                 // attach last
287                 if(i)
288                         sandbox_ObjectAttach_Set(e, parent, tagname);
289         }
290
291         for(i = 0; i <= MAX_STORAGE_ATTACHMENTS; ++i)
292                 port_string[i] = string_null; // fully clear the string
293
294         return e;
295 }
296
297 void sandbox_Database_Save()
298 {
299         // saves all objects to the database file
300         entity head;
301         string file_name;
302         float file_get;
303
304         file_name = strcat("sandbox/storage_", autocvar_g_sandbox_storage_name, "_", GetMapname(), ".txt");
305         file_get = fopen(file_name, FILE_WRITE);
306         fputs(file_get, strcat("// sandbox storage \"", autocvar_g_sandbox_storage_name, "\" for map \"", GetMapname(), "\" last updated ", strftime(TRUE, "%d-%m-%Y %H:%M:%S")));
307         fputs(file_get, strcat(" containing ", ftos(object_count), " objects\n"));
308
309         for(head = world; (head = find(head, classname, "object")); )
310         {
311                 // attached objects are persisted separately, ignore them here
312                 if(head.owner != world)
313                         continue;
314
315                 // use a line of text for each object, listing all properties
316                 fputs(file_get, strcat(sandbox_ObjectPort_Save(head, TRUE), "\n"));
317         }
318         fclose(file_get);
319 }
320
321 void sandbox_Database_Load()
322 {
323         // loads all objects from the database file
324         string file_read, file_name;
325         float file_get, i;
326
327         file_name = strcat("sandbox/storage_", autocvar_g_sandbox_storage_name, "_", GetMapname(), ".txt");
328         file_get = fopen(file_name, FILE_READ);
329         if(file_get < 0)
330         {
331                 if(autocvar_g_sandbox_info > 0)
332                         print(strcat("^3SANDBOX - SERVER: ^7could not find storage file ^3", file_name, "^7, no objects were loaded\n"));
333         }
334         else
335         {
336                 for(;;)
337                 {
338                         file_read = fgets(file_get);
339                         if(!file_read)
340                                 break;
341                         if(substring(file_read, 0, 2) == "//")
342                                 continue;
343                         if(substring(file_read, 0, 1) == "#")
344                                 continue;
345
346                         entity e;
347                         e = sandbox_ObjectPort_Load(file_read, TRUE);
348
349                         if(e.material)
350                         {
351                                 // since objects are being loaded for the first time, precache material sounds for each
352                                 for (i = 1; i <= 5; i++) // 5 sounds in total
353                                         precache_sound(strcat("object/impact_", e.material, "_", ftos(i), ".ogg"));
354                         }
355                 }
356                 if(autocvar_g_sandbox_info > 0)
357                         print(strcat("^3SANDBOX - SERVER: ^7successfully loaded storage file ^3", file_name, "\n"));
358         }
359 }
360
361 MUTATOR_HOOKFUNCTION(sandbox_PlayerCommand)
362 {
363         if(MUTATOR_RETURNVALUE) // command was already handled?
364                 return FALSE;
365         if(cmd_name == "g_sandbox")
366         {
367                 if(cmd_argc < 2)
368                 {
369                         print_to(self, "Sandbox mode is active. For usage information, type 'sandbox help'");
370                         return TRUE;
371                 }
372
373                 switch(argv(1))
374                 {
375                         entity e;
376                         float i;
377                         string s;
378
379                         // ---------------- COMMAND: HELP ----------------
380                         case "help":
381                                 print_to(self, "You can use the following sandbox commands:");
382                                 print_to(self, "^7\"^2object_spawn ^3models/foo/bar.md3^7\" spawns a new object in front of the player, and gives it the specified model");
383                                 print_to(self, "^7\"^2object_remove^7\" removes the object the player is looking at. Players can only remove their own objects");
384                                 print_to(self, "^7\"^2object_duplicate ^3value^7\" duplicates the object, if the player has copying rights over the original");
385                                 print_to(self, "^Properties for ^2object_duplicate^7:");
386                                 print_to(self, "^3copy value ^7- copies the properties of the object to the specified client cvar");
387                                 print_to(self, "^3paste value ^7- spawns an object with the given properties. Properties or cvars must be specified as follows; eg1: \"0 1 2 ...\", eg2: \"$cl_cvar\"");
388                                 print_to(self, "^7\"^2object_attach ^3property value^7\" attaches one object to another. Players can only attach their own objects");
389                                 print_to(self, "^7Properties for ^2object_attach^7:");
390                                 print_to(self, "^3get ^7- selects the object you are facing as the object to be attached");
391                                 print_to(self, "^3set value ^7- attaches the previously selected object to the object you are facing, on the specified bone");
392                                 print_to(self, "^3remove ^7- detaches all objects from the object you are facing");
393                                 print_to(self, "^7\"^2object_edit ^3property value^7\" edits the given property of the object. Players can only edit their own objects");
394                                 print_to(self, "^7Properties for ^2object_edit^7:");
395                                 print_to(self, "^3skin value ^7- changes the skin of the object");
396                                 print_to(self, "^3alpha value ^7- sets object transparency");
397                                 print_to(self, "^3colormod \"value_x value_y value_z\" ^7- main object color");
398                                 print_to(self, "^3glowmod \"value_x value_y value_z\" ^7- glow object color");
399                                 print_to(self, "^3frame value ^7- object animation frame, for self-animated models");
400                                 print_to(self, "^3scale value ^7- changes object scale. 0.5 is half size and 2 is double size");
401                                 print_to(self, "^3physics value ^7- object physics, 0 = static, 1 = movable, 2 = physical");
402                                 print_to(self, "^3force value ^7- amount of force applied to objects that are shot");
403                                 print_to(self, "^3material value ^7- sets the material of the object. Default materials are: metal, stone, wood, flesh");
404                                 print_to(self, "^7\"^2object_claim^7\" sets the player as the owner of the object, if he has the right to edit it");
405                                 print_to(self, "^7\"^2object_info ^3value^7\" shows public information about the object. 'mesh' shows model information");
406                                 print_to(self, "^7The ^1drag object ^7key can be used to grab and carry objects. Players can only grab their own objects");
407                                 return TRUE;
408
409                         // ---------------- COMMAND: OBJECT, SPAWN ----------------
410                         case "object_spawn":
411                                 if(object_count >= autocvar_g_sandbox_editor_maxobjects)
412                                 {
413                                         print_to(self, strcat("^1SANDBOX - WARNING: ^7Cannot spawn any more objects. Up to ^3", ftos(autocvar_g_sandbox_editor_maxobjects), " ^7objects may exist at a time"));
414                                         return TRUE;
415                                 }
416                                 if(cmd_argc < 3)
417                                 {
418                                         print_to(self, "^1SANDBOX - WARNING: ^7Attempted to spawn an object without specifying a model. Please specify the path to your model file after the 'object_spawn' command");
419                                         return TRUE;
420                                 }
421                                 else if not(fexists(argv(2)))
422                                 {
423                                         print_to(self, "^1SANDBOX - WARNING: ^7Attempted to spawn an object with a non-existent model. Make sure the path to your model file is correct");
424                                         return TRUE;
425                                 }
426
427                                 e = sandbox_ObjectSpawn(FALSE);
428                                 setmodel(e, argv(2));
429
430                                 if(autocvar_g_sandbox_info > 0)
431                                         print(strcat("^3SANDBOX - SERVER: ^7", self.netname, " spawned an object at origin ^3", vtos(e.origin), "\n"));
432                                 return TRUE;
433
434                         // ---------------- COMMAND: OBJECT, REMOVE ----------------
435                         case "object_remove":
436                                 e = sandbox_ObjectEdit_Get(TRUE);
437                                 if(e != world)
438                                 {
439                                         if(autocvar_g_sandbox_info > 0)
440                                                 print(strcat("^3SANDBOX - SERVER: ^7", self.netname, " removed an object at origin ^3", vtos(e.origin), "\n"));
441                                         sandbox_ObjectRemove(e);
442                                         return TRUE;
443                                 }
444
445                                 print_to(self, "^1SANDBOX - WARNING: ^7Object could not be removed. Make sure you are facing an object that you have edit rights over");
446                                 return TRUE;
447
448                         // ---------------- COMMAND: OBJECT, DUPLICATE ----------------
449                         case "object_duplicate":
450                                 switch(argv(2))
451                                 {
452                                         case "copy":
453                                                 // copies customizable properties of the selected object to the clipboard cvar
454                                                 e = sandbox_ObjectEdit_Get(autocvar_g_sandbox_editor_free); // can we copy objects we can't edit?
455                                                 if(e != world)
456                                                 {
457                                                         s = sandbox_ObjectPort_Save(e, FALSE);
458                                                         s = strreplace("\"", "\\\"", s);
459                                                         stuffcmd(self, strcat("set ", argv(3), " \"", s, "\""));
460
461                                                         print_to(self, "^2SANDBOX - INFO: ^7Object copied to clipboard");
462                                                         return TRUE;
463                                                 }
464                                                 print_to(self, "^1SANDBOX - WARNING: ^7Object could not be copied. Make sure you are facing an object that you have copy rights over");
465                                                 return TRUE;
466
467                                         case "paste":
468                                                 // spawns a new object using the properties in the player's clipboard cvar
469                                                 if(!argv(3)) // no object in clipboard
470                                                 {
471                                                         print_to(self, "^1SANDBOX - WARNING: ^7No object in clipboard. You must copy an object before you can paste it");
472                                                         return TRUE;
473                                                 }
474                                                 if(object_count >= autocvar_g_sandbox_editor_maxobjects)
475                                                 {
476                                                         print_to(self, strcat("^1SANDBOX - WARNING: ^7Cannot spawn any more objects. Up to ^3", ftos(autocvar_g_sandbox_editor_maxobjects), " ^7objects may exist at a time"));
477                                                         return TRUE;
478                                                 }
479                                                 e = sandbox_ObjectPort_Load(argv(3), FALSE);
480
481                                                 print_to(self, "^2SANDBOX - INFO: ^7Object pasted successfully");
482                                                 if(autocvar_g_sandbox_info > 0)
483                                                         print(strcat("^3SANDBOX - SERVER: ^7", self.netname, " pasted an object at origin ^3", vtos(e.origin), "\n"));
484                                                 return TRUE;
485                                 }
486                                 return TRUE;
487
488                         // ---------------- COMMAND: OBJECT, ATTACH ----------------
489                         case "object_attach":
490                                 switch(argv(2))
491                                 {
492                                         case "get":
493                                                 // select e as the object as meant to be attached
494                                                 e = sandbox_ObjectEdit_Get(TRUE);
495                                                 if(e != world)
496                                                 {
497                                                         self.object_attach = e;
498                                                         print_to(self, "^2SANDBOX - INFO: ^7Object selected for attachment");
499                                                         return TRUE;
500                                                 }
501                                                 print_to(self, "^1SANDBOX - WARNING: ^7Object could not be selected for attachment. Make sure you are facing an object that you have edit rights over");
502                                                 return TRUE;
503                                         case "set":
504                                                 if(self.object_attach == world)
505                                                 {
506                                                         print_to(self, "^1SANDBOX - WARNING: ^7No object selected for attachment. Please select an object to be attached first.");
507                                                         return TRUE;
508                                                 }
509
510                                                 // attaches the previously selected object to e
511                                                 e = sandbox_ObjectEdit_Get(TRUE);
512                                                 if(e != world)
513                                                 {
514                                                         sandbox_ObjectAttach_Set(self.object_attach, e, argv(3));
515                                                         self.object_attach = world; // object was attached, no longer keep it scheduled for attachment
516                                                         print_to(self, "^2SANDBOX - INFO: ^7Object attached successfully");
517                                                         if(autocvar_g_sandbox_info > 1)
518                                                                 print(strcat("^3SANDBOX - SERVER: ^7", self.netname, " attached objects at origin ^3", vtos(e.origin), "\n"));
519                                                         return TRUE;
520                                                 }
521                                                 print_to(self, "^1SANDBOX - WARNING: ^7Object could not be attached to the parent. Make sure you are facing an object that you have edit rights over");
522                                                 return TRUE;
523                                         case "remove":
524                                                 // removes e if it was attached
525                                                 e = sandbox_ObjectEdit_Get(TRUE);
526                                                 if(e != world)
527                                                 {
528                                                         sandbox_ObjectAttach_Remove(e);
529                                                         print_to(self, "^2SANDBOX - INFO: ^7Child objects detached successfully");
530                                                         if(autocvar_g_sandbox_info > 1)
531                                                                 print(strcat("^3SANDBOX - SERVER: ^7", self.netname, " detached objects at origin ^3", vtos(e.origin), "\n"));
532                                                         return TRUE;
533                                                 }
534                                                 print_to(self, "^1SANDBOX - WARNING: ^7Child objects could not be detached. Make sure you are facing an object that you have edit rights over");
535                                                 return TRUE;
536                                 }
537                                 return TRUE;
538
539                         // ---------------- COMMAND: OBJECT, EDIT ----------------
540                         case "object_edit":
541                                 if(!argv(2))
542                                 {
543                                         print_to(self, "^1SANDBOX - WARNING: ^7Too few parameters. You must specify a property to edit");
544                                         return TRUE;
545                                 }
546
547                                 e = sandbox_ObjectEdit_Get(TRUE);
548                                 if(e != world)
549                                 {
550                                         switch(argv(2))
551                                         {
552                                                 case "skin":
553                                                         e.skin = stof(argv(3));
554                                                         break;
555                                                 case "alpha":
556                                                         e.alpha = stof(argv(3));
557                                                         break;
558                                                 case "color_main":
559                                                         e.colormod = stov(argv(3));
560                                                         break;
561                                                 case "color_glow":
562                                                         e.glowmod = stov(argv(3));
563                                                         break;
564                                                 case "frame":
565                                                         e.frame = stof(argv(3));
566                                                         break;
567                                                 case "scale":
568                                                         sandbox_ObjectEdit_Scale(e, stof(argv(3)));
569                                                         break;
570                                                 case "physics":
571                                                         switch(argv(3))
572                                                         {
573                                                                 case "0": // static
574                                                                         e.movetype = MOVETYPE_NONE;
575                                                                         break;
576                                                                 case "1": // movable
577                                                                         e.movetype = MOVETYPE_TOSS;
578                                                                         break;
579                                                                 case "2": // physical
580                                                                         e.movetype = MOVETYPE_PHYSICS;
581                                                                         break;
582                                                                 default:
583                                                                         break;
584                                                         }
585                                                         break;
586                                                 case "force":
587                                                         e.damageforcescale = stof(argv(3));
588                                                         break;
589                                                 case "material":
590                                                         if(e.material)
591                                                                 strunzone(e.material);
592                                                         if(argv(3))
593                                                         {
594                                                                 for (i = 1; i <= 5; i++) // precache material sounds, 5 in total
595                                                                         precache_sound(strcat("object/impact_", argv(3), "_", ftos(i), ".ogg"));
596                                                                 e.material = strzone(argv(3));
597                                                         }
598                                                         else
599                                                                 e.material = string_null; // no material
600                                                         break;
601                                                 default:
602                                                         print_to(self, "^1SANDBOX - WARNING: ^7Invalid object property. For usage information, type 'sandbox help'");
603                                                         break;
604                                         }
605                                         if(autocvar_g_sandbox_info > 1)
606                                                 print(strcat("^3SANDBOX - SERVER: ^7", self.netname, " edited property ^3", argv(2), " ^7of an object at origin ^3", vtos(e.origin), "\n"));
607                                         return TRUE;
608                                 }
609
610                                 print_to(self, "^1SANDBOX - WARNING: ^7Object could not be edited. Make sure you are facing an object that you have edit rights over");
611                                 return TRUE;
612
613                         // ---------------- COMMAND: OBJECT, CLAIM ----------------
614                         case "object_claim":
615                                 // if the player can edit an object but is not its owner, this can be used to claim that object
616                                 if(self.crypto_idfp == "")
617                                 {
618                                         print_to(self, "^1SANDBOX - WARNING: ^7You do not have a player UID, and cannot claim objects");
619                                         return TRUE;
620                                 }
621                                 e = sandbox_ObjectEdit_Get(TRUE);
622                                 if(e != world)
623                                 {
624                                         if(e.crypto_idfp == self.crypto_idfp)
625                                         {
626                                                 print_to(self, "^2SANDBOX - INFO: ^7Object is already yours, nothing to claim");
627                                                 return TRUE;
628                                         }
629
630                                         if(e.crypto_idfp)
631                                                 strunzone(e.crypto_idfp);
632                                         e.crypto_idfp = self.crypto_idfp;
633                                         print_to(self, "^2SANDBOX - INFO: ^7Object claimed successfully");
634                                 }
635                                 print_to(self, "^1SANDBOX - WARNING: ^7Object could not be claimed. Make sure you are facing an object that you have edit rights over");
636                                 return TRUE;
637
638                         // ---------------- COMMAND: OBJECT, INFO ----------------
639                         case "object_info":
640                                 // prints public information about the object to the player
641                                 e = sandbox_ObjectEdit_Get(FALSE);
642                                 if(e != world)
643                                 {
644                                         switch(argv(2))
645                                         {
646                                                 case "mesh":
647                                                         string tags;
648                                                         for(i = 1; gettaginfo(e, i); i++)
649                                                                 tags = strcat(tags, "^5", gettaginfo_name, "^7, ");
650                                                         print_to(self, strcat("^2SANDBOX - INFO: ^7Object mesh is ^3", e.model, "^7 at animation frame ^3", ftos(e.frame), " ^7containing the following tags: ", tags));
651                                                         return TRUE;
652                                         }
653                                 }
654                                 print_to(self, "^1SANDBOX - WARNING: ^7No information could not be found. Make sure you are facing an object");
655                                 return TRUE;
656
657                         // ---------------- COMMAND: DEFAULT ----------------
658                         default:
659                                 print_to(self, "Invalid command. For usage information, type 'sandbox help'");
660                                 return TRUE;
661                 }
662         }
663         return FALSE;
664 }
665
666 MUTATOR_HOOKFUNCTION(sandbox_PlayerPreThink)
667 {
668         // if the player is close enough to their object, they can drag it
669
670         if(autocvar_sv_cheats)
671                 return FALSE; // cheat dragging is used instead
672
673         // grab is TRUE if the object can be picked up. While an object is being carried, the Drag() function
674         // must execute for it either way, otherwise it would cause bugs if it went out of the player's trace.
675         // This also makes sure that an object can only pe picked up if in range, but does not get dropped if
676         // it goes out of range while slinging it around.
677
678         entity e;
679         float grab;
680
681         e = sandbox_ObjectEdit_Get(TRUE);
682         if(e != world && vlen(e.origin - self.origin) <= autocvar_g_sandbox_editor_distance_edit)
683                 grab = TRUE;
684
685         if(Drag(e, grab)) // execute dragging
686                 return TRUE;
687
688         return FALSE;
689 }
690
691 float autosave_time;
692 MUTATOR_HOOKFUNCTION(sandbox_StartFrame)
693 {
694         if(!autocvar_g_sandbox_storage_autosave)
695                 return FALSE;
696         if(time < autosave_time)
697                 return FALSE;
698         autosave_time = time + autocvar_g_sandbox_storage_autosave;
699
700         sandbox_Database_Save();
701
702         return TRUE;
703 }
704
705 MUTATOR_DEFINITION(sandbox)
706 {
707         MUTATOR_HOOK(SV_ParseClientCommand, sandbox_PlayerCommand, CBC_ORDER_ANY);
708         MUTATOR_HOOK(SV_StartFrame, sandbox_StartFrame, CBC_ORDER_ANY);
709         MUTATOR_HOOK(PlayerPreThink, sandbox_PlayerPreThink, CBC_ORDER_ANY);
710
711         MUTATOR_ONADD
712         {
713                 autosave_time = time + autocvar_g_sandbox_storage_autosave; // don't save the first server frame
714                 if(autocvar_g_sandbox_storage_autoload)
715                         sandbox_Database_Load();
716         }
717
718         return FALSE;
719 }
720