Computer Science Canada jump lame game |
Author: | r.m_spy [ Sat Dec 01, 2007 12:16 pm ] | ||
Post subject: | jump lame game | ||
the variables mean nothing, And I do not know how to tag
|
Author: | Ultrahex [ Sat Dec 01, 2007 2:44 pm ] |
Post subject: | Re: jump lame game |
<b> The Good </b> Simple Idea for Game Easy To Play, other then that I am sorry to say there is not much. the rest is ideas if you wish to make your game play better, or the game overall more interactive with the user. <b> The Bad </b> Ontop of this, yes your variable names are terrible, and pointless delays at start are very annoying for people running your programming, they are waiting 5 seconds just to begin playing your game!, Also your not stating that your input has to be numbers at skip level, which is a hassle cause i had to look at your code to figure out what to type in. this is problem because you are not specifying valid input to that screen and not catching invalid input. Why not make a menu in which you select Play Game! or Enter Secret Code instead? There is also much more work that can be done on this game!, for instance: Powerups, Faster, Less Flicker, Smoother GamePlay! All of these can be easily accomplished by instead of using delays, you could use max frames per second. Oh and i forgot you didn't comment your code at all! <b> Leftover Issues </b> Tagging is simple!, all you must do is: [code] Your Code Here [/code] or if you want it syntax highlighted: [syntax="turing"] Turing Code Here [/syntax] |
Author: | r.m_spy [ Sat Dec 01, 2007 3:33 pm ] |
Post subject: | Re: jump lame game |
to poster thank you for your support. the programs I posted has already been created. [code] how it's done[code/] |
Author: | Saad [ Sat Dec 01, 2007 4:44 pm ] |
Post subject: | RE:jump lame game |
Just because a program has been created doesn't mean it can't be edited to reflect good programming techniques. |
Author: | LaZ3R [ Mon Dec 03, 2007 2:08 pm ] |
Post subject: | RE:jump lame game |
Don't make your user wait 5 seconds each time they want to play. In the turing help menu, search up View.Update. Any graphic based games in turing really need it as it prevents flickering from occuring on the screen. Much more easy on the eyes ![]() Also, you're code is practically impossible to debug for yourself should something go wrong. Use proc's... a lot of them. They are very helpful in so many ways and keep everything organized. You have a lot of repeating code as well, cases like those, once again, really prove you should be using procs. Keeps the code much smaller, much more effective, much easier to fix should something go wrong. |