Author Topic: What Displays Faster?  (Read 3527 times)

0 Members and 1 Guest are viewing this topic.

Offline meishe91

  • Super Ninja
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2946
  • Rating: +115/-11
    • View Profile
    • DeviantArt
What Displays Faster?
« on: May 24, 2010, 02:57:02 am »
What displays faster when displaying something? The graph or homescreen? Or does it all depend on the code and circumstances? Just a little curious.
Spoiler For Spoiler:



For the 51st time, that is not my card! (Magic Joke)

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55941
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: What Displays Faster?
« Reply #1 on: May 24, 2010, 03:06:19 am »
in BASIC, homescreen text will show up about twice faster than large fonts on graph screen (Idk for OS 2.53MP) and small fonts slower than large ones. Line( will be much faster than drawing an entire line of pixel

large fonts being fast on graph screen is why people tend to go with text sprites or dual-layer ASCII nowadays

« Last Edit: May 24, 2010, 03:09:39 am by DJ Omnimaga »

Offline meishe91

  • Super Ninja
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2946
  • Rating: +115/-11
    • View Profile
    • DeviantArt
Re: What Displays Faster?
« Reply #2 on: May 24, 2010, 03:15:11 am »
So large font on homescreen (not that you can use little, that I know of haha) will display about twice as fast as on the graphscreen, and large font on the graphscreen will display faster than the small font? Is that right?
Spoiler For Spoiler:



For the 51st time, that is not my card! (Magic Joke)

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55941
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: What Displays Faster?
« Reply #3 on: May 24, 2010, 03:22:10 am »
yeah I always noticed homescreen stuff displays that much faster. Keep in mind I last tried on a 83+/83+SE running OS 1.14, though.. But yeah you are right. I think the small font issue is because they're variable width (such as spaces being 1 pixel wide, lowercase m and w taking 6 pixels width, i and ! being two pixels wide and other stuff. I am not sure but I wouldn't be surprised if this took much processing power by TI's text routine.

Offline meishe91

  • Super Ninja
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2946
  • Rating: +115/-11
    • View Profile
    • DeviantArt
Re: What Displays Faster?
« Reply #4 on: May 24, 2010, 03:25:33 am »
Ah ok, gotcha, thanks.

Side Question:
I didn't want to make another topic since I just created this one so I'm just gonna ask another question here real fast. Is there any way to check what token is being displayed at a certain position on the homescreen, in BASIC?
Ex: Say "!" is being displayed at (3,5), is there any way to check that position and see what is there? (In this case a "!.")
I thought I remembered seeing a way how to do it somewhere but I can't remember to save my life right now where, or even if, I saw it.
« Last Edit: May 24, 2010, 03:43:52 am by meishe91 »
Spoiler For Spoiler:



For the 51st time, that is not my card! (Magic Joke)

Offline Silver Shadow

  • Beta Tester
  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 817
  • Rating: +27/-7
    • View Profile
Re: What Displays Faster?
« Reply #5 on: May 24, 2010, 04:26:54 am »
In BASIC, you can't.
Former Coder of Tomorrow


Offline ztrumpet

  • The Rarely Active One
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5712
  • Rating: +364/-4
  • If you see this, send me a PM. Just for fun.
    • View Profile
Re: What Displays Faster?
« Reply #6 on: May 24, 2010, 06:53:32 am »
Keep in mind I last tried on a 83+/83+SE running OS 1.14, though..
DJ, the same thing's true on my 83+se 1.19 and 84+se 2.43, so I think it's that way on all the calcs. :D

Offline {AP}

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 981
  • Rating: +74/-3
  • I am Webmaster!
    • View Profile
    • Removed From Game
Re: What Displays Faster?
« Reply #7 on: May 24, 2010, 10:23:49 am »
Ah ok, gotcha, thanks.

Side Question:
I didn't want to make another topic since I just created this one so I'm just gonna ask another question here real fast. Is there any way to check what token is being displayed at a certain position on the homescreen, in BASIC?
Ex: Say "!" is being displayed at (3,5), is there any way to check that position and see what is there? (In this case a "!.")
I thought I remembered seeing a way how to do it somewhere but I can't remember to save my life right now where, or even if, I saw it.

Well, it's not exactly 'checking the position on the homescreen' it's 'checking a matrix or string' depending on which way you choose to store the map. I personally prefer matrices since they're easier but they will take up more space than strings. (and might be slower too... I forget)

But yeah, depending on how you handle maps, there's different methods for checking what's at what position on the screen.

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55941
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: What Displays Faster?
« Reply #8 on: May 24, 2010, 12:51:28 pm »
matrices are faster but they're considerably larger, especially when stored

Offline meishe91

  • Super Ninja
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2946
  • Rating: +115/-11
    • View Profile
    • DeviantArt
Re: What Displays Faster?
« Reply #9 on: May 24, 2010, 02:48:51 pm »
In BASIC, you can't.

Damn it, must've been imagining it then.

Ah ok, gotcha, thanks.

Side Question:
I didn't want to make another topic since I just created this one so I'm just gonna ask another question here real fast. Is there any way to check what token is being displayed at a certain position on the homescreen, in BASIC?
Ex: Say "!" is being displayed at (3,5), is there any way to check that position and see what is there? (In this case a "!.")
I thought I remembered seeing a way how to do it somewhere but I can't remember to save my life right now where, or even if, I saw it.

Well, it's not exactly 'checking the position on the homescreen' it's 'checking a matrix or string' depending on which way you choose to store the map. I personally prefer matrices since they're easier but they will take up more space than strings. (and might be slower too... I forget)

But yeah, depending on how you handle maps, there's different methods for checking what's at what position on the screen.

Well I actually meant to check what token is actually there without knowing what it is. Not having a matrix or something with a predetermined set of tokens used and such.

Thanks though guys :)
« Last Edit: May 24, 2010, 02:49:02 pm by meishe91 »
Spoiler For Spoiler:



