How to prevent infinite order loop?

LurkerAspect

Now officially a Super Lurker
Reaction score
118
Hi there, this time I have a really aggravating problem that's refusing all my attempts to fix it.

Basically I'm making a fear system, whereby a unit who is feared will ignore orders from it's controlling player, and walk around randomly. I've set it up so that it theoretically should work, but I can't prevent an infinite order loop when I order the unit to wander around.

Here's the code:
JASS:
scope Fear initializer init

globals
    private constant integer ABILCODE = 'Aslo'
    private constant integer BUFFCODE = 'B005'
    private constant real MOVE_INTERVAL = 1
    private constant real MOVE_AREA = 300
    
    private integer I = 0
    private unit array UNIT
    private real array MOVE_X
    private real array MOVE_Y
    private timer TIMER = CreateTimer()
    private boolean DENY = false //previous attempt at solving the problem; booleans in the conditions don't work.
    private trigger ORDER_DENIER = CreateTrigger() //I thought if I made this a trigger I could enable/disable, it would fix my problem... NOT
endglobals

private function Callback takes nothing returns nothing
    local integer i = 1
    local real r = GetRandomReal(0,360)
    
    //call DisableTrigger(ORDER_DENIER)
    loop
        exitwhen i > I
        if GetUnitAbilityLevel(UNIT<i>,BUFFCODE) == 0 then
            set UNIT<i> = UNIT<i>
            set MOVE_X<i> = MOVE_X<i>
            set MOVE_Y<i> = MOVE_Y<i>
            set I = I-1
            set i = i-1
            call BJDebugMsg(&quot;unit released&quot;)
        else
            set MOVE_X<i> = GetUnitX(UNIT<i>)+MOVE_AREA*Cos(r)
            set MOVE_Y<i> = GetUnitY(UNIT<i>)+MOVE_AREA*Sin(r)
            call IssuePointOrder(UNIT<i>,&quot;patrol&quot;,MOVE_X<i>,MOVE_Y<i>)
        endif
        set i = i+1
    endloop
    
    //call EnableTrigger(ORDER_DENIER)
    if I == 0 then
        call PauseTimer(TIMER)
        call BJDebugMsg(&quot;timer paused&quot;)
    endif
endfunction

private function Actions takes nothing returns nothing
    local unit u = GetSpellTargetUnit()
    local real r = GetRandomReal(0,360)
    
    //call DisableTrigger(ORDER_DENIER)
    set I = I+1
    set UNIT<i> = u
    set MOVE_X<i> = GetUnitX(u)+MOVE_AREA*Cos(r)
    set MOVE_Y<i> = GetUnitY(u)+MOVE_AREA*Sin(r)
    call IssuePointOrder(u,&quot;patrol&quot;,MOVE_X<i>,MOVE_Y<i>)
    //call EnableTrigger(ORDER_DENIER)
    
    if I == 1 then
        call TimerStart(TIMER,MOVE_INTERVAL,true,function Callback)
    endif
    
    set u = null
    call BJDebugMsg(&quot;unit added&quot;)
endfunction

private function Actions2 takes nothing returns nothing
    local integer i = 1
    
    //call DisableTrigger(ORDER_DENIER)
    loop
        exitwhen i &gt; I
        if GetTriggerUnit() == UNIT<i> then
            call IssuePointOrder(UNIT<i>,&quot;patrol&quot;,MOVE_X<i>,MOVE_Y<i>)
        endif
        set i = i+1
    endloop
    //call EnableTrigger(ORDER_DENIER)
    call BJDebugMsg(&quot;unit course corrected&quot;)
endfunction

private function Conditions takes nothing returns boolean
    return GetSpellAbilityId() == ABILCODE
endfunction

private function Conditions2 takes nothing returns boolean
    return GetUnitAbilityLevel(GetTriggerUnit(),BUFFCODE) &gt; 0 and OrderId2String(GetUnitCurrentOrder(GetTriggerUnit())) != &quot;patrol&quot;
endfunction

private function init takes nothing returns nothing
    local trigger t = CreateTrigger()
    call TriggerRegisterAnyUnitEventBJ(t,EVENT_PLAYER_UNIT_SPELL_CAST)
    call TriggerAddCondition(t,Condition(function Conditions))
    call TriggerAddAction(t,function Actions)
    //=================================================================================
    call TriggerRegisterAnyUnitEventBJ(ORDER_DENIER,EVENT_PLAYER_UNIT_ISSUED_POINT_ORDER)
    call TriggerRegisterAnyUnitEventBJ(ORDER_DENIER,EVENT_PLAYER_UNIT_ISSUED_UNIT_ORDER)
    call TriggerRegisterAnyUnitEventBJ(ORDER_DENIER,EVENT_PLAYER_UNIT_ISSUED_ORDER)
    call TriggerRegisterAnyUnitEventBJ(ORDER_DENIER,EVENT_PLAYER_UNIT_ISSUED_TARGET_ORDER)
    call TriggerAddCondition(ORDER_DENIER,Condition(function Conditions2))
    call TriggerAddAction(ORDER_DENIER,function Actions2)
    set t = null
endfunction

endscope</i></i></i></i></i></i></i></i></i></i></i></i></i></i></i></i></i></i></i></i></i></i></i>

Commented out are some of my previous attempts, which did'nt work :/. I'm not interested in comments about how my code could be improved or how terrible it is, I just want comments relevant to the problem.
 

LurkerAspect

Now officially a Super Lurker
Reaction score
118
Thanks for the reply luorax but I've already solved my problem using a timer that periodically orders the unit to move, overriding any player input. +repped anyway :)
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Varine Varine:
    I ordered like five blocks for 15 dollars. They're just little aluminum blocks with holes drilled into them
  • Varine Varine:
    They are pretty much disposable. I have shitty nozzles though, and I don't think these were designed for how hot I've run them
  • Varine Varine:
    I tried to extract it but the thing is pretty stuck. Idk what else I can use this for
  • Varine Varine:
    I'll throw it into my scrap stuff box, I'm sure can be used for something
  • Varine Varine:
    I have spare parts for like, everything BUT that block lol. Oh well, I'll print this shit next week I guess. Hopefully it fits
  • Varine Varine:
    I see that, despite your insistence to the contrary, we are becoming a recipe website
  • Varine Varine:
    Which is unique I guess.
  • The Helper The Helper:
    Actually I was just playing with having some kind of mention of the food forum and recipes on the main page to test and see if it would engage some of those people to post something. It is just weird to get so much traffic and no engagement
  • The Helper The Helper:
    So what it really is me trying to implement some kind of better site navigation not change the whole theme of the site
  • Varine Varine:
    How can you tell the difference between real traffic and indexing or AI generation bots?
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air

      The Helper Discord

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top