Omnimaga

Calculator Community => Major Community Projects => The Axe Parser Project => Topic started by: geekygenius on March 08, 2012, 01:13:13 am

Title: The Matrix
Post by: geekygenius on March 08, 2012, 01:13:13 am
So, I'm new to this whole Axe thing, and I really like it. I am working on "Calculator hero" right now, but I stumbled across a pretty convincing way to "create the matrix". Its my first finished Axe program, and its so small I won't post a download either. You would probablly want to change some of it to your liking anyways.  :P
Code: [Select]
:.Matrix
:Repeat getkey(15)
:For(A,0,15)
:Disp rand|>Char
:Pause 50
:End
:Pause 200
:End
The Pause 50 is the speed of the characters appearing on a line, and the Pause 200 is the speed of the lines. Feel free to use it as you want, and constructive criticism is greatly appreciated. ;)
Title: Re: The Matrix
Post by: kindermoumoute on March 08, 2012, 07:04:59 am
Is the matrix not composed it as 1 and 0? ;)
Title: Re: The Matrix
Post by: Stryars on March 09, 2012, 12:43:25 am
Funny :)
But you should try it with just one line (who generate itself sometimes randomly in the code), and then use some StoreGDB, Vertical + and Dispgraph, it will probably go faster...
Title: Re: The Matrix
Post by: Hayleia on March 09, 2012, 12:53:38 am
Funny :)
But you should try it with just one line (who generate itself sometimes randomly in the code), and then use some StoreGDB, Vertical + and Dispgraph, it will probably go faster...
If he wanted it to be faster, he would remove the Pauses ;)
Title: Re: The Matrix
Post by: geekygenius on March 09, 2012, 12:55:02 am
Lol. I want to make this some kind of side project, where I may know how to do something, but I wait until I think of a simple way to do it. Hopefully, it will have individual lines of scrolling text going downwards, but I might invest in a vertical statement somewhere... :D
Title: Re: The Matrix
Post by: leafy on March 09, 2012, 03:40:53 am
I've always wanted to give this a shot - I'll see what I can do :D
Title: Re: The Matrix
Post by: hellninjas on March 09, 2012, 11:14:57 am
So, I'm new to this whole Axe thing, and I really like it. I am working on "Calculator hero" right now, but I stumbled across a pretty convincing way to "create the matrix". Its my first finished Axe program, and its so small I won't post a download either. You would probablly want to change some of it to your liking anyways.  :P
Code: [Select]
:.Matrix
:Repeat getkey(15)
:For(A,0,15)
:Disp rand|>Char
:Pause 50
:End
:Pause 200
:End
The Pause 50 is the speed of the characters appearing on a line, and the Pause 200 is the speed of the lines. Feel free to use it as you want, and constructive criticism is greatly appreciated. ;)

Nvm got it ;D

Also, very cool, im glad your learning!