Computer Science Canada

PINBALL

Author:  neufelni [ Mon Jun 20, 2005 1:37 pm ]
Post subject:  PINBALL

This is a pinball game that I made for my final project in computor science class. It is pretty much complete. A few things are not working right yet, such as the high scores thing, but hopefully I can figure it all out soon. Here it is.

Author:  fehrge [ Tue Jun 21, 2005 11:06 am ]
Post subject: 

Nice game Nick. The blinking ball, and square is kind of annoying but it works. Nice credits but you should have use parameters for your wordfade procedure like this:

code:
procedure wordfade (words, words2 : string)
        for i : 17 .. 30
       
        Font.Draw (words, 400, 400, font1, i)
        Font.Draw (words2, 400, 400, fontc, i)
        delay (150)   
    end for
    delay (1000)
    for decreasing i : 30 .. 17
        Font.Draw (words, 400, 400, font1, i)
        Font.Draw (words2, 400, 400, fontc, i)
        delay (150)   
    end for
        Font.Draw (words, 400, 400, font1, 7)
        Font.Draw (words2, 400, 400, fontc, 7)
    delay (500)
end wordfade


and then to use it you just type this instead of using some variables:

code:

wordfade ("Designer","")   
wordfade ("","Nick Neufeld")

Author:  pro123 [ Thu Jun 23, 2005 7:53 pm ]
Post subject: 

A decent program, I agree with fehrge about the parameters. Parameters make something like that a lot easier.

Author:  Mr. T [ Mon Jun 27, 2005 9:01 pm ]
Post subject:  Alex's Opinion

work on the error proofing
i lost on the first level, and it still continued to the second Confused


: