Tagged Questions
The data-oriented-design tag has no wiki summary.
19
votes
3answers
7k views
What is data oriented design?
I was reading this article (note: click the magnifying glass to zoom to be able to read it), and this guy goes on talking about how everyone can greatly benefit from mixing in data oriented design ...
5
votes
1answer
333 views
Branchless memory manager?
Anyone thought about how to write a memory manager (in C++) that is completely branch free? I've written a pool, a stack, a queue, and a linked list (allocating from the pool), but I am wondering how ...
2
votes
2answers
214 views
How to create an efficient static hash table?
I need to create small-mid sized static hash tables from it. Typically, those will have 5-100 entries. When the hash table is created, all keys hashes are known up-front (i.e. the keys are already ...
2
votes
1answer
518 views
Data-oriented design in practice?
There has been one more question on what data-oriented design is, and there's one article which is often referred to (and I've read it like 5 or 6 times already). I understand the general concept of ...
2
votes
1answer
528 views
Learning about Data Oriented Design
http://gamesfromwithin.com/data-oriented-design
I'm a bit fan of the article above. Where can I learn more about this? Anyone suggest a textbook, series of articles, or source code base to read?
1
vote
2answers
489 views
How to apply DOP and keep a nice user interface?
Currently I want to optimize my 3d engine for consoles a bit. More precisely I want to be more cache friendly and align my structures more data oriented, but also want to keep my nice user interface.
...
0
votes
0answers
196 views
Organizing Data Code In C# (w/ NHibernate)
I come from a PHP background doing it professionally for 5+ years now. I have always wanted to do web development in C# but hated WebForms and ASP.NET MVC was still not in a state where I really ...
0
votes
2answers
176 views
Which struct design has better spatial locality?
struct{
Vector3* centers;
float* radii;
float* colors;
unsigned int size;
}Spheres;
versus
struct Sphere{
Vector3 center;
float radius;
float color;
};
struct{
...
0
votes
1answer
73 views
Is there any Tables lib/code for in memory manipulation in C++
I've started doing my own "struct of arrays" coding, but wondered if anyone knew of libs or templates that were already out there for doing intense data transform stuff on memory constrained hardware.
...