WackyToaster's Forum Posts

  • But your method 3 does work properly in the air, even if I disable the part that sets the vY to 0 when it's in the air. I think that's quite logical as how the eventsheet works.

    1. Process velocity

    2. Set velocity (jump)

    3. next tick

    The behavior however seems to be processing gravity and velocity in a different way. Perhaps what it does is to first process velocity, then apply the new velocity after. I think behaviors are usually run after events, so it would look a bit like this:

    1. Events

    2. Process velocity

    3. Set velocity

    4. next tick

    So it would first process the velocity at vY=0+gravity*dt, resulting in 1 tick of falling, then set the new velocity, which is then processed 1 tick later. To correct this it would have to set velocity before processing it as such:

    1. Events

    2. Set velocity

    3. Process velocity

    4. next tick

    It's just a messed up order of operations I believe.

    EDIT: It seems that actually, the objects velocity before jumping has no impact. If I set it to -9000000 the cube should shoot into the air. It just does the same, framerate dependent jump. So it's not that the cubes velocityY is processed first before setting the new velocityY, it's that at some point for some reason, a tick of gravity is added deliberatly. So it can very well be some kind of edge case bugfix, which the platform behavior is full off.

  • R0J0houndThat's an interesting project, though I admit I don't really understand the math behind it all that well :V

    What I described in the first post was my first suspicion as to why my game was framerate dependent, but I'm pretty sure the second problem is the actual main culprit.

    I'm not sure if you saw this but I found a workaround for the second issue:

    Now all the cubes in method 3 align almost perfectly at all framerates. It's possible that it's still just an approximation resulting in some minor error, but that's as close as I could get. How would you interpret this? Why do I have to add -gravity*dt to the vector for the cube in the air? As I believe, the game processes the gravity first, moving the cube down gravity*dt pixels for a single tick, then applying vectorY to it. At a gravity of 1500 this would result in 25px at 60fps, but only 6px at 240fps, as such turning it framerate dependent. Am I not right? Man, I wish I could actually look at the behavior code at hand and verify this myself.

    I've also found that the platform behaviors build-in doublejump suffers this issue of being framerate dependent for this exact reason. I've filed the issue again, as the old one was closed down and I do really believe that I'm correct.

    There's some more details and measurements in the bugreport if anyone is curious.

    github.com/Scirra/Construct-3-bugs/issues/6550

  • Ugh... so after some more experimenting I could find something odd. I decided to try and hardcode the value, to my surprise, there still is a difference in height. Double-checked the code, nothing that could interfere. Made a small repro and...

    Enabling the platform behavior... is NOT framerate independent?

    Excuse me?

    This probably is at least part of the issue!

    EDIT: Turns out that objects that are suspended in the air are the issue and it might not be a bug. Oh no how am I gonna work around that...

    EDIT2: After some pondering I do think this is actually a bug. Applying a vectorY to an object that's in the air is framerate dependant somehow.

    github.com/Scirra/Construct-3-bugs/issues/6544

  • You can set a minimum framerate, this clamps dt to a maximum. Making games run at slow motion if they fall below that, this is set to 30 fps by default. So this is basically a fixed tickrate, at least from one way.

    This doesn't solve the problem. If I set it to 60, everyone with a quicker screen has different results. If I set it to anything higher, it will run in slow-mo for slower screens. That's no good.

    I think ideally you don't want to design the game around extremely tight timings and precision. Not only for dt but other imprecisions like input delay etc. in case the player has to react.

    I understand, but I'm not even doing that. It's just that the difference is so big that it ramps up quickly and noticeably. If there was a difference of a few pixels I'd not have noticed it. The specific part I have made simply requires 2 of those interactions, and the jump is significantly harder to pull off at low framerates, as the character simply goes ~48-64 pixels lower than it should.

    Alternatively you could instead animate something like this with the timeline, which I think will be much more consistent across framerates.

    That is not gonna work in my case, I'm not gonna animate the player character in a platformer :V

    I guess my last option would be to hardcode the values but I think it would be more fun if I don't? Also who knows where else that issue creeps up again in a different form. Afaik other engines avoid this usually by being able to lock the tickrate e.g. the physics always tick at 30 fps regardless of the games framerate.

  • I've noticed there's a couple of things that appear to be framerate dependent and there doesn't seem to be a way to actually solve this. Take this setup for example:

    wackytoaster.at/parachute/framerateindep.c3p

    It's as simple as it gets. Sprite1 collides with sprite2 and sprite2 vectorY is logged in the console. (then layout restarts and does it again)

    While the results are consistent over and over again for the same framerate (ignoring minute differences), it gets ugly once I switch it. My screen supports up to 240 fps, so I can easily test it.

    And there we have it. A difference in vectorY of 20! I knew beforehand that deltatime has some imprecision, but this is too large to build around.

    60fps -> 875

    240fps -> 894

    4500fps -> 897 (unlimited mode)

    Based on that it seems that the error gets exponentially smaller at higher fps, but the important ranges of 60-240hz (which I think 99.99% of screens fall into) have quite large differences.

    My project (or part of it) relies on this specific interaction actually, and the compounding error over multiple of these interactions is very noticable. I only see two options. Either I figure out some kind of formula that accounts for the differences somehow or I ship it with unlimited mode, simply assuming most computers will manage to run it at 240+ fps.

    The third option is to use a fixed tickrate for the engine which is not possible in Construct from my understanding. Though maybe it is considering there's an unlimited (ticks only) mode?

    So... what can I do? Any ideas?

  • Funny enough, I've many times encountered the issue of "events/actions running that aren't supposed to run, but without noticable bugs"

    I usually notice it when I add sound to things and the sounds go haywire unexpectedly. The event/actions in it do not cause any other issues, resulting in an event being run every tick for no purpose. I'd assume that's kind of an invisible performance sink, especially if it happens with multiple eventblocks and per object.

    I also notice it sometimes when putting browser.logs somewhere and then see it being triggered constantly when it shouldn't, but your headphones blowing up with 240 sounds/second is much more prominent. :)

  • If you are using event sheets and don't want to program, then a tool like Construct makes it possible for you to make your game whereas otherwise it could have been impossible.

    That's the best point imo.

  • I think there's a couple of things to consider. Finding additional support for example seems more like a you-problem and not the publishers problem, and possibly can be avoided with careful planning/scoping. (Not that I have the ability to not woefully overscope everything I touch...)

    The export to console is a little bit of a bummer, but in reality there's probably not that much difference I think. Even if the engine technically supports export for consoles, it's more than likely that it will not work out of the box. You will almost certainly have to do porting work, regardless of engine. The only difference would be that you could do the porting work yourself, which sounds like an absolute anti-fun nightmare to me. Ratalaika (aka one of the companies that does porting) covers all porting costs and ports for a % of revenue. At least that's what they told me last time I asked. Sounds like a perfectly fine deal in my book. If the game is well received, it will still be worth porting and as such will still be worth for the publisher, just not as much I guess. Not to mention the publisher will make damn sure they get their share of money either way.

    Not sure about sustainability/maintenance to be honest. I'd guess that well thought out eventsheets are similarly sustainable as well thought out code, and terrible code will be just as bad as terrible eventsheets. Also you CAN do a large portion in code if you want.

    I guess my bottom line is to worry a bit less about the publisher. And if you show the publisher an absolute banger game, they probably really don't care if it's made in Construct or not.

  • If on the eventsheet, you can do the picking in the conditions and then use

    runtime.objects.H1.getPickedInstances()
    

    Outside of the evensheet you can do

    let instances = runtime.objects.Sprite.getAllInstances(); //returns an array of all instances
    let pick = instances.filter(i => i.uid === 3)[0]; //filter the array based on UID. Just replace "3" with your variable.
    	
    pick.angle += 1; // do whatever you wanna do with the object
    
    
  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Just for fun I created a project with 6k objects, 22k events and 68k actions, all in a single eventsheet. I can tell that performance is tanking at this point, extremely so on the eventsheet. It's pretty much not useable at this point, as every action taken there takes a good 3 seconds. Just switching to it freezes construct for maybe 20 seconds. I'd argue tho that nobody is insane enough to have 22k events all on a single eventsheet.

    On the layout view however I notice little impact, though it gets slightly laggy once I open up the folder in the project view that contains all 6k objects. About 0.2 seconds delay that goes away if I close the folder again. Very much useable. I've increased the objects to 12k even and now it certainly starts lagging more, but still not unuseable, and closing the folder also still fixes it.

    I've been mucking around in the project a while, but apart from switching to the eventsheet I don't have any freezes longer than a few seconds, and even those are only on the eventsheet. So... I dunno.

  • Lord have mercy 17k events, 25k actions, 4k object types! That's like orders of magnitude larger than my largest project, which is like 500 events tops. No wonder I have no issues lol. Out of curiosity, what are you building?

  • I just wanna chime in and say I haven't seen any issues. How big are your projects roughly?

  • Is shift down -> set value to X

    Is shift not down -> set value to Y

    Does that not work?

    construct.net/en/make-games/manuals/construct-3/project-primitives/events/conditions

  • You can save a tilemap with tilemap.asJSON and load that data into the tilemap.

    You can also use a custom way of parsing your data. I personally did that, you just have to loop over an array and then depending on the data and the cell location set a tile on the tilemap.