Check if unit is in front of certain unit

Leazy

You can change this now in User CP.
Reaction score
50
Hello! I need a way to check if udg_Target is in front of udg_Caster, how do I do this? This is what I got so far (don't know if it works correctly):

Trigger:
  • Check Facing
    • Events
    • Conditions
    • Actions
      • Set Point[1] = (Position of Target)
      • Set Point[2] = (Position of Caster)
      • Set Real[1] = (Angle from Point[1] to Point[2])
      • Set Real[2] = (Facing of Caster)
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • And - All (Conditions) are true
            • Conditions
              • And - All (Conditions) are true
                • Conditions
                  • Real[1] Greater than or equal to (Real[2] - 90.00)
                  • Real[1] Less than or equal to (Real[2] + 90.00)
        • Then - Actions
          • Set Behind = True
        • Else - Actions
          • Set Behind = False
      • Custom script: call RemoveLocation (udg_Point[1])
      • Custom script: call RemoveLocation (udg_Point[2])
 

merlinds

Member
Reaction score
15
I think that`s the idea, but +90/-90 is a very great angle, it will work even if the unit is in the side of the caster. i suggest you to reduce those angles to 45.
 

Trollvottel

never aging title
Reaction score
262
You Should know that (Angle from Point[1] to Point[2]) returns values between -180° and 180° (as far as i remember)
so you should convert that to 0-360° first of all.
Then you should get the difference between Real[1] and Real[2] and get it's absolute value.
then you can check if it is smaller than 90° or not.
 

tommerbob

Minecraft. :D
Reaction score
110
An easier way is to set 3 points, Point A for caster, Point B for target, Point C X distance in front of target. Then check the distance. If target is closer to Point C than the caster, it means he is behind his target.
 

Sgqvur

FullOfUltimateTruthsAndEt ernalPrinciples, i.e shi
Reaction score
62
I think what you have will work but you will need to add 360 to Real[1] (the angle between points) and then take the remainder of it with 360 so like Trollvottel wrote you'll end up with an angle [0, 359].
 

GFreak45

I didnt slap you, i high 5'd your face.
Reaction score
130
just a heads up, this part:
Trigger:
  • If - Conditions
    • And - All (Conditions) are true
      • Conditions
        • And - All (Conditions) are true
          • Conditions
            • Real[1] Greater than or equal to (Real[2] - 90.00)
            • Real[1] Less than or equal to (Real[2] + 90.00)

does not need all of those and conditions
Trigger:
  • If - Conditions
    • Real[1] Greater than or equal to (Real[2] - 90.00)
    • Real[1] Less than or equal to (Real[2] + 90.00)

should work
 

Leazy

You can change this now in User CP.
Reaction score
50
Thank you very much for all the help guys!

This is what I got so far:

Trigger:
  • Check Facing
    • Events
    • Conditions
    • Actions
      • Set Point[1] = (Position of Target)
      • Set Point[2] = (Position of Caster)
      • Set Real[1] = (Angle from Point[1] to Point[2])
      • Set Real[2] = (Facing of Caster)
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • Real[1] Less than 0.00
        • Then - Actions
          • Set Real[1] = (Real[1] + 360.00)
        • Else - Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • Real[1] Greater than or equal to (Real[2] - 45.00)
          • Real[1] Less than or equal to (Real[2] + 45.00)
        • Then - Actions
          • Set InFront = False
        • Else - Actions
          • Set InFront = True
      • Custom script: call RemoveLocation (udg_Point[1])
      • Custom script: call RemoveLocation (udg_Point[2])


Only detect that the target is behind when it's as far away (facing-wise) as possible. I want it to detect that it's behind anywhere between this range: (tried increasing and decreasing the 45 values, but that messed things up)
 

Attachments

  • thehelper.png
    thehelper.png
    6.1 KB · Views: 308

Sgqvur

FullOfUltimateTruthsAndEt ernalPrinciples, i.e shi
Reaction score
62
I think you've reversed:

Trigger:
  • Then - Actions
    • Set InFront = False
    • Else - Actions
      • Set InFront = True


I think it should be:

Trigger:
  • Then - Actions
    • Set InFront = True
    • Else - Actions
      • Set InFront = False
 

Leazy

You can change this now in User CP.
Reaction score
50
Okey, I got this now:

Trigger:
  • Check Facing
    • Events
    • Conditions
    • Actions
      • Set Point[1] = (Position of Target)
      • Set Point[2] = (Position of Caster)
      • Set Real[1] = (Angle from Point[1] to Point[2])
      • Set Real[2] = (Facing of Caster)
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • Real[1] Less than 0.00
        • Then - Actions
          • Set Real[1] = (Real[1] + 360.00)
        • Else - Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • Real[1] Greater than or equal to (Real[2] - 45.00)
          • Real[1] Less than or equal to (Real[2] + 45.00)
        • Then - Actions
          • Set InFront = True
        • Else - Actions
          • Set InFront = False
      • Custom script: call RemoveLocation (udg_Point[1])
      • Custom script: call RemoveLocation (udg_Point[2])


I use a condition like this:
InFront Equal to False
If InFront = false I send a error message saying that you need to face the target and skips remaning actions. I get the error message despite facing, and at some random facings etc. Works in front and if the target is exactly behind etc. Anyone know why this bugs so much?
 

Sgqvur

FullOfUltimateTruthsAndEt ernalPrinciples, i.e shi
Reaction score
62
Hm... shouldn't the angle be from the caster towards the target so

Trigger:
  • Set Real[1] = (Angle from Point[1] to Point[2])


becomes

Trigger:
  • Set Real[1] = (Angle from Point[2] to Point[1])
 

gameman

It's been a long, long time.
Reaction score
96
I made out my own trigger. I don't think I tested it enough (seems to have an occasional bug). But it works!

You'll need to adjust the values, and clean it up.

EDIT: Oh, sorry, I made my trigger with cone detection, not the way you wanted it. Well, maybe this will be of some use.

Trigger:
  • Working
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Detect
    • Actions
      • Set Range = 500.00
      • Set Detector = (Triggering unit)
      • Set Detected = (Target unit of ability being cast)
      • Set DetectorFacing = (Facing of Detector)
      • Set Points[1] = (Position of Detector)
      • Set Points[3] = (Points[1] offset by Range towards (DetectorFacing + 30.00) degrees)
      • Set Points[4] = (Points[1] offset by Range towards (DetectorFacing - 30.00) degrees)
      • Set Points[5] = (Position of Detected)
      • Custom script: //===================================
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • And - All (Conditions) are true
            • Conditions
              • (Distance between Points[1] and Points[5]) Greater than or equal to 0.00
              • (Distance between Points[4] and Points[5]) Greater than or equal to 0.00
              • (Distance between Points[3] and Points[5]) Greater than or equal to 0.00
              • And - All (Conditions) are true
                • Conditions
                  • (Distance between Points[1] and Points[5]) Less than Range
                  • (Distance between Points[4] and Points[5]) Less than Range
                  • (Distance between Points[3] and Points[5]) Less than Range
        • Then - Actions
          • Set Correct_Placement = True
        • Else - Actions
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • WildTurkey WildTurkey:
    is there a stephen green in the house?
    +1
  • 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 Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top