Jump to content

  • Log In with Google      Sign In   
  • Create Account

Awesome job so far everyone! Please give us your feedback on how our article efforts are going. We still need more finished articles for our May contest theme: Remake the Classics

#ActualAshaman73

Posted 12 November 2012 - 08:12 AM

From a game development stand point, is there a lot to be loss if the programmer uses minimal data structures implementations ?

It depends. Certain data structures solve certain problems, implementing the basic structure is often the first barrier to take (e.g. an oct-tree instead of a simple linked list ). The second step is to optimize this implementation if necessary. Optimization bears always the danger of writing unreadable code or to introduce new bugs. Therefore optimization is often only necessary after a bottleneck has been detected, but AAA games often have a lot of optimization going on to ensure that the game runs at 30 fps :D

#1Ashaman73

Posted 12 November 2012 - 08:10 AM

From a game development stand point, is there a lot to be loss if the programmer uses minimal data structures implementations ?

It depends. Certain data structures solve certain problems, implementing the basic structure is often the first barrier to take (e.g. an oct-tree instead of a simple linked list ). The second step is to optimize this implementation if necessary. Optimization bears always the danger of writing unreadable code or to introduce new bugs. Therefore optimization is often only necessary after a bottleneck has been detected.

PARTNERS