X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fmutators%2Fmutator%2Fsandbox%2Fsv_sandbox.qc;h=a31eee2ba49db3dba85272725628fddf4317f344;hb=0ade80044244ecfd180e7a3dfc0113dcf3a26572;hp=9458189fd0ed20a448b9da906b3f654c12632452;hpb=74cbc0f6613383108745f231c78a340d747fc094;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/mutators/mutator/sandbox/sv_sandbox.qc b/qcsrc/common/mutators/mutator/sandbox/sv_sandbox.qc index 9458189fd0..a31eee2ba4 100644 --- a/qcsrc/common/mutators/mutator/sandbox/sv_sandbox.qc +++ b/qcsrc/common/mutators/mutator/sandbox/sv_sandbox.qc @@ -1,5 +1,7 @@ #include "sv_sandbox.qh" +#include + string autocvar_g_sandbox; int autocvar_g_sandbox_info; bool autocvar_g_sandbox_readonly; @@ -16,6 +18,7 @@ float autocvar_g_sandbox_object_scale_max; float autocvar_g_sandbox_object_material_velocity_min; float autocvar_g_sandbox_object_material_velocity_factor; +IntrusiveList g_sandbox_objects; float autosave_time; void sandbox_Database_Load(); @@ -23,6 +26,7 @@ REGISTER_MUTATOR(sandbox, expr_evaluate(autocvar_g_sandbox)) { MUTATOR_ONADD { + g_sandbox_objects = IL_NEW(); autosave_time = time + autocvar_g_sandbox_storage_autosave; // don't save the first server frame if(autocvar_g_sandbox_storage_autoload) sandbox_Database_Load(); @@ -118,7 +122,8 @@ void sandbox_ObjectEdit_Scale(entity e, float f) { e.scale = bound(autocvar_g_sandbox_object_scale_min, e.scale, autocvar_g_sandbox_object_scale_max); _setmodel(e, e.model); // reset mins and maxs based on mesh - setsize(e, e.mins * e.scale, e.maxs * e.scale); // adapt bounding box size to model size + // apply object scaling and prevent any float precision issues like #2742 + setsize(e, RoundPerfectVector(e.mins * e.scale), RoundPerfectVector(e.maxs * e.scale)); } } @@ -181,7 +186,7 @@ entity sandbox_ObjectSpawn(entity this, float database) if(!database) { // set the object's owner via player UID - // if the player does not have an UID, the owner cannot be stored and his objects may be edited by anyone + // if the player does not have an UID, the owner cannot be stored and their objects may be edited by anyone if(this.crypto_idfp != "") e.crypto_idfp = strzone(this.crypto_idfp); else @@ -493,7 +498,7 @@ MUTATOR_HOOKFUNCTION(sandbox, SV_ParseClientCommand) print_to(player, "^3physics value ^7- object physics, 0 = static, 1 = movable, 2 = physical"); print_to(player, "^3force value ^7- amount of force applied to objects that are shot"); print_to(player, "^3material value ^7- sets the material of the object. Default materials are: metal, stone, wood, flesh"); - print_to(player, "^7\"^2object_claim^7\" sets the player as the owner of the object, if he has the right to edit it"); + print_to(player, "^7\"^2object_claim^7\" sets the player as the owner of the object, if they have the right to edit it"); print_to(player, "^7\"^2object_info ^3value^7\" shows public information about the object"); print_to(player, "^3object ^7- prints general information about the object, such as owner and creation / editing date"); print_to(player, "^3mesh ^7- prints information about the object's mesh, including skeletal bones"); @@ -745,7 +750,7 @@ MUTATOR_HOOKFUNCTION(sandbox, SV_ParseClientCommand) { // update the owner's name // Do this before checking if you're already the owner and skipping if such, so we - // also update the player's nickname if he changed it (but has the same player UID) + // also update the player's nickname if they changed it (but has the same player UID) if(e.netname != player.netname) { strcpy(e.netname, player.netname);