System SpacebarDetection

Troll-Brain

You can change this now in User CP.
Reaction score
85
I don't see how I am doing that, it's not in a local block.

JASS:
local integer i = 0
        local real x
        local real y
        local integer c
        local boolean b
        loop
            exitwhen i > COUNT
            set b = GetLocalPlayer() == P<i>
            set c = GetPlayerId(P<i>)
            if b then
                set x = GetCameraTargetPositionX()
                set y = GetCameraTargetPositionY()
            endif
            if x == X[c] and y == Y[c] then
                if TriggerEvaluate(T<i>) and IsTriggerEnabled(T<i>) then
                    call TriggerExecute(T<i>)
                endif
            endif</i></i></i></i></i>


Player(0) press the bar

First iteration, Player(0) red.

For Player(0) computer b == true, (x == X[c] and y == Y[c]) == true -> trigger evaluated/executed

For Player(1) computer b == false, (x == X[c] and y == Y[c]) == false -> trigger not evaluated/executed

Nice desynch.
Well, I succesfully added custom spacebar points (will release after I fix everything else).
And i'm pretty sure it can fail very easily, i think you have not understood what i wanted to mean.
 
Reaction score
341
Player(0) press the bar

First iteration, Player(0) red.

For Player(0) computer b == true, (x == X[c] and y == Y[c]) == true -> trigger evaluated/executed

For Player(1) computer b == false, (x == X[c] and y == Y[c]) == false -> trigger not evaluated/executed

Nice desynch.

I still don't see how that desyncs, but since your the second person to say that it does..

Just because the Trigger isn't evaluated?

And idea on how to make it not?

And i'm pretty sure it can fail very easily, i think you have not understood what i wanted to mean.

Well, what did you want to mean :p
 

Troll-Brain

You can change this now in User CP.
Reaction score
85
Just because the Trigger isn't evaluated?
Is it a joke ?
Even if you can locally evaluate an empty trigger without a desynch (which i'm not sure) it's really easy to have many cases will make one, if you create/destroy handle(s) inside the condition, change a variable value and then later use it to create/destroy handle(s), open a new thread ...

And idea on how to make it not?
The only way is to synch local data with synch natives, which is very slow and so it will fail for you.

Well, what did you want to mean :p
The war3 engine change by itself the quick bar position sometimes, in special cases, or let's say events, like i've said.
And yes ofc those events override the SetCameraQuickPosition native.
 
Reaction score
341
The war3 engine change by itself the quick bar position sometimes, in special cases, or let's say events, like i've said.

Well, do those events override the SetCameraQuickPosition native?

Even if you can locally evaluate an empty trigger without a desynch (which i'm not sure) it's really easy to have many cases will make one.

I'm so confused...
Are you trying to say that a null trigger being evaluated will cause a desync?
 

Troll-Brain

You can change this now in User CP.
Reaction score
85
See my edit, about evaluate an empty trigger i want mean a created trigger with events or not, it doesn't matter but with no conditions and actions.

Maybe it won't desynch but i'm not sure, in fact you need to test yourself.
 

Romek

Super Moderator
Reaction score
964
Regardless of whether or not the trigger itself being evaluated desyncs, everything in that triggers actions/conditions will be very desync unfriendly.
So no handles will be able to be created, etc.
Also, all the actions will only run for one player.
 

Troll-Brain

You can change this now in User CP.
Reaction score
85
Regardless of whether or not the trigger itself being evaluated desyncs, everything in that triggers actions/conditions will be very desync unfriendly.
So no handles will be able to be created, etc.
Also, all the actions will only run for one player.
Meh i guess it's much clearer than my explanations :D
 
Reaction score
341
Regardless of whether or not the trigger itself being evaluated desyncs, everything in that triggers actions/conditions will be very desync unfriendly.
So no handles will be able to be created, etc.
Also, all the actions will only run for one player.

I'm so confused :mad:

I'm going to try and decipher that..

And yes ofc those events override the SetCameraQuickPosition native.

So my system will fail if one of those events occurs, and the player presses the spacebar within 0.03 seconds?

Seems pretty safe to me, depending on which events those are.
 

Romek

Super Moderator
Reaction score
964
> Meh i guess it's much clearer than my explanations
I don't think your explanation could get any clearer.
Happy still doesn't understand. =|

We were explaining two different cases too.
 

Troll-Brain

You can change this now in User CP.
Reaction score
85
So my system will fail if one of those events occurs, and the player presses the spacebar within 0.03 seconds?

Yes and no :p
If it's a one-player game then yes you're right, but the user won't be able to define the spacebar position (doesn't really matter honestly).
But anyway if it only happens only few times during the game it's still too much lame for submit it, imho.

Seems pretty safe to me, depending on which events those are.
It run at least when a building is under attack, you know when you heard the void "warning we are under attacked", or something like that, and the minimap is pinged.

Now let's explain more why it will fail if there are more than 1 player.

GetCameraTargetPositionX/Y returns a local value, it can be different for each player's computer, so you need to synch these local datas before using like you want.
The bad point, is that the synch natives are slow, i don't remember the value but it's at least more than 0.3 s and the delay should also matter .

Just forget this idea, at least for a multiplayer game.
 
Reaction score
341
What I don't get is how this is happenening.

I mean other systems use the same method as me (check enabled, evaluate, execute)

And they work fine, whats causing it?

This is so confusing -_-
 

Jesus4Lyf

Good Idea™
Reaction score
397
You only set x and y for one player, so they have different values for each player. Setting x and y for a single player's camera position does literally that, it does not set everyone's x and y var to be that value. Therefore evaluating anything based on those variables will return either true or false, depending on which player you are. Therefore, it's a local block. o.o

You execute triggers in a local block... o.o
 
Reaction score
341
You only set x and y for one player, so they have different values for each player. Setting x and y for a single player's camera position does literally that, it does not set everyone's x and y var to be that value. Therefore evaluating anything based on those variables will return either true or false, depending on which player you are. Therefore, it's a local block. o.o

You execute triggers in a local block... o.o

Ah, thanks for that.

what a shame -_-
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    New recipe is another summer dessert Berry and Peach Cheesecake - https://www.thehelper.net/threads/recipe-berry-and-peach-cheesecake.194169/

      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