Arrow Key Movement

T

Tinkerhead

Guest
How do I make units move a distance via JASS so I don't have to make a new trigger via GUI for every region? For example: I press right and it moves right a certain distance.
 

Sim

Forum Administrator
Staff member
Reaction score
534
Detect when the player presses the arrow key, wait x seconds then force the unit to stop.
 

hobo218

Meh
Reaction score
75
The initial event would be
Player - Player 1 (Red) Presses the Left Arrow key

or whatever you wanted configured for it.
 

Doomhammer

Bob Kotick - Gamers' corporate spoilsport No. 1
Reaction score
67
hm, it's a bit hard to explain out of context, especially as you're not giving any details about what kind of movement you'd like to have.
Is it some sort of 1st/3rd person perspective combined with arrow key movement? Is it for singleplayer only, or multiplayer?

in any case create 2 variables, and 6 triggers; (once you get it, you may experiment a bit, and ideally report how to make the movement smoother, especially when standing and turning around.)
the variables:
call the first sth like "walk" of type boolean
the second sth like "leftright" of type integer
your unit has to be declared as variable of course
I'm using triggers of type local here, as that was more practical for my purpose, but you'd better go with globals - so just create triggers with the events as I did. And don't get deterred by the amount of lines! Just gnaw through, it's actually pretty simple.

Code:
function Release takes nothing returns nothing
    local integer i = GetPlayerId(GetTriggerPlayer())+1
        set udg_InsLR[i] = 0
endfunction

function ReUp takes nothing returns nothing
    local integer i = GetPlayerId(GetTriggerPlayer())+1
        set udg_InsWalk[i] = false
        call IssueImmediateOrder( udg_InsUnit[i], "stop" )
endfunction

function Up takes nothing returns nothing
local integer i = GetPlayerId(GetTriggerPlayer())+1
local unit u = udg_InsUnit[i]
local real x
local real y
local real v = GetUnitDefaultMoveSpeed(u)
set udg_InsWalk[i] = true
  loop
      exitwhen udg_Insight[i] == false 
      exitwhen udg_InsWalk[i] == false
      set x = GetUnitX(u) + 2*v* Cos((GetUnitFacing(u) + udg_InsLR[i] * 30)* bj_DEGTORAD)
      set y = GetUnitY(u) + 2*v* Sin((GetUnitFacing(u) + udg_InsLR[i] * 30)* bj_DEGTORAD)
      call IssuePointOrder(u, "move", x, y )
      call TriggerSleepAction(0.7 )
  endloop
set u = null
endfunction

function Down takes nothing returns nothing
    local integer i = GetPlayerId(GetTriggerPlayer())+1
        call SetUnitFacingTimed( udg_InsUnit[i], ( GetUnitFacing(udg_InsUnit[i]) + 180.00 ), 0.80 )
endfunction

function Left takes nothing returns nothing
    local integer i = GetPlayerId(GetTriggerPlayer())+1
        if udg_InsWalk[i] == true then
            set udg_InsLR[i] = 1
        else
            call SetUnitFacingTimed( udg_InsUnit[i], ( GetUnitFacing(udg_InsUnit[i]) + 45.00 ), 0.50 )
        endif
endfunction

function Right takes nothing returns nothing
    local integer i = GetPlayerId(GetTriggerPlayer())+1
        if udg_InsWalk[i] == true then
            set udg_InsLR[i] = -1
        else
            call SetUnitFacingTimed( udg_InsUnit[i], ( GetUnitFacing(udg_InsUnit[i]) - 45.00 ), 0.50 )
        endif
endfunction

