]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Merge branch 'Mario/buff_timer' into 'master'
authorMario <zacjardine@y7mail.com>
Sat, 17 Aug 2019 14:49:54 +0000 (14:49 +0000)
committerMario <zacjardine@y7mail.com>
Sat, 17 Aug 2019 14:49:54 +0000 (14:49 +0000)
Merge branch Mario/buff_timer (M merge request)

See merge request xonotic/xonotic-data.pk3dir!676

1  2 
qcsrc/common/t_items.qc
qcsrc/server/client.qc

diff --combined qcsrc/common/t_items.qc
index eb5a30f6cac2e1c1b8493f56c251ebaccf2388e7,6b04c98b069044428af14c76b7b316b6692198ab..4a3712a25b31a02aac9b1e8d429933fb0463ca33
@@@ -927,9 -927,6 +927,9 @@@ void Item_Touch(entity this, entity tou
  
  LABEL(pickup)
  
 +      if(this.target && this.target != "" && this.target != "###item###") // defrag support
 +              SUB_UseTargets(this, toucher, NULL);
 +
        STAT(LAST_PICKUP, toucher) = time;
  
        Send_Effect(EFFECT_ITEM_PICKUP, CENTER_OR_VIEWOFS(this), '0 0 0', 1);
@@@ -1317,11 -1314,7 +1317,11 @@@ void _StartItem(entity this, entity def
                        || (def.instanceOfHealth && def != ITEM_HealthSmall)
                        || (def.instanceOfArmor && def != ITEM_ArmorSmall)
                        || (itemid & (IT_KEY1 | IT_KEY2))
 -              ) this.target = "###item###"; // for finding the nearest item using findnearest
 +              ) 
 +              {
 +                      if(!this.target || this.target == "")
 +                              this.target = "###item###"; // for finding the nearest item using findnearest
 +              }
  
                Item_ItemsTime_SetTime(this, 0);
        }
@@@ -1510,9 -1503,11 +1510,11 @@@ spawnfunc(target_items
                                FOREACH(Buffs, it != BUFF_Null,
                                {
                                        s = Buff_UndeprecateName(argv(j));
-                                       if(s == it.m_name)
+                                       if(s == it.netname)
                                        {
                                                STAT(BUFFS, this) |= (it.m_itemid);
+                                               if(!STAT(BUFF_TIME, this))
+                                                       STAT(BUFF_TIME, this) = it.m_time(it);
                                                break;
                                        }
                                });
                if(GetResource(this, RES_FUEL) != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, GetResource(this, RES_FUEL)), "fuel");
                if(GetResource(this, RES_HEALTH) != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, GetResource(this, RES_HEALTH)), "health");
                if(GetResource(this, RES_ARMOR) != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, GetResource(this, RES_ARMOR)), "armor");
-               FOREACH(Buffs, it != BUFF_Null, this.netname = sprintf("%s %s%d %s", this.netname, itemprefix, !!(STAT(BUFFS, this) & (it.m_itemid)), it.m_name));
+               FOREACH(Buffs, it != BUFF_Null && (STAT(BUFFS, this) & it.m_itemid), this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, STAT(BUFF_TIME, this)), it.netname));
                FOREACH(Weapons, it != WEP_Null, this.netname = sprintf("%s %s%d %s", this.netname, itemprefix, !!(STAT(WEAPONS, this) & (it.m_wepset)), it.netname));
        }
        this.netname = strzone(this.netname);
