Sharing an Idea - Periods as variables

Dr.Jack

That's Cap'n to you!
Reaction score
109
Well this was supposed to be a data to timer attachment system. However after testing (Thanks Artificial for testing!!) it appears as this system's speed is no match to TU,KT2,T32 (damn J4L you are good :p) etc.... I think however that the concept behind has never been tried before so I thought about sharing it, perhaps a better Jasser could use this. Presenting Manipulated Periods (after some massive cleaning) to anyone remotely interested. Anyway while working on this I learned a bit of small reals, can't be a bad thing. ;)

Basically this attaches data to a timer by using periods. It take's the timer period and slightly increase it by converting the data to a real small real and adding it. Than when retrieving data it uses the period.

JASS:
function SetPeriod takes real p, integer i returns real
    if i < 10 then
        return p + S2R("0.0000000" + I2S(i)) + 0.00000001
    elseif i < 100 then
        return p + S2R("0.000000" + I2S(i)) + 0.00000001
    elseif i < 1000 then
        return p + S2R("0.00000" + I2S(i)) + 0.00000001
    else
        return p + S2R("0.0000" + I2S(i)) + 0.00000001
    endif
    
    return 0.
endfunction

function LocalGetData takes real p returns integer
    local integer i = R2I(p * 100000000)
    local string s = I2S(i)

    set i = StringLength(s)
    set s = SubString(s,i-4,i)
    
    return S2I(s)
endfunction


Edit: Untested, removed strings from the attach function.. Don't know why I didn't do it this way in the first place. :p
Now if there was anyway to remove string use from the LocalGetData func...

JASS:
function SetPeriod takes real p, integer i returns real
    return p + (R2I(i) * 0.00000001) + 0.00000001
endfunction
 

Azlier

Old World Ghost
Reaction score
461
Playing with strings is very slow.
 

Dr.Jack

That's Cap'n to you!
Reaction score
109
Yup, seems so. In SetPeriod I guess there is a way to manage without strings, but there is no way to do LocalGetData without strings.
 

Dr.Jack

That's Cap'n to you!
Reaction score
109
I just realized that there is a much simpler way to do this... And to think the current code required 2 days of testing to get full understanding...

JASS:
library MP
function SetPeriod takes real p, integer i returns real
    return p + (i * 0.00000001) + 0.00000001
endfunction

function LocalGetData takes real p returns integer
    local real tp = (p * 100000)
    local integer ip = R2I(tp)
    set tp = tp - ip
    return R2I(tp * 1000)
endfunction
endlibrary


That should be fast enough, no?
 

Troll-Brain

You can change this now in User CP.
Reaction score
85
As far as I understand this statement only if a timer finished running you can use this. Or did I misinterpret the term expired?

Hmm yes, but why you would need it when the timer is running anyway ?
Maybe i miss something.

Also :

JASS:
function LocalGetData takes real p returns integer
    return R2I((p * 100000. - R2I(p * 100000.)) * 1000.)
endfunction


I wonder it it would be faster, even if it won't be inlined (p used many times and not only one)
At least i would use "." for reals, even if it doesn't matter it clearly show that is a real and not an integer, for sake readability.
 

Troll-Brain

You can change this now in User CP.
Reaction score
85
myself said:
Hmm yes, but why you would need it when the timer is running anyway ?
Maybe i miss something.
Some words, coz the quote doesn't count in the length of a message.
 

Dr.Jack

That's Cap'n to you!
Reaction score
109
My SW fails.
Is anyone willing to test

JASS:
library MP
public function SetPeriod takes real p, integer i returns real
    return p + (i * 0.00000001) + 0.00000001
endfunction

public function GetData takes real p returns integer
    set p = (p * 10000)
    return R2I(((p) - R2I(p)) * 10000)
endfunction
endlibrary


Versus TU (Red)? Also testing along the way TU(Blue) and KT2 probably won't hurt (not optimistic about KT2 but what the heck).

Thanks a lot to anyone willing to do this and post the results!
 

Troll-Brain

You can change this now in User CP.
Reaction score
85
The current functions should be faster than his at a quick glance.
Then it's fine if it's true.

Anyway what's wrong with working on something new?
Nothing, i was simply wondering about which case you need to get a value attached to a timer outside his expiration.
And it seems you can't figure one, like i thought.
 

Dr.Jack

That's Cap'n to you!
Reaction score
109
Then it's fine if it's true.


Nothing, i was simply wondering about which case you need to get a value attached to a timer outside his expiration.
And it seems you can't figure one, like i thought.

I'm still not 100% what you mean by expired. If you mean expired as when the callback function is called, true there are few cases you would want to get a value from a timer before its expirimanation. Yet, there will be times that you need to that, and a proper answer needs to be found.

Want an example? Just off the top of my head -Timer recycling with high periods. You could use the attached value to determine accurately when to recycle and by that optimizing the code to the max.
 

Troll-Brain

You can change this now in User CP.
Reaction score
85
Yes that is what i wanted to say.

Want an example? Just off the top of my head -Timer recycling with high periods. You could use the attached value to determine accurately when to recycle and by that optimizing the code to the max.
I'm lost.
Could you give a piece of code plz ?
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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 The Helper:
    I think we need to add something to the bottom of the front page that shows the Headline News forum that has a link to go to the News Forum Index so people can see there is more news. Do you guys see what I am saying, lets say you read all the articles on the front page and you get to the end and it just ends, no kind of link for MOAR!
  • The Helper The Helper:
    Happy Wednesday!
    +1

      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