For the 51st time, that is not my card! (Magic Joke)

Offline jsj795

  • LV9 Veteran (Next: 1337)
  • *********
  • Posts: 1105
  • Rating: +84/-3
    • View Profile
Re: What Displays Faster?
« Reply #10 on: May 24, 2010, 03:44:45 pm »
On graph screen, it might be possible, using pixel check, although the program that checks this will be pretty big and slow...
On homescreen, I can't think of any ways that would achieve this :(


Spoiler For funny life mathematics:
1. ROMANCE MATHEMATICS
Smart man + smart woman = romance
Smart man + dumb woman = affair
Dumb man + smart woman = marriage
Dumb man + dumb woman = pregnancy
2. OFFICE ARITHMETIC
Smart boss + smart employee = profit
Smart boss + dumb employee = production
Dumb boss + smart employee = promotion
Dumb boss + dumb employee = overtime
3. SHOPPING MATH
A man will pay $2 for a $1 item he needs.
A woman will pay $1 for a $2 item that she doesn't need.
4. GENERAL EQUATIONS & STATISTICS
A woman worries about the future until she gets a husband.
A man never worries about the future until he gets a wife.
A successful man is one who makes more money than his wife can spend.
A successful woman is one who can find such a man.
5. HAPPINESS
To be happy with a man, you must understand him a lot and love him a little.
To be happy with a woman, you must love her a lot and not try to understand her at all.
6. LONGEVITY
Married men live longer than single men do, but married men are a lot more willing to die.
7. PROPENSITY TO CHANGE
A woman marries a man expecting he will change, but he doesn't.
A man marries a woman expecting that she won't change, and she does.
8. DISCUSSION TECHNIQUE
A woman has the last word in any argument.
Anything a man says after that is the beginning of a new argument.

Girls = Time * Money (Girls are a combination of time and money)
Time = Money (Time is money)
Girls = Money squared (So, girls are money squared)
Money = sqrt(Evil) (Money is also the root of all evil)
Girls = sqrt(Evil) squared (So, girls are the root of all evil squared)
Girls = Evil (Thus, girls are evil)
*Girls=Evil credit goes to Compynerd255*

Offline meishe91

  • Super Ninja
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2946
  • Rating: +115/-11
    • View Profile
    • DeviantArt
Re: What Displays Faster?
« Reply #11 on: May 24, 2010, 03:46:05 pm »
Hmmm, ok. Thanks.
Spoiler For Spoiler:



For the 51st time, that is not my card! (Magic Joke)

Offline ztrumpet

  • The Rarely Active One
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5712
  • Rating: +364/-4
  • If you see this, send me a PM. Just for fun.
    • View Profile
Re: What Displays Faster?
« Reply #12 on: May 24, 2010, 04:08:58 pm »
I can think of a really easy way to do this in asm (or Axe), but it's impossible in basic. =/

Offline meishe91

  • Super Ninja
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2946
  • Rating: +115/-11
    • View Profile
    • DeviantArt
Re: What Displays Faster?
« Reply #13 on: May 24, 2010, 04:15:39 pm »
Well dang. Oh well. I think I figured out what I need to do for what I was asking this for anyways, but thanks O0
Spoiler For Spoiler:



For the 51st time, that is not my card! (Magic Joke)