function InsLock takes player p, unit tar, camerasetup cam0 returns nothing
    local integer j = GetPlayerId(p) + 1
    local trigger TReUp 
    local trigger TRelease
    local trigger TUp
    local trigger TDown
    local trigger TLeft
    local trigger TRight
               
        set TReUp = CreateTrigger()
        call TriggerRegisterPlayerKeyEventBJ( TReUp, Player(j-1), bj_KEYEVENTTYPE_RELEASE, bj_KEYEVENTKEY_UP )
        call TriggerAddAction( TReUp, function ReUp )
        set TRelease = CreateTrigger()
        call TriggerRegisterPlayerKeyEventBJ( TRelease, Player(j-1), bj_KEYEVENTTYPE_RELEASE, bj_KEYEVENTKEY_LEFT )
        call TriggerRegisterPlayerKeyEventBJ( TRelease, Player(j-1), bj_KEYEVENTTYPE_RELEASE, bj_KEYEVENTKEY_RIGHT )
        call TriggerAddAction( TRelease, function Release )
        set TUp = CreateTrigger()
        call TriggerRegisterPlayerKeyEventBJ( TUp, Player(j-1), bj_KEYEVENTTYPE_DEPRESS, bj_KEYEVENTKEY_UP )
        call TriggerAddAction( TUp, function Up)
        set TDown = CreateTrigger()
        call TriggerRegisterPlayerKeyEventBJ( TDown, Player(j-1), bj_KEYEVENTTYPE_DEPRESS, bj_KEYEVENTKEY_DOWN )
        call TriggerAddAction( TDown, function Down )
        set TLeft=CreateTrigger()
        call TriggerRegisterPlayerKeyEventBJ( TLeft, Player(j-1), bj_KEYEVENTTYPE_DEPRESS, bj_KEYEVENTKEY_LEFT )
        call TriggerAddAction( TLeft, function Left)
        set TRight=CreateTrigger()
        call TriggerRegisterPlayerKeyEventBJ( TRight, Player(j-1), bj_KEYEVENTTYPE_DEPRESS, bj_KEYEVENTKEY_RIGHT )
        call TriggerAddAction( TRight, function Right)

//...more script in here which I cut out to simplify       
 
        call DestroyTrigger(TReUp)
        call DestroyTrigger(TRelease)
        call DestroyTrigger(TUp)
        call DestroyTrigger(TDown)
        call DestroyTrigger(TLeft)
        call DestroyTrigger(TRight)
        set udg_InsUnit[j] = null
        set tar = null
        set p = null
endfunction

EDIT:
it's probably too soon to get into detail already.
Better give more info about what you want. Can the unit die? If so, what is to happen after it died? Which perspective is it? What is supposed to happen when you press up/left/right/down, and in combinations up+left, down + right, etc. What is supposed to happen when you release a key?
 

SFilip

Gone but not forgotten
Reaction score
634
you can most likely get the same effect with simple polar offsets in gui...
 

Doomhammer

Bob Kotick - Gamers' corporate spoilsport No. 1
Reaction score
67
polar offset is the same maths, yet given the speed fetishism in the mind of a true jasser - and there is no denying the fact that the noticeable difference in calculation speed between GUI and Jass plays the key role here - I can only say that GUI is for kids.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • The Helper The Helper:
    What is up WildTurkey?
  • The Helper The Helper:
    Looks like Google fixed whatever mistake that made the recipes on the site go crazy and we are no longer trending towards a recipe site lol - I don't care though because it motivated me to spend alot of time on the site improving it and at least now the content people are looking at is not stupid and embarrassing like it was when I first got back into this like 5 years ago.
  • The Helper The Helper:
    Plus - I have a pretty bad ass recipe collection now! That section of the site is 10 thousand times better than it was before
  • The Helper The Helper:
    We now have a web designer at my job. A legit talented professional! I am going to get him to redesign the site theme. It is time.
  • Varine Varine:
    I got one more day of community service and then I'm free from this nonsense! I polished a cop car today for a funeral or something I guess
  • Varine Varine:
    They also were digging threw old shit at the sheriff's office and I tried to get them to give me the old electronic stuff, but they said no. They can't give it to people because they might use it to impersonate a cop or break into their network or some shit? idk but it was a shame to see them take a whole bunch of radios and shit to get shredded and landfilled
  • The Helper The Helper:
    whatever at least you are free
  • Monovertex Monovertex:
    How are you all? :D
    +1
  • Ghan Ghan:
    Howdy
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!

      The Helper Discord

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top