Welcome,
Guest
. Please
login
or
register
.
Did you miss your
activation email
?
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Home
About
Team
Rules
Stats
Status
Sitemap
Chat
Downloads
Forum
News
Our Projects
Major Community Projects
Recent Posts
Unread Posts
Replies
Tools
SourceCoder3
Other Things...
Omnimaga Radio
TI-83 Plus ASM File Unsquisher
Z80 Conversion Tools
IES TI File Editor
Free RAM areas
Comprehensive Getkeyr table
URL Shortener
Online Axe Tilemap Editor
Help
Contact Us
Change Request
Report Issue/Bug
Team
Articles
Members
View the memberlist
Search For Members
Buddies
Login
Register
Omnimaga
»
Forum
»
Calculator Community
»
TI Calculators
»
TI-BASIC
»
[83+ BASIC] Compressors
« previous
next »
Print
Pages:
1
[
2
]
3
4
Go Down
Author
Topic: [83+ BASIC] Compressors (Read 14281 times)
0 Members and 1 Guest are viewing this topic.
kalan_vod
LV11
Super Veteran (Next: 3000)
Posts: 2715
Rating: +10/-0
[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.
Logged
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...
Logged
kalan_vod
LV11
Super Veteran (Next: 3000)
Posts: 2715
Rating: +10/-0
[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.
Logged
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
)
Logged
DJ Omnimaga
Clacualters are teh gr33t
CoT Emeritus
LV15
Omnimagician (Next: --)
Posts: 55943
Rating: +3154/-232
CodeWalrus founder & retired Omnimaga founder
[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?
Logged
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.
Logged
DJ Omnimaga
Clacualters are teh gr33t
CoT Emeritus
LV15
Omnimagician (Next: --)
Posts: 55943
Rating: +3154/-232
CodeWalrus founder & retired Omnimaga founder
[83+ BASIC] Compressors
«
Reply #21 on:
August 08, 2006, 12:37:00 pm »
i c, I'l stick to uncompressed then I think O_O
Logged
kalan_vod
LV11
Super Veteran (Next: 3000)
Posts: 2715
Rating: +10/-0
[83+ BASIC] Compressors
«
Reply #22 on:
August 08, 2006, 12:51:00 pm »
http://omnimaga.dyndns.org/index.php?showtopic=524
Logged
DJ Omnimaga
Clacualters are teh gr33t
CoT Emeritus
LV15
Omnimagician (Next: --)
Posts: 55943
Rating: +3154/-232
CodeWalrus founder & retired Omnimaga founder
[83+ BASIC] Compressors
«
Reply #23 on:
August 08, 2006, 12:57:00 pm »
YAYs
Logged
Dragon__lance
Guest
[83+ BASIC] Compressors
«
Reply #24 on:
August 08, 2006, 01:04:00 pm »
code! code! code!
Logged
kalan_vod
LV11
Super Veteran (Next: 3000)
Posts: 2715
Rating: +10/-0
[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!
I will release the code/demo once I iron out a few more things.
Logged
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)
Logged
Halifax
LV9
Veteran (Next: 1337)
Posts: 1334
Rating: +2/-1
[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.
Logged
There are 10 types of people in this world-- those that can read binary, and those that can't.
kalan_vod
LV11
Super Veteran (Next: 3000)
Posts: 2715
Rating: +10/-0
[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.
Logged
DJ Omnimaga
Clacualters are teh gr33t
CoT Emeritus
LV15
Omnimagician (Next: --)
Posts: 55943
Rating: +3154/-232
CodeWalrus founder & retired Omnimaga founder
[83+ BASIC] Compressors
«
Reply #29 on:
August 10, 2006, 02:18:00 am »
we should have a compression contest for 83+ BASIC
Logged
Print
Pages:
1
[
2
]
3
4
Go Up
« previous
next »
Omnimaga
»
Forum
»
Calculator Community
»
TI Calculators
»
TI-BASIC
»
[83+ BASIC] Compressors