@@@ -1622,28 -1617,28 +1624,28 @@@ float GiveWeapon(entity e, float wpn, f
  bool GiveBuff(entity e, Buff thebuff, int op, int val)
  {
        bool had_buff = (STAT(BUFFS, e) & thebuff.m_itemid);
-       switch(op)
+       switch (op)
        {
                case OP_SET:
-                       if(val > 0)
-                               STAT(BUFFS, e) |= thebuff.m_itemid;
-                       else
-                               STAT(BUFFS, e) &= ~thebuff.m_itemid;
+                       STAT(BUFF_TIME, e) = val;
                        break;
                case OP_MIN:
-               case OP_PLUS:
-                       if(val > 0)
-                               STAT(BUFFS, e) |= thebuff.m_itemid;
+                       STAT(BUFF_TIME, e) = max(STAT(BUFF_TIME, e), val);
                        break;
                case OP_MAX:
-                       if(val <= 0)
-                               STAT(BUFFS, e) &= ~thebuff.m_itemid;
+                       STAT(BUFF_TIME, e) = min(STAT(BUFF_TIME, e), val);
+                       break;
+               case OP_PLUS:
+                       STAT(BUFF_TIME, e) += val;
                        break;
                case OP_MINUS:
-                       if(val > 0)
-                               STAT(BUFFS, e) &= ~thebuff.m_itemid;
+                       STAT(BUFF_TIME, e) -= val;
                        break;
        }
+       if(STAT(BUFF_TIME, e) <= 0)
+               STAT(BUFFS, e) &= ~thebuff.m_itemid;
+       else
+               STAT(BUFFS, e) = thebuff.m_itemid; // NOTE: replaces any existing buffs on the player!
        bool have_buff = (STAT(BUFFS, e) & thebuff.m_itemid);
        return (had_buff != have_buff);
  }
@@@ -1713,6 -1708,7 +1715,7 @@@ float GiveItems(entity e, float beginar
        e.strength_finished = max(0, e.strength_finished - time);
        e.invincible_finished = max(0, e.invincible_finished - time);
        e.superweapons_finished = max(0, e.superweapons_finished - time);
+       STAT(BUFF_TIME, e) = max(0, STAT(BUFF_TIME, e) - time);
  
        PREGIVE(e, items);
        PREGIVE_WEAPONS(e);
                                got += GiveResourceValue(e, RES_HEALTH, op, val);
                                got += GiveResourceValue(e, RES_ARMOR, op, val);
                        case "allweapons":
 -                              FOREACH(Weapons, it != WEP_Null && !(it.spawnflags & WEP_FLAG_MUTATORBLOCKED), got += GiveWeapon(e, it.m_id, op, val));
 +                              FOREACH(Weapons, it != WEP_Null && !(it.spawnflags & (WEP_FLAG_MUTATORBLOCKED | WEP_FLAG_SPECIALATTACK)), got += GiveWeapon(e, it.m_id, op, val));
                        //case "allbuffs": // all buffs makes a player god, do not want!
                                //FOREACH(Buffs, it != BUFF_Null, got += GiveBuff(e, it.m_itemid, op, val));
                        case "allammo":
                                got += GiveResourceValue(e, RES_FUEL, op, val);
                                break;
                        default:
-                               FOREACH(Buffs, it != BUFF_Null && Buff_UndeprecateName(cmd) == it.m_name,
+                               FOREACH(Buffs, it != BUFF_Null && Buff_UndeprecateName(cmd) == it.netname,
                                {
                                        got += GiveBuff(e, it, op, val);
                                        break;
        POSTGIVE_RES_ROT(e, RES_HEALTH, 1, pauserothealth_finished, autocvar_g_balance_pause_health_rot, pauseregen_finished, autocvar_g_balance_pause_health_regen, SND_MEGAHEALTH, SND_Null);
  
        if(e.superweapons_finished <= 0)
-               if(!g_weaponarena && STAT(WEAPONS, e) & WEPSET_SUPERWEAPONS)
+               if(!g_weaponarena && (STAT(WEAPONS, e) & WEPSET_SUPERWEAPONS))
                        e.superweapons_finished = autocvar_g_balance_superweapons_time;
  
        if(e.strength_finished <= 0)
                e.superweapons_finished = 0;
        else
                e.superweapons_finished += time;
+       if(STAT(BUFF_TIME, e) <= 0)
+               STAT(BUFF_TIME, e) = 0;
+       else
+               STAT(BUFF_TIME, e) += time;
  
        for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
        {
diff --combined qcsrc/server/client.qc
index 209958389b1fa0f5057f75c54dbec7e395991fc1,7e2f0cf02ab878525ac6e50dae2b285cb90febd9..3a99e31ded5d44003bdeba1f36df6bf52083a39a
@@@ -40,7 -40,6 +40,7 @@@
  #include "../common/mapobjects/teleporters.qh"
  #include "../common/mapobjects/target/spawnpoint.qh"
  #include <common/mapobjects/trigger/counter.qh>
 +#include <common/mapobjects/trigger/swamp.qh>
  
  #include "../common/vehicles/all.qh"
  
@@@ -641,6 -640,10 +641,10 @@@ void PutPlayerInServer(entity this
        STAT(REVIVE_PROGRESS, this) = 0;
        this.revival_time = 0;
  
+       // TODO: we can't set these in the PlayerSpawn hook since the target code is called before it!
+       STAT(BUFFS, this) = 0;
+       STAT(BUFF_TIME, this) = 0;
        this.air_finished = time + 12;
        this.waterlevel = WATERLEVEL_NONE;
        this.watertype = CONTENT_EMPTY;
        if(this.conveyor)
                IL_REMOVE(g_conveyed, this);
        this.conveyor = NULL; // prevent conveyors at the previous location from moving a freshly spawned player
 +      if(this.swampslug)
 +              delete(this.swampslug);
 +      this.in_swamp = false;
        STAT(HUD, this) = HUD_NORMAL;
  
        this.event_damage = PlayerDamage;