Author Topic: [83+ BASIC] Compressors  (Read 12584 times)

0 Members and 1 Guest are viewing this topic.

Offline kalan_vod

  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2715
  • Rating: +10/-0
    • View Profile
    • kalanrock.us
[83+ BASIC] Compressors
« Reply #15 on: August 06, 2006, 11:14:00 am »
I have one bug to iron out though, well...I made it so it compresses a closed area, where it's like an arena that you can't exit. I can simply correct/add support for regular type of levels, where you can exit etc.

Demon

  • Guest
[83+ BASIC] Compressors
« Reply #16 on: August 06, 2006, 11:41:00 am »
Another idea for matrix compression would be sort of like the list compressor I posted does:  It would concatecate (did I spell that right) the values of the element.  But since matrixes are 2d, it would first combine each row of numbers together like this:

[[0,1,2,3,4]
[5,6,7,8,9,10]
[11,12,13,14]]

[[.35] //dimensions
[.001020304]
[.0506070809]
[.11121314]]

And maybe try to combine the rows together...

Offline kalan_vod

  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2715
  • Rating: +10/-0
    • View Profile
    • kalanrock.us
[83+ BASIC] Compressors
« Reply #17 on: August 06, 2006, 12:02:00 pm »
I will post mine sometime this week, if I get a chance.

Zeromus

  • Guest
[83+ BASIC] Compressors
« Reply #18 on: August 07, 2006, 11:41:00 am »
I have a REALLY REALLY old Matrix zipper that can take an 8x16 matrix, and make it a 1x16 matrix (which then can be put into a list) it's a really good compresson rate, and none to slow either. Talk to DarkAuron on efnet (#tcpa) he can compress things like you wouldn't belive (or instead of IRC, you can drop him a line at http://kvince83.tengun.net/maxboard )

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
[83+ BASIC] Compressors
« Reply #19 on: August 08, 2006, 12:08:00 pm »
i never attempted compression before, does yours and the ones above are any fast?
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Demon

  • Guest
[83+ BASIC] Compressors
« Reply #20 on: August 08, 2006, 12:20:00 pm »
Mine "zipped" a 20-char string to a list in about 10 or 20 seconds.  If you make it just only zip the list (no string conversion or stuff like that) it would go really realyl fast.

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
[83+ BASIC] Compressors
« Reply #21 on: August 08, 2006, 12:37:00 pm »
i c, I'l stick to uncompressed then I think O_Oshocked2.gif
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline kalan_vod

  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2715
  • Rating: +10/-0
    • View Profile
    • kalanrock.us
[83+ BASIC] Compressors
« Reply #22 on: August 08, 2006, 12:51:00 pm »

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
[83+ BASIC] Compressors
« Reply #23 on: August 08, 2006, 12:57:00 pm »
YAYs
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Dragon__lance

  • Guest
[83+ BASIC] Compressors
« Reply #24 on: August 08, 2006, 01:04:00 pm »
code! code! code! :Ptongue.gif

Offline kalan_vod

  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2715
  • Rating: +10/-0
    • View Profile
    • kalanrock.us
[83+ BASIC] Compressors
« Reply #25 on: August 08, 2006, 01:11:00 pm »
QuoteBegin-Dragon__lance+Aug 8 2006, 07:04 PM-->
QUOTE (Dragon__lance @ Aug 8 2006, 07:04 PM)
code! code! code! :Ptongue.gif

 I will release the code/demo once I iron out a few more things.

Zeromus

  • Guest
[83+ BASIC] Compressors
« Reply #26 on: August 09, 2006, 11:36:00 am »
http://www.calcgames.org/cgi-bin/files/files.cgi?ID=689 if you don't mind 100% unoptimized code, this does the trick pretty fast, but it is VERY limited, in that it can only handle 1 digit, and no decimals... (It's like my 4th or 5th program, give me a break)

Offline Halifax

  • LV9 Veteran (Next: 1337)
  • *********
  • Posts: 1334
  • Rating: +2/-1
    • View Profile
    • TI-Freakware
[83+ BASIC] Compressors
« Reply #27 on: August 09, 2006, 01:13:00 pm »
I actually made my own compressor and decompressor which compresses a 12x8 matrix in 10 seconds and cuts it down 4 times its size. The decompressor decompresses it in like 12 seconds.
There are 10 types of people in this world-- those that can read binary, and those that can't.

Offline kalan_vod

  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2715
  • Rating: +10/-0
    • View Profile
    • kalanrock.us
[83+ BASIC] Compressors
« Reply #28 on: August 09, 2006, 05:09:00 pm »
To each his own, mine does a quicker job for a matrix 4 times larger..Congrats.

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
[83+ BASIC] Compressors
« Reply #29 on: August 10, 2006, 02:18:00 am »
we should have a compression contest for 83+ BASIC
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)