Help for building a simcity-like game

  • Thread starter Thread starter AlternativaMente
  • Start date Start date
A

AlternativaMente

I need help to build a simcity-like game. Exspecially I don't know how I can
render the graphics. I'm looking for a not-too-difficult way to do it

Thanks in advance

Emanuele
 
I'm not sure if C# is the best language for something like this as it
doesn't give full control over the graphics compared to C++ where you
easily can change individual pixels.

You need a flat world, upon which you place objects. Objects come in
different size and have their own image (bitmap). Determine which object
is in front of what and have the objects draw themselves from the rear and
forwards.

Good Luck!
 
Emanuele,

The better forum for this question would be the managed DirectX forum.
DirectX is the API you would use in writing a game and the managed version
is oriented towards C# and VB.Net. The forum is
microsoft.public.win32.programmer.directx.managed
 
Back
Top