System GameCache Extension

chobibo

Level 1 Crypt Lord
Reaction score
48
JASS:
//======================================================
//= GameCache Extension - by Chobibo
//=     Makes use of a string array for use as string 
//= keys when storing and retrieving data from the ga
//= mecache. Can be used for an estimated 66,044,033 
//= handle ids.
//= Reuirements: JassNewGen WE
//= Special thanks: To the people who made Jass
//=                 NewGen pack
//=                 To Blizzard for making gamecache
//======================================================

//*********************
//*** Function List ***
//*********************
//=== (Data Types: Integer, Real, Boolean)
//--> STORE FUNCTION
//--- Cache<Data Type>( handle h, <DataTypeAllowed> data ) Example: CacheReal( caster, 10.5 )
//---       *Saves data ( can be integer, real or boolean ) to the gamecache
//--> RETRIEVE FUNCTION
//--- Get<DataType>( handle h ) Example: GetBoolean(caster)
//---       *Retrieves the saved data by using the handle id of an object.
//*********************

//*** PROS
//--> uses 8191 string keys to store data onto gamecache
//--> can handle 66,044,033 data elements
//--> flushes the gamecache by itself
//--> you don't need to null local variables
//--> you don't need to worry about handleId leaks

//*** CONS
//--> uses gamecache, which is slow
//--> can only store integers, reals and booleans
//--> limited working capacity
//--> I made it( I'm noob )
//****************************

library GCX initializer Init

globals
    public string array Key
    public gamecache Cache = null
    private constant integer MaxValue = 8191
endglobals

public function H2I takes handle h returns integer
    return h
    return 0
endfunction

// === Initializes the string keys and the gamecache
public function Init takes nothing returns nothing
    local integer i = 0
    loop
        exitwhen i == MaxValue
        set Key<i> = I2S(i)
        set i=i+1
    endloop
    set i = 0
    if Cache == null then
        call FlushGameCache(InitGameCache(&quot;GCX&quot;))
        set Cache = InitGameCache(&quot;GCX&quot;)
    endif
endfunction

// === INTEGER
function CacheInteger takes handle h, integer i returns nothing
    local integer id = H2I(h)
    local integer x = id / MaxValue
    local integer y = id - x * MaxValue
    debug call BJDebugMsg(&quot;string key: &quot; + Key[x] + &quot;  :: mission key: &quot; + Key[y] + &quot;  :: Data: &quot; + Key<i>)
    call StoreInteger(Cache, Key[x], Key[y], i)
endfunction

function GetInteger takes handle h returns integer
    local integer id = H2I(h)
    local integer x = id / MaxValue
    local integer y = id - x * MaxValue
    local integer data = GetStoredInteger(Cache, Key[x], Key[y])
    debug call BJDebugMsg(&quot;string key: &quot; + Key[x] + &quot;  :: mission key: &quot; + Key[y] + &quot;  :: Return Data: &quot; + Key[data])
    call FlushStoredInteger(Cache, Key[x], Key[y])
    return data
endfunction

//=== REAL
function CacheReal takes handle h, real r returns nothing
    local integer id = H2I(h)
    local integer x = id / MaxValue
    local integer y = id - x * MaxValue
    debug call BJDebugMsg(&quot;string key: &quot; + Key[x] + &quot;  :: mission key: &quot; + Key[y] + &quot;  :: Data: &quot; + Key[R2I(r)])
    call StoreReal(Cache, Key[x], Key[y], r)
endfunction

function GetReal takes handle h returns real
    local integer id = H2I(h)
    local integer x = id / MaxValue
    local integer y = id - x * MaxValue
    local real data = GetStoredReal(Cache, Key[x], Key[y])
    debug call BJDebugMsg(&quot;string key: &quot; + Key[x] + &quot;  :: mission key: &quot; + Key[y] + &quot;  :: Return Data: &quot; + Key[R2I(data)])
    call FlushStoredReal(Cache, Key[x], Key[y])
    return data
endfunction

//=== BOOLEAN
function CacheBoolean takes handle h, boolean b returns nothing
    local integer id = H2I(h)
    local integer x = id / MaxValue
    local integer y = id - x * MaxValue
    debug local string s 
    debug if b==true then
        debug set s = &quot;true&quot;
    debug elseif b==false then
        debug set s = &quot;false&quot;
    debug endif
    debug call BJDebugMsg(&quot;string key: &quot; + Key[x] + &quot;  :: mission key: &quot; + Key[y] + &quot;  :: Data: &quot; + s)
    call StoreBoolean(Cache, Key[x], Key[y], b)
endfunction

function GetBoolean takes handle h returns boolean
    local integer id = H2I(h)
    local integer x = id / MaxValue
    local integer y = id - x * MaxValue
    local boolean data = GetStoredBoolean(Cache, Key[x], Key[y])
    debug local string s 
    debug if data==true then
        debug set s = &quot;true&quot;
    debug elseif data==false then
        debug set s = &quot;false&quot;
    debug else
        debug set s = &quot;Invalid data!&quot;
    debug endif
    debug call BJDebugMsg(&quot;string key: &quot; + Key[x] + &quot;  :: mission key: &quot; + Key[y] + &quot;  :: Return Data: &quot; + s)
    call FlushStoredBoolean(Cache, Key[x], Key[y])
    return data
endfunction

endlibrary



//=== Forced By WE ===
function InitTrig_GCX takes nothing returns nothing
endfunction</i></i>


A gamecache extension which is easy to use but can only store real, integer and boolean data types.

Uses an array of 8191 strings as missionkey and key for storing data so you wouldn't need to worry about handles not being recycled.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    Sticking with the desserts for now the latest recipe is Fried Apple Pies - https://www.thehelper.net/threads/recipe-fried-apple-pies.194297/
  • The Helper The Helper:
    Finally finding about some of the bots that are flooding the users online - bytespider apparently is a huge offender here - ignores robots.txt and comes in from a ton of different IPs
  • Monovertex Monovertex:
    @The Helper I'm really not seeing the "Signature" link in the sidebar on that page. Here's a screenshot:
  • The Helper The Helper:
    I have reported it - I was wondering why nobody I have given sigs to over the last few years have used them
  • The Helper The Helper:
    Ghan has said he has fixed this. Monovertex please confirm this fix. This was only a problem with people that had signatures in the upper levels like not the special members but the respected members.
  • The Helper The Helper:
    Here is a better place to manage this stuff https://www.thehelper.net/account/account-details which I think should be way more visible
  • The Helper The Helper:
    I am hoping that online user count drop is finally that TikTok bot banned
  • Ghan Ghan:
    I added the filter last night.
  • The Helper The Helper:
    They are still there

      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