Techious
http://www.techious.com/forums/

ChuChu Rocket!
http://www.techious.com/forums/viewtopic.php?f=8&t=7187
Page 2 of 3

Author:  azcn2503 [ Mon Nov 14, 2011 11:32 am ]
Post subject:  Re: ChuChu Rocket!

No. These are rips from the GBA version of the game hence why they are so small :(

My friend is going to make me something way more awesome! And much larger ;)

Author:  azcn2503 [ Tue Nov 15, 2011 9:08 am ]
Post subject:  Re: ChuChu Rocket!

Create mode is coming along very nicely. I made a lot of progress on it last night. Collision detection works on the walls. You can right click to place cats, and left click to place mice. You left click to cycle through up, right, down and left. You cannot currently place goals. Portal walls do not work. Resetting a level only remembers the location of the cats and mice at the point they were stopped, not their original location.

Once the above things have been fixed or implemented... it's ready to be play tested, stored on the server, and shared with friends!

It will be fun to make a level, set the initial score, then send it to your friends, only for them to beat your score by either killing more cats, doing it in less moves, getting more near misses with cats, or using less arrows!

Interesting... these guys never catch each other lol
Image

Author:  azcn2503 [ Thu Nov 17, 2011 9:23 am ]
Post subject:  Re: ChuChu Rocket!

Please try my new levels :)

Author:  azcn2503 [ Fri Nov 18, 2011 10:03 am ]
Post subject:  Re: ChuChu Rocket!

This should be getting more recognition.


Watch this video on Youtube.

Author:  azcn2503 [ Sun Nov 20, 2011 12:34 am ]
Post subject:  Re: ChuChu Rocket!

Every level from the original game has been uploaded.

No biggie.

Author:  azcn2503 [ Sun Nov 20, 2011 12:22 pm ]
Post subject:  Re: ChuChu Rocket!

I made some changes to the arrow breaking mechanics and also to collision detection this morning (been working on this since 9:30)

If you find any errors, please report them.

Author:  Skillers [ Sun Nov 20, 2011 2:46 pm ]
Post subject:  Re: ChuChu Rocket!

Suggestion: Add a "show solution" button to each level.

Author:  Si [ Sun Nov 20, 2011 2:55 pm ]
Post subject:  Re: Re: ChuChu Rocket!

Skillers wrote:
Suggestion: Add a "show solution" button to each level.


This is something we hope to add once the backend is working.

Author:  Scottie [ Sun Nov 20, 2011 5:25 pm ]
Post subject:  Re: ChuChu Rocket!

Skillers wrote:
Suggestion: Add a "show solution" button to each level.


>< >< >< >< >< >< >< >< >< >< ><

Author:  azcn2503 [ Mon Nov 21, 2011 2:06 am ]
Post subject:  Re: ChuChu Rocket!

Skillers wrote:
Suggestion: Add a "show solution" button to each level.


Maybe a 'show your solution' for after you've solved it an go back to it? ;)

Si and I were thinking of a hint system of some sort that might highlight certain grid squares, programmable by the creator of the level. Probably. A lot of the fun comes from the difficulty and I wouldnt want to override it too much.

Thanks for your suggestion!

Author:  Skillers [ Mon Nov 21, 2011 2:10 am ]
Post subject:  Re: ChuChu Rocket!

A general save function would be pretty cool aswell, but honestly, I often just want to see the solution :P

Author:  azcn2503 [ Mon Nov 21, 2011 8:47 am ]
Post subject:  Re: ChuChu Rocket!

It's almost therapeutic watching those mice.

I remember when I had this game on the Dreamcast, I would feel awesome when I finally completed a level I had been working on for ages. I hope it never loses that feeling.

Author:  DHR-107 [ Mon Nov 21, 2011 12:21 pm ]
Post subject:  Re: ChuChu Rocket!

azcn2503 wrote:
Skillers wrote:
Suggestion: Add a "show solution" button to each level.


Maybe a 'show your solution' for after you've solved it an go back to it? ;)

Si and I were thinking of a hint system of some sort that might highlight certain grid squares, programmable by the creator of the level. Probably. A lot of the fun comes from the difficulty and I wouldnt want to override it too much.

Thanks for your suggestion!


Should also be a horrifically unoptimised way of completing the level ;)

Author:  azcn2503 [ Mon Nov 21, 2011 1:47 pm ]
Post subject:  Re: ChuChu Rocket!

Haha :P

