Page 1 of 1

Is there any disadvantage of using interface's

Posted: Sat Dec 13, 2003 7:27 pm
by Archaikz
Like speed wise. If I was gonna use them in a main loop would that slow down the game at all.(Noticable speed decrease) Just wandering. Thanks for any help.

Posted: Sun Dec 14, 2003 8:45 am
by Danilo
All big games on market are written with C++ these days
because of the object orientation.
Of course a Pentium 133 is too slow for this games, but every
"normal" computer (1GHz+) with a good graphics card ist OK,
because the graphics card makes much of the graphical work
in hardware.

You dont get a "Noticable speed decrease" if your game is designed
correctly.
If you didnt code correctly, game speed slows down also if you
dont use OOP.

I´ve heared people saying PB is slow on displaying 1 sprite,
where you can display 500 smoothly. :lol:

Go with OOP, you´ll see its much better to maintain and to read -
especially in big projects.