Computer Science Canada Jorbalax's Tools/Etc |
Author: | Jorbalax [ Wed Apr 27, 2005 11:55 pm ] | ||||||
Post subject: | Jorbalax's Tools/Etc | ||||||
Just a couple tools/projects that I've created to help me work on a game and to get a better grasp of Turing and it's commands. ---Colour Grid--- I couldn't find a chart with all 256 color codes on it, so I made one. Notably laggy, and some of the colors return the same value since I used the whatdotcolor command.
---Multi-Ball Stream--- Working with classes and procedures to produce multiple balls bouncing around the screen. Edit the constants near the top to change Ball amount, size, and their speed (lower is faster).
---Simple Etch-a-Sketch Program--- Simple enough. Arrow keys to move, space bar resets.
More to come, I'm sure. [EDIT] Fixed Etch a Sketch program, I had accidently put an older version of it up. Also changed space character like suggested. |
Author: | jamonathin [ Thu Apr 28, 2005 8:24 am ] | ||
Post subject: | |||
Those are nice simple little progs. I'd definately work on that color prog.
And here's a little tip for your etch a sketch. Instead of using chr(32), you can simple use.... (' '). That work for any key that inserts a character. [ ('a') or ('t') or ('0') or (]') and so on ] Good work though. |
Author: | Shyfire [ Thu Apr 28, 2005 10:36 am ] | ||
Post subject: | |||
screen cord finder
|
Author: | jamonathin [ Thu Apr 28, 2005 11:18 am ] |
Post subject: | |
KISS, you can make one of those in 6 lines using mousewhere |
Author: | Jorbalax [ Thu Apr 28, 2005 10:59 pm ] | ||
Post subject: | |||
Simpler Color Code program. Notice the somewhat ackward location of the text on some of the circles. I'm assuming this is because the text is auto aligned to a colum/row. If someone knows a way to stop it from happening, please do tell.
|
Author: | prdukt [ Mon May 23, 2005 7:59 pm ] |
Post subject: | |
Nice Work |
Author: | Jorbalax [ Wed Jun 01, 2005 5:27 pm ] | ||||
Post subject: | |||||
Ah, I've been busy. Let's start with my newer, MUCH better, color grid. ---Colour Grid V2--- Again, uses whatdotcolor to determine color, so some values will return the same (7 and 248, for example).
---Record and Array Example--- A simple program that takes the age and name of members of a population. It then asks the user to select any age, and outputs the names of the individuals who are that age.
I have some more at school, I'll post them tomorrow. |