Author Topic: Wat *.*  (Read 5386 times)

0 Members and 1 Guest are viewing this topic.

Offline ClrDraw

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 627
  • Rating: +61/-2
    • View Profile
    • GitHub
Re: Wat *.*
« Reply #15 on: April 10, 2014, 08:21:09 pm »
Tha would be cool. I could have options for different screen savers and include a random option.
Visit my GitHub for all my TI programs as well as other projects.
Also check out my website.

Offline Lunar Fire

  • LV3 Member (Next: 100)
  • ***
  • Posts: 66
  • Rating: +7/-1
  • I'll be watching you from the shadows
    • View Profile
    • My Tumblr
Re: Wat *.*
« Reply #16 on: April 10, 2014, 08:25:34 pm »
And people could select the screensaver they want, or have different screensaver depending on the time of the day, or have them switch sequentially.

The possibilities are endless.
« Last Edit: April 10, 2014, 09:05:06 pm by Lunar Fire »
Your drill is the drill that will pierce the heavens!

Offline ClrDraw

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 627
  • Rating: +61/-2
    • View Profile
    • GitHub
Re: Wat *.*
« Reply #17 on: April 10, 2014, 09:02:23 pm »
Wallpaper?
Visit my GitHub for all my TI programs as well as other projects.
Also check out my website.

Offline Lunar Fire

  • LV3 Member (Next: 100)
  • ***
  • Posts: 66
  • Rating: +7/-1
  • I'll be watching you from the shadows
    • View Profile
    • My Tumblr
Re: Wat *.*
« Reply #18 on: April 10, 2014, 09:06:02 pm »
Huh, sorry I meant screensaver. That's fixed now.  XD
Your drill is the drill that will pierce the heavens!

Offline ClrDraw

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 627
  • Rating: +61/-2
    • View Profile
    • GitHub
Re: Wat *.*
« Reply #19 on: April 10, 2014, 09:07:21 pm »
Oh lol :P I could totally do that. I don't know how to do the timer though... I only know Axe.
Visit my GitHub for all my TI programs as well as other projects.
Also check out my website.

Offline Runer112

  • Moderator
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2289
  • Rating: +639/-31
    • View Profile
Re: Wat *.*
« Reply #20 on: April 10, 2014, 10:09:11 pm »
That last screenshot reminds me of my origins with Axe... I was a legitimate noob back then!

Offline Xeda112358

  • they/them
  • Moderator
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 4704
  • Rating: +719/-6
  • Calc-u-lator, do doo doo do do do.
    • View Profile
Re: Wat *.*
« Reply #21 on: April 10, 2014, 10:40:05 pm »
Hmm, why don't you simplify the math to A*16 and B*16 respectively? It would be faster and smaller, I think, unless Axe auto-simplifies? (multiplication by a power of 2 is a pretty cheap operation).

Offline TIfanx1999

  • ಠ_ಠ ( ͡° ͜ʖ ͡°)
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 6173
  • Rating: +191/-9
    • View Profile
Re: Wat *.*
« Reply #22 on: April 11, 2014, 08:40:56 am »
Very nice stuff! ^^

Offline Sorunome

  • Fox Fox Fox Fox Fox Fox Fox!
  • Support Staff
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 7920
  • Rating: +374/-13
  • Derpy Hooves
    • View Profile
    • My website! (You might lose the game)
Re: Wat *.*
« Reply #23 on: April 11, 2014, 12:00:29 pm »
Those gifs look pretty awesome o.o

THE GAME
Also, check out my website
If OmnomIRC is screwed up, blame me!
Click here to give me an internet!

Offline ClrDraw

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 627
  • Rating: +61/-2
    • View Profile
    • GitHub
Re: Wat *.*
« Reply #24 on: April 11, 2014, 06:25:52 pm »
Quote
Hmm, why don't you simplify the math to A*16 and B*16 respectively? It would be faster and smaller, I think, unless Axe auto-simplifies? (multiplication by a power of 2 is a pretty cheap operation).
Ah, I didn't notice that. Fixed.

And thanks everyone :)
Visit my GitHub for all my TI programs as well as other projects.
Also check out my website.

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: Wat *.*
« Reply #25 on: April 11, 2014, 11:28:21 pm »

(I suck at WabbitEmu settings)

Code: [Select]
.WTF
DiagnosticOff
#ExprOn
Full
ClrDraw
StorePic
While 1
For(C,1,40)
RecallPic
For(A,0,6)
For(B,0,4)
If (A^2) and (B^2)
RectI(A*16-(C*2),B*14-(C),C*4,C*2)
Else
RectI(A*16-(C),B*14-(C*2),C*2,C*4)
End
End
End
DispGraph
If getKey(41)
Pause 1000
End
ReturnIf getKey(15)
!If C^20
StorePic
End
End
End
This one reminds me the thing that Runer112 did in early 2010 with lines. It looks quite cool btw :D

Offline willrandship

  • Omnimagus of the Multi-Base.
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2953
  • Rating: +98/-13
  • Insert sugar to begin programming subroutine.
    • View Profile
Re: Wat *.*
« Reply #26 on: April 12, 2014, 12:54:39 am »
If you could make an interrupt-safe version of this, you could potentially hook it to the APD hook, then have a timer in it that runs its own power down.

Offline ClrDraw

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 627
  • Rating: +61/-2
    • View Profile
    • GitHub
Re: Wat *.*
« Reply #27 on: April 12, 2014, 05:11:55 pm »
Thanks DJ :)

@willrandship: yeah, but this is Axe.
Visit my GitHub for all my TI programs as well as other projects.
Also check out my website.

Offline willrandship

  • Omnimagus of the Multi-Base.
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2953
  • Rating: +98/-13
  • Insert sugar to begin programming subroutine.
    • View Profile
Re: Wat *.*
« Reply #28 on: April 18, 2014, 12:17:54 am »
if you can make it only use safe RAM, no variables ever, it should be interrupt-safe. Then beg thepenguin to hook it for you :P