Simple & Robust OOP vs Performance

Started by
2 comments, last by swiftcoder 11 years, 7 months ago
Good day peeps,

I'm going to talk about a project I started, a 2D Game, aimed for Android 2.2 and above, OpenGL ES 2.0, and being coded with the default Android Java SDK (up-to date), rather than the NDK framework.

Ever since I started developing a platform RPG game, I took special care of the micro code optimization, because I felt it would have a big impact in the long term, specially because It's a serious project, involving help from other designers and creative guys;

In terms of performance, before micro-code-optimizing, the experts say that you should profile your game, and keep measuring it on real devices in order to see where your bottleneck really is.

In my experience, and please flame me if you feel I'm wrong, for a time consuming and serious project, this is not 100% true, since you spend time developing tools for other guys to work within your engine framework, and layout the way Bitmaps should be drawn in order to be used as textures (standardizing them), and most of the time you need to save time by optimizing parts of the code (assuming you have a good code design) by the very beginning, in parts where you do know that you will have a performance boost

(I.E. reducing the possibilities for the Garbage Collector to run)


As a project leader and coder, I have realized that in the end is better to have a robust and well designed Class, rather than an "optimized" all-in class.


For instance, I had a class called:

Monster
That had 100 methods

Sure it had a lot of micro optimization inside those methods (good bye readability, I know, good practices, still!!)



But after some time, I figured out that iwas better to have a class:

Monster
With 5 methods, and 3 objects inside
MonsterAttackModule
MonsterAIModule
MonsterBodyModule



With the second case, I still have some micro code optimization, more readability, but more objects
That's more memory, isn't it?



So my point is that in the end is better to have a balance of readability, and a robust OOP Code, micro-code optimize up and there, and profile as experts says, making the original sentence, not completely true, right? smile.png


What you guys think?
Advertisement
Basically you summed it up.

Language features do have a cost, you need to be aware of those costs.

Make it work (first pass development). Make it work well (debug). Then make it work fast (optimize). In that order.


You point out in your example that you were able to fit a tiny bit more data into your game. But what is the cost? It takes longer to develop initially, is more difficult to debug, and more time consuming to maintain.

You need to know and understand the tradeoff. Is the very slight reduction of gameplay performance worth the cost to develop the software? That's a business decision, but generally the tradeoff is made in favor of faster/cheaper development.

For example, virtual functions were scoffed when they were introduced in the 1980s. People (correctly) pointed out their performance cost, and (incorrectly) calculated the performance cost as though every function were virtual. Hopefully it is obvious that it is unwise to make every function virtual because there is overhead (roughly 15ns per function call on current hardware), but that doesn't mean virtual functions are bad. Used properly virtual functions solve a problem and generally offer better performance than trying to write your own solution.

Know the cost and use the feature properly.



you need to save time by optimizing parts of the code (assuming you have a good code design) by the very beginning, in parts where you do know that you will have a performance boost


Knuth's saying was that premature optimization is the root of all evil. Wait until you have written it and profiled it before changing it, and make sure you measure afterword to verify your changes improved things.

But that doesn't mean you should intentionally write pessimistic code when you know something is performance-intensive. If you know something will be resource heavy you should plan for it accordingly. That is NOT a premature optimization.

Basically you summed it up.

Language features do have a cost, you need to be aware of those costs.

Make it work (first pass development). Make it work well (debug). Then make it work fast (optimize). In that order.


You point out in your example that you were able to fit a tiny bit more data into your game. But what is the cost? It takes longer to develop initially, is more difficult to debug, and more time consuming to maintain.

You need to know and understand the tradeoff. Is the very slight reduction of gameplay performance worth the cost to develop the software? That's a business decision, but generally the tradeoff is made in favor of faster/cheaper development.

For example, virtual functions were scoffed when they were introduced in the 1980s. People (correctly) pointed out their performance cost, and (incorrectly) calculated the performance cost as though every function were virtual. Hopefully it is obvious that it is unwise to make every function virtual because there is overhead (roughly 15ns per function call on current hardware), but that doesn't mean virtual functions are bad. Used properly virtual functions solve a problem and generally offer better performance than trying to write your own solution.

Know the cost and use the feature properly.


[quote name='rockseller' timestamp='1346948618' post='4977256']
you need to save time by optimizing parts of the code (assuming you have a good code design) by the very beginning, in parts where you do know that you will have a performance boost


Knuth's saying was that premature optimization is the root of all evil. Wait until you have written it and profiled it before changing it, and make sure you measure afterword to verify your changes improved things.

But that doesn't mean you should intentionally write pessimistic code when you know something is performance-intensive. If you know something will be resource heavy you should plan for it accordingly. That is NOT a premature optimization.
[/quote]


I agree. And I assume you code in C# :)
Please don't cross-post. I'm leaving the other one open, any further discussion should occur there.

Tristam MacDonald. Ex-BigTech Software Engineer. Future farmer. [https://trist.am]

This topic is closed to new replies.

Advertisement