Snippet Shield

Dirac

22710180
Reaction score
147
JASS:
library Shield /* v1.0.6

*/uses/*
*/  DamageMod   /* thehelper.net/forums/showthread.php/168144-Damage-Struct

A useful tool to prevent damage done to units.

**********************************************************************/
globals
//*********************************************************************
//  The priority sets before and after which damage mods the shield
//  prevents damage.
    constant integer SHIELD_PRIORITY    =4
endglobals
/**********************************************************************
*
*   function GetShieldUnit takes nothing returns unit
*       -   The unit whose shield just expired.
*   function GetShieldUnitId takes nothing returns unit
*       -   The unit's custom value
*
***********************************************************************
*
*   struct Shield
*
*       -   Shields the unit.
*       -   Takes the unit's custom value as an instance.
*
*       real amount
*           -   The amount of damage to be shielded for the unit
*       readonly static DamageMod MOD
*           -   The mod used for this code.
*       method onExpire takes code func returns nothing
*           -   Runs the function when the shield expires for the unit
*       method end takes nothing returns nothing
*           -   Expires the shield
*
*********************************************************************/

    globals
        private unit    ShieldUnit
        private integer ShieldUnitId
    endglobals
    
    private module ShieldModule
        readonly static DamageMod   MOD
        private         trigger     trig
                        real        amount
        
        method onExpire takes code func returns nothing
            if null==this.trig then
                set this.trig=CreateTrigger()
            else
                call TriggerClearConditions(this.trig)
            endif
            call TriggerAddCondition(this.trig,Filter(func))
        endmethod
        
        method end takes nothing returns nothing
            set this.amount=0
            set ShieldUnitId=this
            static if LIBRARY_UnitIndexer then
                set ShieldUnit=GetUnitById(this)
            else
                set ShieldUnit=GetIndexUnit(this)
            endif
            call TriggerEvaluate(this.trig)
            call TriggerClearConditions(this.trig)
        endmethod
        
        private static method onDamage takes nothing returns boolean
            local thistype this=Damage.targetId
            if 0>=this.amount then
                return false
            endif
            set this.amount=this.amount-Damage.prevent(this.amount)
            if this.amount<=0 then
                set ShieldUnit=Damage.target
                set ShieldUnitId=Damage.targetId
                call TriggerEvaluate(this.trig)
                call TriggerClearConditions(this.trig)
            endif
            return false
        endmethod
        
        private static method onInit takes nothing returns nothing
            set MOD=DamageMod.create(function thistype.onDamage,SHIELD_PRIORITY)
        endmethod
        
    endmodule
    
    struct Shield extends array
        implement ShieldModule
    endstruct
    
    function GetShieldUnit takes nothing returns unit
        return ShieldUnit
    endfunction
    
    function GetShieldUnitId takes nothing returns integer
        return ShieldUnitId
    endfunction
endlibrary
 

Dirac

22710180
Reaction score
147
v1.02
-Added the onExpire method
-Added the GetShieldUnit function
-Fixed the mod priority
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • The Helper The Helper:
    Happy Sunday!
    +1
  • The Helper The Helper:
    I will be out of town until Sunday evening
    +1
  • The Helper The Helper:
    I am back! Did you miss me LOL
    +1
  • jonas jonas:
    where did you go?
  • The Helper The Helper:
    Jefferson TX on a Paranormal Investigation of a haunted bed and breakfast - I got some friends that are paranormal investigators and they have an RV and do YouTubes
    +1
  • The Helper The Helper:
    It was a lot of fun. The RV was bad ass
  • jonas jonas:
    That sounds like fun!
    +1
  • The Helper The Helper:
    it was a blast!
  • The Helper The Helper:
    I am going to post the Youtube of the investigation in the forums when it is ready
    +1
  • jonas jonas:
    cool!
  • vypur85 vypur85:
    Sounds cool TH.
  • tom_mai78101 tom_mai78101:
    I was on a Legend of Zelda marathon...
  • tom_mai78101 tom_mai78101:
    Am still doing it now
    +1
  • jonas jonas:
    which one(s) are you playing?
  • jonas jonas:
    I played a little bit of the switch title two weeks ago and found it quite boring
  • The Helper The Helper:
    just got back from San Antonio this weekend had the best Buffalo Chicken Cheesesteak sandwhich in Universal City, TX - place was called Yous Guys freaking awesome! Hope everyone had a fantastic weekend!
    +1
  • The Helper The Helper:
    Happy Tuesday!
  • The Helper The Helper:
    We have been getting crazy numbers reported by the forum of people online the bots are going crazy on us I think it is AI training bots going at it at least that is what it looks like to me.
  • The Helper The Helper:
    Most legit traffic is tracked on multiple Analytics and we have Cloud Flare setup to block a ton of stuff but still there is large amount of bots that seem to escape detection and show up in the user list of the forum. I have been watching this bullshit for a year and still cannot figure it out it is drving me crazy lol.
    +1
  • Ghan Ghan:
    Beep boop
    +1
  • The Helper The Helper:
    hears robot sounds while 250 bots are on the forum lol
  • The Helper The Helper:
    Happy Saturday!
    +1

    The Helper Discord

    Members online

    No members online now.

    Affiliates

    Hive Workshop NUON Dome World Editor Tutorials

    Network Sponsors

    Apex Steel Pipe - Buys and sells Steel Pipe.
    Top