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
»
Strings>lists [BASIC variables]
« previous
next »
Print
Pages: [
1
]
2
Go Down
Author
Topic: Strings>lists [BASIC variables] (Read 4526 times)
0 Members and 2 Guests are viewing this topic.
TIfanx1999
ಠ_ಠ ( ͡° ͜ʖ ͡°)
CoT Emeritus
LV13
Extreme Addict (Next: 9001)
Posts: 6173
Rating: +191/-9
Strings>lists [BASIC variables]
«
on:
September 30, 2007, 12:55:00 pm »
Why is it that strings are so much smaller than Lists or matrices with the same number of elements, does anyone know? strings are like 10 times more efficent! What gives?
Logged
Insanity
Guest
Strings>lists [BASIC variables]
«
Reply #1 on:
September 30, 2007, 12:58:00 pm »
Because lists' elements are either real numbers which use about 12 bytes each or complex numbers that use 18 bytes each (I think).
Strings only use one byte per character (unless the caracter is a two-byte token).
Logged
DJ Omnimaga
Clacualters are teh gr33t
CoT Emeritus
LV15
Omnimagician (Next: --)
Posts: 55943
Rating: +3154/-232
CodeWalrus founder & retired Omnimaga founder
Strings>lists [BASIC variables]
«
Reply #2 on:
September 30, 2007, 01:02:00 pm »
which is why some people prefer to use strings for tilemaps. It's much faster to render than matrices or lists when using text based sprites art but it's slower for graphical sprite art (you need to use xLIB to get 0.01 second rendering)
Logged
magicdanw
LV1
Newcomer (Next: 20)
Posts: 6
Rating: +0/-0
Strings>lists [BASIC variables]
«
Reply #3 on:
September 30, 2007, 01:41:00 pm »
I saw an interesting solution to this problem of fast graphical sprites, over at unitedti. I forget who posted it, but the idea was to create an Omnicalc font that includes the sprites you want to display, and install the font before running the game. That way, the sprites can be displayed like normal characters.
Logged
Radical Pi
LV9
Veteran (Next: 1337)
Posts: 1143
Rating: +5/-2
Strings>lists [BASIC variables]
«
Reply #4 on:
September 30, 2007, 02:15:00 pm »
QuoteBegin-magicdanw+1 Oct, 2007, 0:41-->
QUOTE
(magicdanw @ 1 Oct, 2007, 0:41)
I saw an interesting solution to this problem of fast graphical sprites, over at unitedti. I forget who posted it, but the idea was to create an Omnicalc font that includes the sprites you want to display, and install the font before running the game. That way, the sprites can be displayed like normal characters.
I was going to do that for my dead Super Mario ASCII...
Logged
One of these days I'll get a sig I'm really proud of.
DJ Omnimaga
Clacualters are teh gr33t
CoT Emeritus
LV15
Omnimagician (Next: --)
Posts: 55943
Rating: +3154/-232
CodeWalrus founder & retired Omnimaga founder
Strings>lists [BASIC variables]
«
Reply #5 on:
September 30, 2007, 02:25:00 pm »
yeah Omnicalc font is a good idea, but the problem is that they take lot of RAM and Omnicalc make BASIC programs slow down to 75% of their normal speed just when installed. I find dual layered ASCII (using two fonts at once for tiles) to be more efficient nowadays, on top of that it's pure BASIC
Logged
TIfanx1999
ಠ_ಠ ( ͡° ͜ʖ ͡°)
CoT Emeritus
LV13
Extreme Addict (Next: 9001)
Posts: 6173
Rating: +191/-9
Strings>lists [BASIC variables]
«
Reply #6 on:
September 30, 2007, 02:52:00 pm »
ok,that makes sense. Why would strings cause a slow down when used with sprites instead of text though?
Logged
Harrierfalcon
Guest
Strings>lists [BASIC variables]
«
Reply #7 on:
September 30, 2007, 02:58:00 pm »
Because either you have to hard-code each sprite, or use some other string-to-sprite method.
If it's text, you can just output the string directly to screen.
[self-centered]
A good example is
http://www.ticalc.org/archives/files/fileinfo/401/40108.html
: It uses strings, not matrices, for each map. You'll notice the maps load faster than most tilemapped pure Basic game.
[/self-centered]
Logged
DJ Omnimaga
Clacualters are teh gr33t
CoT Emeritus
LV15
Omnimagician (Next: --)
Posts: 55943
Rating: +3154/-232
CodeWalrus founder & retired Omnimaga founder
Strings>lists [BASIC variables]
«
Reply #8 on:
September 30, 2007, 03:01:00 pm »
Using strings with a graphical map editor is slow because there's no assembly program to do it instantly (xLIB only deal with matrices). And when using Metroid Pi style you can display an entire horizontal line of sprites at once, so it takes one second to render with dual layer ASCII sprites. With simple ASCII like in Tifreak8x RPG starter kit (which you should really check btw) it take less than a second so on a SE calc you can even have scrolling map
Logged
TIfanx1999
ಠ_ಠ ( ͡° ͜ʖ ͡°)
CoT Emeritus
LV13
Extreme Addict (Next: 9001)
Posts: 6173
Rating: +191/-9
Strings>lists [BASIC variables]
«
Reply #9 on:
September 30, 2007, 03:11:00 pm »
Ahh its a shame xlib doesnt support strings
. ANy idea what kind of speed you'd get on an 83+ BE? I dont have an se. I'm also unsure of what u mean by "dual layer" Do you mean it continusly alternates between 2 differnt sprites in order to create a diffrent looking sprite?
Logged
DJ Omnimaga
Clacualters are teh gr33t
CoT Emeritus
LV15
Omnimagician (Next: --)
Posts: 55943
Rating: +3154/-232
CodeWalrus founder & retired Omnimaga founder
Strings>lists [BASIC variables]
«
Reply #10 on:
September 30, 2007, 03:21:00 pm »
on BE it's almost instant with xlib and matrices, 2-30 seconds with xLIB and strings (have to draw each sprites one by one and deal with several If:Then:Else:End), 1 second with pure BASIC and dual layer, 5 or 6 seconds with pure BASIC and matrices
DUal layer means you display a map (it only works fine with strings), store it to let says Pic0, then display the map using another string (generally all walk onable areas are white and those you cannot walk on are a different wall tile) and then you recall Pic0 and store it again. It can create nice results sometimes.
Logged
TIfanx1999
ಠ_ಠ ( ͡° ͜ʖ ͡°)
CoT Emeritus
LV13
Extreme Addict (Next: 9001)
Posts: 6173
Rating: +191/-9
Strings>lists [BASIC variables]
«
Reply #11 on:
September 30, 2007, 03:32:00 pm »
so it allows you to create unique non text looking tiles using ascii text?
Logged
DJ Omnimaga
Clacualters are teh gr33t
CoT Emeritus
LV15
Omnimagician (Next: --)
Posts: 55943
Rating: +3154/-232
CodeWalrus founder & retired Omnimaga founder
Strings>lists [BASIC variables]
«
Reply #12 on:
September 30, 2007, 04:08:00 pm »
yep, there's lot of combination possible. Vuurrobin is currrently working on a map editor allowing combination of various ASCII chars so it's easier to use
Logged
Harrierfalcon
Guest
Strings>lists [BASIC variables]
«
Reply #13 on:
September 30, 2007, 04:22:00 pm »
QuoteBegin-art_of_camelot+30 Sep, 2007, 21:32-->
QUOTE
(art_of_camelot @ 30 Sep, 2007, 21:32)
so it allows you to create unique non text looking tiles using ascii text?
Sounds like you didn't look at Metroid Pi
.
No, it's alright. Just click on that link--everything (that isn't moving) you see in the animated screenshot is Dual-layer ASCII.
Logged
DJ Omnimaga
Clacualters are teh gr33t
CoT Emeritus
LV15
Omnimagician (Next: --)
Posts: 55943
Rating: +3154/-232
CodeWalrus founder & retired Omnimaga founder
Strings>lists [BASIC variables]
«
Reply #14 on:
September 30, 2007, 04:31:00 pm »
Hmm actually wasn't Samus dual layer ASCII too? I remember you could see her gun and had 2 directional sprite.
Logged
Print
Pages: [
1
]
2
Go Up
« previous
next »
Omnimaga
»
Forum
»
Calculator Community
»
TI Calculators
»
TI-BASIC
»
Strings>lists [BASIC variables]