System Timer32

Jesus4Lyf

Good Idea™
Reaction score
397
I was wondering if this is going to cause any performance issues (fps) if I have, say, around 30-40 active struct instances in use with this. My current search is to find something that can handle such a number of low frequency calls without a huge amount of performance loss as in concern of the user/player.
This can probably handle 800 instances of simple stuff nicely.

The goal of this was not actually to be the most efficient system so far - it was to be the most efficient system ever possible. :p

(Oh, and yeah, uberfoop is pretty much right.)
 

Kenny

Back for now.
Reaction score
202
Question: How much slower would this be if you used a timer instead? I just find it comforting to know I don't have a high frequency timer doing nothing in the background (i.e pausing it when necessary). Even though it is not a big issue, I was just wondering.

Also, is it possible to remove the private keyword from next and prev so that they can be used in user defined functions? Obviously it would only be for personal use, but I find this system very cool and I need to run some small O(n) type functions that need a list of struct instances, so I thought that could be handy.

EDIT:

Oh and another question: Would there by any chance be a compile error due to the possibility of using two onInit methods (one from your module and another from the spell/system/whatever we are using it in)? I remember using something similar a while ago, and even though it was private (just like yours is), it still gave me errors.
 

Jesus4Lyf

Good Idea™
Reaction score
397
Yes, there is that compile error. I could allow users to specify a T32_onInit method though, if people think that's worthwhile. But I believe JassHelper is meant to fix that up some time anyway. Still, the T32_onInit is an option...

In regards to your other questions, a high frequency timer going in the background isn't an issue, but removing it would remove a variable amount of efficiency: 1% at around 10 instances per struct type, maybe 5-10% (untested) for 1 instance per struct type.

You could make those public, but that list only contains structs that are firing the periodic method... Seems a little odd to need to iterate over those specifically.

Originally I was going to make the background timer pause and such, but I believe that would actually be less efficient than letting the DoNothing conditions run. The speed gain for adding/removing instances is probably more useful.
 

Kenny

Back for now.
Reaction score
202
Yes, there is that compile error. I could allow users to specify a T32_onInit method though, if people think that's worthwhile. But I believe JassHelper is meant to fix that up some time anyway. Still, the T32_onInit is an option...

I think I would find that option very useful until it is fixed in JassHelper.

In regards to your other questions, a high frequency timer going in the background isn't an issue, but removing it would remove a variable amount of efficiency: 1% at around 10 instances per struct type, maybe 5-10% (untested) for 1 instance per struct type.

The pausing isn't really a big issue to me, I was just wondering what the effects of switching over to a timerwould be.

You could make those public, but that list only contains structs that are firing the periodic method... Seems a little odd to need to iterate over those specifically.

It's just for a spell that I wish to use T32 for. Its quite intensive, and I thought making them public is better then using a unit indexing system (for now).

Thanks for the reply.
 

RaiJin

New Member
Reaction score
40
ah i understand the linked list stuff a bit more now, but i don't ever think ill get the hang of it to be able to use it
 
Reaction score
91
Hmm, I wanna suggest a public FPS constant. I noticed I needed such a thing while doing some periodic stuff and had to declare my own one.
JASS:
globals
    public constant real PERIOD=0.03125
    public constant integer FPS=R2I(1 / PERIOD)
 

Troll-Brain

You can change this now in User CP.
Reaction score
85
A simple comment sounds more "reasonable", maybe it isn't obvious for all.
It's not like adding a such constant is relevant or not, but fairly useless, the only use would be PERIOD.
 
Reaction score
91
For example, an immolation spell. Every PERIOD I'm checking if the caster is dead or not so I can remove the instance. For the dps I'd need ticks to count when 1 second has passed and that's why I need the FPS constant to reassign the ticks back to 32 (since very PERIOD I subtract 1). Other than that, it could be used in similar situations where you'd need to count when 1 second has passed in the periodic method...
 

Troll-Brain

You can change this now in User CP.
Reaction score
85
It's a such specific case.
If he did that , then he could also make it for 1.1 s , 2.3 s and so one :D

R2I(wanted time/period) is not that hard.
 

Kenny

Back for now.
Reaction score
202
Sad face. You updated to add a constant and some debug messages, but not to make this compatible with a majority of spells/systems that use structs and the onInit method. I wouldn't mind seeing some compatibility here until JassHelper is fixed.
 

Jesus4Lyf

Good Idea™
Reaction score
397
Approved!
Thanks for contributing!
Thanks, Jack! :D
make this compatible with a majority of spells/systems that use structs and the onInit method.
Actually, I tried this. It botched something to do with inheritance. Example:
JASS:
struct SpellShare
    real x
    real y
    unit caster
    unit target
endstruct

struct MySpellInstance extends SpellShare
    private static method T32_onInit takes nothing returns nothing
        ...
    endmethod
    private method periodic takes nothing returns boolean
        ...
        return false
    endmethod
    implement T32
endstruct

This actually bugs! (At least in my version of JassHelper.)

It looks for T32_onInit inside of SpellShare even though it finds periodic inside MySpellInstance. So my attempts of implementing it failed.

However! You can still use scope initialisers to run a static "init" method in the struct, which is what I've resorted to in my own spells until JassHelper fixes up modules. So I think you'll have to bug Vexorian on this one... :(

PS. That is what I'm doing in my own map. It's quite a serious issue that it bugs, it means I wouldn't be able to use T32. :(
 

Kenny

Back for now.
Reaction score
202
Oh shit... Sad face indeed. That sucks. I guess I will just use scope initialisers then.

Anywho, mad system, hope JassHelper gets fixed quick smart so that this can be even more useful.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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!
    +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
    +1
  • V-SNES V-SNES:
    Happy Friday!
    +1

      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