1 .string object_clipboard;
4 const float MATERIAL_NONE = 0;
5 const float MATERIAL_METAL = 1;
6 const float MATERIAL_STONE = 2;
7 const float MATERIAL_WOOD = 3;
8 const float MATERIAL_FLESH = 4;
11 void sandbox_Object_Touch()
13 // apply material impact effects
15 if(self.touch_timer > time)
16 return; // don't execute each frame
17 self.touch_timer = time + 0.1;
18 if not(vlen(self.velocity) > autocvar_g_sandbox_object_material_velocity_min || vlen(other.velocity) > autocvar_g_sandbox_object_material_velocity_min)
19 return; // impact not strong enough
22 intensity = (vlen(self.velocity) + vlen(other.velocity)) / 2;
23 intensity = bound(0, intensity * autocvar_g_sandbox_object_material_velocity_factor, 1);
28 sound(self, CH_TRIGGER, strcat("object/impact_metal_", ftos(ceil(random() * 5)) , ".ogg"), VOL_BASE * intensity, ATTN_NORM);
29 pointparticles(particleeffectnum("impact_metal"), self.origin, '0 0 0', intensity * 10); // allow a count from 1 to 10
32 sound(self, CH_TRIGGER, strcat("object/impact_stone_", ftos(ceil(random() * 5)) , ".ogg"), VOL_BASE * intensity, ATTN_NORM);
33 pointparticles(particleeffectnum("impact_stone"), self.origin, '0 0 0', intensity * 10); // allow a count from 1 to 10
36 sound(self, CH_TRIGGER, strcat("object/impact_wood_", ftos(ceil(random() * 5)) , ".ogg"), VOL_BASE * intensity, ATTN_NORM);
37 pointparticles(particleeffectnum("impact_wood"), self.origin, '0 0 0', intensity * 10); // allow a count from 1 to 10
40 sound(self, CH_TRIGGER, strcat("object/impact_flesh_", ftos(ceil(random() * 5)) , ".ogg"), VOL_BASE * intensity, ATTN_NORM);
41 pointparticles(particleeffectnum("impact_flesh"), self.origin, '0 0 0', intensity * 10); // allow a count from 1 to 10
48 entity sandbox_EditObject_Get()
50 // returns the traced entity if the player can edit it, and world if not
52 makevectors(self.v_angle);
53 WarpZone_TraceLine(self.origin + self.view_ofs, self.origin + self.view_ofs + v_forward * autocvar_g_sandbox_editor_distance_edit, MOVE_NORMAL, self);
54 if(trace_ent.classname == "object" && trace_ent.realowner == self)
60 void sandbox_EditObject_Scale(entity e, float f)
65 e.scale = bound(autocvar_g_sandbox_object_scale_min, e.scale, autocvar_g_sandbox_object_scale_max);
66 setsize(e, e.mins * e.scale, e.maxs * e.scale); // adapt bounding box size to model size
70 entity sandbox_SpawnObject()
72 // spawn a new object with default properties
77 e.classname = "object";
78 e.takedamage = DAMAGE_AIM;
79 e.damageforcescale = 1;
80 e.solid = SOLID_BBOX; // SOLID_BSP would be best, but can lag the server badly
81 e.movetype = MOVETYPE_TOSS;
84 e.material = MATERIAL_NONE;
86 e.touch = sandbox_Object_Touch;
88 // set origin and direction based on player position and view angle
89 makevectors(self.v_angle);
90 WarpZone_TraceLine(self.origin + self.view_ofs, self.origin + self.view_ofs + v_forward * autocvar_g_sandbox_editor_distance_spawn, MOVE_NORMAL, self);
91 setorigin(e, trace_endpos);
92 e.angles_y = self.v_angle_y;
97 string sandbox_Storage_Save(entity e)
99 // save object properties
102 s = strcat(e.model, " ");
103 s = strcat(s, ftos(e.skin), " ");
104 s = strcat(s, ftos(e.alpha), " ");
105 s = strcat(s, sprintf("\"%.9v\"", e.colormod), " ");
106 s = strcat(s, sprintf("\"%.9v\"", e.glowmod), " ");
107 s = strcat(s, ftos(e.frame), " ");
108 s = strcat(s, ftos(e.scale), " ");
109 s = strcat(s, ftos(e.movetype), " ");
110 s = strcat(s, ftos(e.damageforcescale), " ");
111 s = strcat(s, ftos(e.material), " ");
116 void sandbox_Storage_Load(entity e, string s)
118 // load object properties
121 setmodel(e, argv(0));
122 e.skin = stof(argv(1));
123 e.alpha = stof(argv(2));
124 e.colormod = stov(argv(3));
125 e.glowmod = stov(argv(4));
126 e.frame = stof(argv(5));
127 sandbox_EditObject_Scale(e, stof(argv(6)));
128 e.movetype = stof(argv(7));
129 e.damageforcescale = stof(argv(8));
130 e.material = stof(argv(9));
133 MUTATOR_HOOKFUNCTION(sandbox_PlayerCommand)
135 if(MUTATOR_RETURNVALUE) // command was already handled?
137 if(cmd_name == "g_sandbox")
141 print_to(self, "Sandbox mode is active. For usage information, type 'sandbox help'");
149 // ---------------- COMMAND: HELP ----------------
151 print_to(self, "You can use the following sandbox commands:");
152 print_to(self, "^7\"^2spawn_item ^3item^7\" spawns the specified item in front of the player. Only weapons are currently supported");
153 print_to(self, "^7\"^2spawn_object ^3models/foo/bar.md3^7\" spawns a new object in front of the player, and gives it the specified model");
154 print_to(self, "^7\"^2remove_object^7\" removes the object the player is looking at. Players can only remove their own objects");
155 print_to(self, "^7\"^2duplicate_object_copy^7\" copies the object the player is looking at. Players can only copy their own objects");
156 print_to(self, "^7\"^2duplicate_object_paste^7\" pastes the copied object in front of the player");
157 print_to(self, "^7\"^2edit_object ^3property value^7\" edits the given property of the object. Players can only edit their own objects");
158 print_to(self, "^7Object properties for ^2edit_object^7:");
159 print_to(self, "^3skin value ^7- changes the skin of the object");
160 print_to(self, "^3alpha value ^7- sets object transparency");
161 print_to(self, "^3colormod \"value_x value_y value_z\" ^7- main object color");
162 print_to(self, "^3glowmod \"value_x value_y value_z\" ^7- glow object color");
163 print_to(self, "^3frame value ^7- object animation frame, for self-animated models");
164 print_to(self, "^3scale value ^7- changes object scale. 0.5 is half size and 2 is double size");
165 print_to(self, "^3physics value ^7- object physics, 0 = static, 1 = movable, 2 = physical");
166 print_to(self, "^3force value ^7- amount of force applied to objects that are shot");
167 print_to(self, "^3material value ^7- sets the material of the object. Valid materials are: 1 (metal), 2 (stone), 3 (wood), 4 (flesh)");
168 print_to(self, "^7The ^1drag object ^7key can be used to grab and carry objects. Players can only grab their own objects");
171 // ---------------- COMMAND: SPAWN ITEM ----------------
173 // only weapons are currently supported
177 print_to(self, "WARNING: Attempted to spawn an item without specifying its type. Please specify the name of your item after the 'spawn_item' command");
183 makevectors(self.v_angle);
184 WarpZone_TraceLine(self.origin + self.view_ofs, self.origin + self.view_ofs + v_forward * autocvar_g_sandbox_editor_distance_spawn, MOVE_NOMONSTERS, self);
186 for(i = WEP_FIRST; i <= WEP_LAST; ++i)
188 e = get_weaponinfo(i);
189 if(e.netname == argv(2))
191 W_ThrowNewWeapon(self, i, FALSE, trace_endpos, '0 0 0');
192 if(autocvar_g_sandbox_info)
193 print(strcat(self.netname, " spawned a ^2", e.netname, "^7 at origin ", vtos(e.origin), "\n"));
198 print_to(self, "WARNING: Attempted to spawn an invalid or unsupported item. See 'sandbox help' for allowed items");
201 // ---------------- COMMAND: SPAWN OBJECT ----------------
203 // don't allow spawning objects without a model
206 print_to(self, "WARNING: Attempted to spawn an object without specifying a model. Please specify the path to your model file after the 'spawn_object' command");
209 else if not(fexists(argv(2)))
211 print_to(self, "WARNING: Attempted to spawn an object with a non-existent model. Make sure the path to your model file is correct");
215 e = sandbox_SpawnObject();
216 setmodel(e, argv(2));
218 if(autocvar_g_sandbox_info)
219 print(strcat(self.netname, " spawned an object at origin ", vtos(e.origin), "\n"));
223 // ---------------- COMMAND: REMOVE OBJECT ----------------
224 case "remove_object":
225 e = sandbox_EditObject_Get();
228 if(autocvar_g_sandbox_info)
229 print(strcat(self.netname, " removed an object at origin ", vtos(e.origin), "\n"));
235 print_to(self, "WARNING: Object could not be removed. Make sure you are facing an object that belongs to you");
238 // ---------------- COMMAND: DUPLICATE OBJECT COPY ----------------
239 case "duplicate_object_copy":
240 // copies customizable properties of the selected object to the clipboard
242 e = sandbox_EditObject_Get(); // you can only copy objects you can edit, so this works
245 if(self.object_clipboard)
246 strunzone(self.object_clipboard);
247 self.object_clipboard = strzone(sandbox_Storage_Save(e));
249 print_to(self, "Object copied to clipboard");
253 print_to(self, "WARNING: Object could not be copied. Make sure you are facing an object that belongs to you");
256 // ---------------- COMMAND: DUPLICATE OBJECT PASTE ----------------
257 case "duplicate_object_paste":
258 // spawns a new object using the properties in the player's clipboard
260 if(!self.object_clipboard) // no object in clipboard
262 print_to(self, "WARNING: No object in clipboard. You must copy an object before you can paste it");
266 e = sandbox_SpawnObject();
267 sandbox_Storage_Load(e, self.object_clipboard);
269 print_to(self, "Object pasted");
270 if(autocvar_g_sandbox_info)
271 print(strcat(self.netname, " pasted an object at origin ", vtos(e.origin), "\n"));
275 // ---------------- COMMAND: EDIT OBJECT ----------------
277 if(!argv(2) || !argv(3))
279 print_to(self, "WARNING: Too few parameters. You must specify a property to edit, followed by its value");
283 e = sandbox_EditObject_Get();
289 e.skin = stof(argv(3));
292 e.alpha = stof(argv(3));
295 e.colormod = stov(argv(3));
298 e.glowmod = stov(argv(3));
301 e.frame = stof(argv(3));
304 sandbox_EditObject_Scale(e, stof(argv(3)));
310 e.movetype = MOVETYPE_NONE;
313 e.movetype = MOVETYPE_TOSS;
315 case "2": // physical
316 e.movetype = MOVETYPE_PHYSICS;
323 e.damageforcescale = stof(argv(3));
326 e.material = stof(argv(3));
329 print_to(self, "WARNING: Invalid object property. For usage information, type 'sandbox help'");
336 print_to(self, "WARNING: Object could not be edited. Make sure you are facing an object that belongs to you");
339 // ---------------- COMMAND: DEFAULT ----------------
341 print_to(self, "Invalid command. For usage information, type 'sandbox help'");
348 MUTATOR_HOOKFUNCTION(sandbox_PlayerPreThink)
350 // if the player is close enough to their object, they can drag it
352 if(autocvar_sv_cheats)
353 return FALSE; // cheat dragging is used instead
355 // grab is TRUE if the object can be picked up. While an object is being carried, the Drag() function
356 // must execute for it either way, otherwise it would cause bugs if it went out of the player's trace.
357 // This also makes sure that an object can only pe picked up if in range, but does not get dropped if
358 // it goes out of range while slinging it around.
363 e = sandbox_EditObject_Get();
364 if(e != world && vlen(e.origin - self.origin) <= autocvar_g_sandbox_editor_distance_edit)
367 if(Drag(e, grab)) // execute dragging
369 if(autocvar_g_sandbox_info)
370 print(strcat(self.netname, " grabbed an object at origin ", vtos(e.origin), "\n"));
377 MUTATOR_HOOKFUNCTION(sandbox_ClientDisconnect)
379 // unzone the player's clipboard if it's not empty
380 if(self.object_clipboard)
382 strunzone(self.object_clipboard);
383 self.object_clipboard = string_null;
389 MUTATOR_DEFINITION(sandbox)
391 MUTATOR_HOOK(SV_ParseClientCommand, sandbox_PlayerCommand, CBC_ORDER_ANY);
392 MUTATOR_HOOK(PlayerPreThink, sandbox_PlayerPreThink, CBC_ORDER_ANY);
393 MUTATOR_HOOK(ClientDisconnect, sandbox_ClientDisconnect, CBC_ORDER_ANY);
398 for (i = 1; i <= 5; i++)
400 // precache material sounds
401 precache_sound(strcat("objects/impact_metal_", ftos(i), ".ogg"));
402 precache_sound(strcat("objects/impact_stone_", ftos(i), ".ogg"));
403 precache_sound(strcat("objects/impact_wood_", ftos(i), ".ogg"));
404 precache_sound(strcat("objects/impact_flesh_", ftos(i), ".ogg"));