Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Spyro543

Pages: 1 ... 41 42 [43] 44 45 ... 81
631
Computer Projects and Ideas / Re: Fluid simulation in Game Maker
« on: November 03, 2011, 03:09:20 pm »
I could compile it into an exe for ya. i have the full 8.1 version.
Thanks! For some reason, GM 8.1 won't accept my license I paid for...

632
TI-Nspire / Re: [lua] Logo interpreter
« on: November 02, 2011, 03:16:44 pm »
How about the mode I suggested where you can see the turtle move and draw the pattern instead of the pattern just appearing?

633
Computer Projects and Ideas / Re: Fluid simulation in Game Maker
« on: November 02, 2011, 06:21:42 am »
Here it is DJ http://ourl.ca/4279/169816 :D It's part of the physics lessons tutorials.  And nice implementation!  It seems you stumbled upon the same set of rules that I used! ^^
Yeah I actually used your cellular automata tutorials to make this ^_^

634
Computer Projects and Ideas / Fluid simulation in Game Maker
« on: November 01, 2011, 04:49:01 pm »
New Version 2 out. Click here

I made a very simple fluid simulation in Game Maker:

Link to video

Here's the source: http://anova.57o9.org/junk/fluid.gm81

The controls are: click to place a wall block, right click to release water, Shift to erase whatever is currently under the mouse, Delete to erase everything, and Enter to make a water pump that continually releases water.

The cellular automata rules are very simple:
1. If space to left empty: move left
2. If space to right empty: move right
3. If both left and right spaces are empty: randomly move either left or right
4. If space below empty: move down

Here's the code I used to simulate the water physics:
Code: [Select]
if position_empty(x,y+6)
{
y = y + 6;
exit
}
if position_empty(x+6,y) and position_empty(x-6,y)
{
randrange = irandom_range(1,2);
if randrange = 1 {x += 6};
if randrange = 2 {x -= 6};
exit
}
if position_empty(x+6,y)
{
x += 6
exit
}
if position_empty(x-6,y)
{
x -= 6
exit
}

I know I need to add a toolbar or a little box that shows the commands you can use in the next release. Besides this, any other suggestions or comments?

635
General Calculator Help / Re: Ndless 3.0 for Nspire
« on: October 26, 2011, 08:02:40 pm »
TI's actions are why some people in the past started projects such as DreamCalc, UberGraphX and OTCalc, in attempt to offer a powerful calc for less than what TI charges for their calcs and with more freedom for programming. However such project is a major undertaking, which is why all of them usually die, and breaking TI's monopoly would be next to impossible.
I'm still working on it, I just have never posted about it (hellllloooo, topic, where do you goooo?) and btw I might change the name since there's already something called Dreamcalc.

636
News / Re: Reflash your Nspire Boot2 without RS232!!!
« on: October 25, 2011, 03:14:53 pm »
I know how the boot2 is important, but what's the boot1 good for for us?

637
Other / XBMC re-purposed my netbook
« on: October 21, 2011, 06:58:52 pm »
I got a netbook a little less then a year ago...and it died.

I then got a new laptop a few months ago (a really good one, too).

I now have this netbook sitting there, taking up space and not doing anything....
So I got the XBMC Live version and installed it to my netbook. It is now a large MP3 player!!!

XBMC 10.1 .ISO file (Warning: 414MB)

Here are some random pics:
Sorry about picture quality, these were taken with my phone.

638
Humour and Jokes / Re: Dilbert: "We could only program with 0s"
« on: October 18, 2011, 05:19:36 pm »
The error handler will then beam you into the Tron world
* Spyro543 starts smashing the 0 key
Wait - Original Tron world or Tron Legacy world? And if Tron Legacy, is it Pre-CLU or Post-CLU?

639
Casio PRIZM / Re: Stock Craze: a casio game
« on: October 18, 2011, 05:06:53 pm »
If there's room add SPYR or S543.

640
Computer Projects and Ideas / Re: My browser based game building platform
« on: October 17, 2011, 04:59:29 pm »
Wow...this is amazing. Chain Reaction is my favorite game on there :P I don't know if I'll ever learn the language though.

641
Other / Re: Windows 1.01 running on a VM
« on: October 15, 2011, 10:17:15 am »
The drop down menus are so weird. You have to click, hold on, move the mouse over the thing you want, then release the mouse.

642
Other / Windows 1.01 running on a VM
« on: October 14, 2011, 07:10:39 pm »
I found an ISO of Windows 1.01 on the Internet. Sorry, but it is against Omnimaga rules to link to it.

I ran it on a VM, and it works!
Here's a video of it:

643
Miscellaneous / Re: What is your avatar?
« on: October 10, 2011, 05:25:37 pm »
Yay my avatar is both basic and non-stunning!

644
Gaming Discussion / New free software title for DSi
« on: October 10, 2011, 03:07:38 pm »
There is a new free software title released in the DSi Shop - The Legend of Zelda Four Swords has been released for free because it is the 25th anniversary of Zelda. This item will be free until February 20, 2012. It is 112 blocks.

645
TI Z80 / Re: Fantastic Sam is Fantastic
« on: October 03, 2011, 04:46:59 pm »
You should have a limited jetpack fuel that recharges over time or as you get packets.

Pages: 1 ... 41 42 [43] 44 45 ... 81