Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been writing a game in my free time, and I'm planning to add a transportation network based on a buildings demands and production. However, I'm not sure how to manage this efficiently, and most importantly with a limited CPU time.

Now I've seen this done to varying degrees in games like Tropico, or much more extensively Anno.

An open source project that seems to have similar features is OpenTTD. They define the problem as a Multi-commodity flow problem, but don't give many more details. The paper that describes their algorithm is no longer linked unfortunately.

So is defining a transportation network as an MCF problem a good approach for a game? If so, what is a good approach to solving the MCF problem. Otherwise, how would you go about solving the flow of goods from producers to consumers?

share|improve this question
I think this might be a better fit for programmers.stackexchange.com ... voted to migrate this question there. – Felix Kling May 13 '12 at 0:51
@FelixKling Don't think so. gamedev.stackexchange.com seems better. People there knows a lot about how to dev games, and they can give a thought about this problem. Also, they might know what is trivial or not in the problem, as it is for a game... – Gustavo Maciel May 13 '12 at 1:13
@Gustavo: I did not know about gamedev.SE – Felix Kling May 13 '12 at 1:31
@FelixKling I wasn't aware of that stackexchange. I'll try there to see if someone has some game specific insight into the problem. – silenthunter747 May 13 '12 at 4:58

closed as off topic by Mitch Wheat, Zoltan Toth, Felix Kling, Adam Mihalcin, bažmegakapa May 13 '12 at 9:18

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

Browse other questions tagged or ask your own question.