Author:  azcn2503 [ Mon Nov 21, 2011 6:49 pm ]
Post subject:  Re: ChuChu Rocket!

Update: a little thing hidden away in the code.
Load a level in create or classic, then press F12 for dev console (Chrome). Go to console and type in active.showTrail=1; then click Play. It's a bit ugly, but it shows you the grid squares your chuchu occupied as they went around the level. It might help for when you are making very complex custom levels!

Author:  azcn2503 [ Wed Nov 23, 2011 12:13 pm ]
Post subject:  Re: ChuChu Rocket!

Hello!

I added a few custom levels.

Also, you can place arrows in create mode.

You still can't save them though.

In fact, you can NEVER save them! Never ever! Muahahaha!

#thingstonotsaywhenyouwantpeopletouseyourstuff

Author:  azcn2503 [ Thu Nov 24, 2011 8:47 am ]
Post subject:  Re: ChuChu Rocket!

So, we identified an issue with arrow breaking last night that makes my arrow breaking function differently to the original game.

My arrow breaking code says that when an arrow breaks, it should still affect the movement of any cats passing over it in that same movement cycle.

The official code says that when an arrow breaks, there is a condition that will affect whether cats continue to move in the same direction, or to be affected by the pointing direction of the arrow. I believe this condition is as follows:

When a cat hits an arrow, it damages it. When another cat hits that arrow, it breaks it. This works fine in my code also.
But when two cats hit an arrow at the same time, it completely destroys it, and only those two cats destroying the arrow should be affected by the pointing direction of that arrow. Remaining cats should pass through the arrow as if it didn't exist.
But when one cat breaks an arrow by going in to a damaged arrow, the game should still continue to process movement for all cats passing over the arrow.

This would explain the differences in expected behaviour in official levels 89 and 91. In level 89 - it is possible to find a solution where 3 cats collide with an arrow at the same time. In the official game, one of the cats passes through and in to a rocket. In my game the cat is affected by the pointing direction of the broken arrow and you find a solution to the level. In level 91, in the official game, all 3 cats are affected by the direction of the broken arrow, which is correct, and exists in my code also, though it comes to that solution via slightly different means. This is because the arrow is broken by 1 cat instead of 2 at one time. I can only assume this is down to the whole "2 cats will instantly destroy an arrow, and 1 cat will break it but its power fades between 1 movement cycle and another, affecting all other cats in the same movement cycle" rule. If that is a rule.

This is obviously an advanced game mechanic and before I bother trying to put this in to code - I need someone with the official game to test how it should work for me to then reinterpret that in to my code. It would be interesting to find out what would happen when 2 cats collide with a damaged arrow at the same time as another cat coming from a direction that would not normally break the arrow hitting that arrow at the same time. Who would be directed where? Which ones would bounce back and which ones would go through it? Would the cat from the intersecting direction be affected by that broken/fading arrow because of this complex rule?

Author:  azcn2503 [ Thu Nov 24, 2011 2:36 pm ]
Post subject:  Re: ChuChu Rocket!

ChuChu Rocket! released on Android today with 500 levels :)

Author:  Harry [ Thu Nov 24, 2011 5:10 pm ]
Post subject:  Re: ChuChu Rocket!

WAIT WHAT

Author:  azcn2503 [ Thu Nov 24, 2011 5:41 pm ]
Post subject:  Re: ChuChu Rocket!

The real one :( not this shitty imitation ;)

Author:  Lord Metritutus [ Thu Nov 24, 2011 5:57 pm ]
Post subject:  Re: ChuChu Rocket!

azcn2503 wrote:
The real one :( not this shitty imitation ;)


Nah, your one is pretty cool. :)

Author:  azcn2503 [ Fri Nov 25, 2011 8:36 am ]
Post subject:  Re: ChuChu Rocket!

It will be a bigger product than the original, and provide more features :)

Lots of work to do yet though!

Author:  azcn2503 [ Fri Dec 09, 2011 11:45 am ]
Post subject:  Re: ChuChu Rocket!

This is better now.

Author:  azcn2503 [ Wed Feb 08, 2012 8:58 am ]
Post subject:  Re: ChuChu Rocket!

Hey all.

I've pretty much stopped working on CCR now until I get some feedback and suggestions. I'll be working on something else.

Author:  Lord Metritutus [ Thu Feb 09, 2012 3:54 pm ]
Post subject:  Re: ChuChu Rocket!

To be honest, I can't think of anything more you can do. ^^

Page 2 of 3 All times are UTC
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/