Support

If you have a problem or need to report a bug please email : support@dsprobotics.com

There are 3 sections to this support area:

DOWNLOADS: access to product manuals, support files and drivers

HELP & INFORMATION: tutorials and example files for learning or finding pre-made modules for your projects

USER FORUMS: meet with other users and exchange ideas, you can also get help and assistance here

NEW REGISTRATIONS - please contact us if you wish to register on the forum

Users are reminded of the forum rules they sign up to which prohibits any activity that violates any laws including posting material covered by copyright

Inconsistent String Behavior

For general discussion related FlowStone

Re: Inconsistent String Behavior

Postby Tronic » Sat Dec 20, 2014 9:20 am

this is the class I use for Bitmask, it take only 199 byte space to store 1024 bit in the string preset
Code: Select all
class Bitmask

   def initialize
      @mask = 0
   end
   
   def set idx
      @mask |= 1 << idx
   end
   
   def unset idx
      @mask &= ~(1 << idx)
   end
   
   def get idx
      @mask & (1 << idx) > 0
   end

   def clear
      @mask = 0
   end
   
   def save
      @mask.to_s(36)
   end
   
   def load data
      @mask = data.to_i(36)
   end
end

Edit: some correction
Tronic
 
Posts: 539
Joined: Wed Dec 21, 2011 12:59 pm

Re: Inconsistent String Behavior

Postby tulamide » Sat Dec 20, 2014 6:15 pm

I don't see where this is any different, apart from my additional safety (I'm avoiding null bytes and don't use bignums, but fixnums, because they are accessed with fewer cycles). Also, I'm already down to 148 bytes (for 1035 states) ;)
"There lies the dog buried" (German saying translated literally)
tulamide
 
Posts: 2714
Joined: Sat Jun 21, 2014 2:48 pm
Location: Germany

Previous

Return to General

Who is online

Users browsing this forum: No registered users and 123 guests