#6,562 in Computers & technology books
Use arrows to jump to the previous/next product

Reddit mentions of Data-oriented design: software engineering for limited resources and short schedules

Sentiment score: 1
Reddit mentions: 1

We found 1 Reddit mentions of Data-oriented design: software engineering for limited resources and short schedules. Here are the top ones.

Data-oriented design: software engineering for limited resources and short schedules
Buying options
View on Amazon.com
or
    Features:
  • Pencil Case based on the much loved snack
  • Available in the UK's favourite flavours; Original, Salt & Vinegar and Sour Cream & Onion
  • Large main compartement for easy access
  • Hard wearing material
  • Random selection only, design cannot be specified
Specs:
Height9 Inches
Length6 Inches
Number of items1
Weight0.9479877266 Pounds
Width0.7 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 1 comment on Data-oriented design: software engineering for limited resources and short schedules:

u/jackmott2 Β· 5 pointsr/fsharp

it is common to not use oop patterns in game programming for performance reasons, even in c++ where you could oop if you wanted to. read up on entity component systems for one approach. totally compatible with monogame. you can do whatever you like inside its draw and update loops. you dont have to extend its gameobjects or anything.

DUs are often a fine alternative to OOP patterns. fill an array with entities, match to get which type, call a different function for each.

functions are a one liner interface

this book :
https://www.amazon.com/dp/1916478700/ref=cm_sw_r_cp_awdb_t1_tBiyCbZWNC42V

has really neat info on oop alternatives despite being geared toward c developers


you will usually want to mutate gamestate if performance is a concern but you may not have to. again monogame isn’t leading you one way or the other here.