active questions tagged game-design - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T21:28:38Zhttp://stackoverflow.com/feeds/tag/game-designhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1764453/how-to-design-a-timer-based-web-game-like-cafe-world0How to design a timer-based web game (like Cafe World)Pies2009-11-19T16:10:02Z2009-12-09T15:21:45Z
<p>I need to design and implement a timer-based game (Flash on client, PHP on server), like Cafe World, i.e. user clicks on a button, waits a few seconds, something happens, and then he can click again. It'll be a simulation of a food production line.</p>
<p>There will be N production line elements, each has a separate timer with different duration, and each can cue up to M operations (first starts immediately, next starts when the previous has finished and so on).</p>
<p>How do I implement the server side of that kind of feature with a database backend? Currently I'm thinking about a counter for the cue, "time left" indication for currently active operation and the time of last update. When an operation is requested, I'd update the "time left" and cue counter using the time elapsed from last update. Any thoughts, comments or better ideas? </p>
<p>Best answer gets the bounty.</p>
http://stackoverflow.com/questions/1149856/help-in-choosing-a-3d-game-engine4Help in choosing a 3D game engineSujay Ghosh2009-07-19T13:05:01Z2009-12-09T05:16:07Z
<p>I am not new to programming, I am quite good in C++, Windows SDK , VC++; but I am new to game development .</p>
<p>I want to start this as a hobby in developing a desktop game . I have found several engines, but I am not sure whether it does the initial job I am looking at . </p>
<p>Initially I want to do the following :-</p>
<ol>
<li>Create a figure (avatar) , and let the user dress the avatar </li>
<li>Load the avatar in the game</li>
</ol>
<p>In later stages I want to develop this as a multi player game.</p>
<p>Can anyone help in giving me the right direction.</p>
<p>Thanks in advance.
Sujay</p>
http://stackoverflow.com/questions/1856113/oo-design-and-mirrored-duplicated-methods3OO design and mirrored/duplicated methodsRudi2009-12-06T18:17:33Z2009-12-07T06:21:20Z
<p>Hi everyone! I'm having an issue in OO design where I end up with duplicate code in 2 different classes. Here's what's going on:</p>
<p>In this example, I want to detect collision between game objects. </p>
<p>I have a base CollisionObject that holds common methods (such as checkForCollisionWith) and CollisionObjectBox, CollisionObjectCircle, CollisionObjectPolygon that extend the base class.</p>
<p>This part of design seems ok, but here's what's troubling me: calling </p>
<pre><code>aCircle checkForCollisionWith: aBox
</code></pre>
<p>will perform a circle vs box collision check inside Circle subclass. In reverse,</p>
<pre><code>aBox checkForCollisionWith: aCircle
</code></pre>
<p>will perform box vs circle collision check inside Box subclass.</p>
<p>Issue here is that Circle vs Box collision code is duplicate, since it's in both Box and Circle classes. Is there a way to avoid this, or am I approaching this problem the wrong way? For now, I'm leaning towards having a helper class with all the duplicate code and call it from the aCircle and aBox objects to avoid duplicates. I'm curious if there's more elegant OO solution to this, though.</p>
http://stackoverflow.com/questions/580103/links-for-simple-game-algorithms2Links for simple game algorithmsClick Ok2009-02-24T01:14:48Z2009-12-06T04:18:48Z
<p>I was reading <a href="http://stackoverflow.com/questions/505435/what-fun-games-have-simple-source-code-available">that question</a> and I remember of the <a href="http://en.wikipedia.org/wiki/List_of_algorithms" rel="nofollow">Wikipedia list of algorithms</a>. I know that Wikipedia have a list of Open Source games too, but what I want is a links for simple game algorithms, even if written in pseudocode. </p>
<p>As "simple" games, I mean games like Sudoku, Bejeweled, Solitaire, Minesweeper, Labyrinth, Snakes, Gorilla, Chess, Tetris, etc. </p>
<p>Bonus for C# source code :)</p>
http://stackoverflow.com/questions/1719914/resources-for-unrealscript3Resources for UnrealScriptBlaenk2009-11-12T04:39:02Z2009-12-02T22:05:19Z
<p>Now that the <a href="http://www.udk.com/index.html" rel="nofollow">Unreal Development Kit</a> is out and free to use by anyone, I am pretty excited to try it out. My understanding is that the programming is done through scripting in <a href="http://en.wikipedia.org/wiki/Unrealscript" rel="nofollow">UnrealScript</a>, I am wondering if any of you guys know of any <strong>good</strong> articles, tutorials, books, and references for Unreal Script or the Unreal Development Kit.</p>
<h2>Documentation</h2>
<ul>
<li><a href="http://udn.epicgames.com/Three/UnrealScriptReference.html" rel="nofollow">UnrealScript Reference for Unreal Engine 3</a></li>
<li><a href="http://wiki.beyondunreal.com/Legacy%3AUnrealScript" rel="nofollow">UnrealScript at UnrealWiki</a></li>
</ul>
<h2>Tools</h2>
<ul>
<li><a href="http://wiki.pixelminegames.com/index.php?title=Tools%3AnFringe" rel="nofollow">nFringe - Visual Studio Extension for UnrealScript</a></li>
</ul>
<h2>Tutorials</h2>
<ul>
<li><a href="http://chimeric.beyondunreal.com/tutorials.php" rel="nofollow">Chimeric - Coding tutorials</a></li>
</ul>
<h2>Video Tutorials</h2>
<ul>
<li><a href="http://udn.epicgames.com/Three/VideoTutorials.html#Unreal%20Engine%203%20Video%20Tutorials" rel="nofollow">3D Buzz Video Tutorials</a></li>
</ul>
<p><em>Sorry if I screwed up on this. It's my first community wiki post, let me know if I did something wrong :)</em></p>
http://stackoverflow.com/questions/1814808/logic-probability-question-picking-from-a-bag0Logic / Probability Question: Picking from a bagRosarch2009-11-29T06:12:12Z2009-11-30T06:27:13Z
<p>I'm coding a board game where there is a bag of possible pieces. Each turn, players remove randomly selected pieces from the bag according to certain rules.</p>
<p>For my implementation, it may be easier to divide up the bag initially into pools for one or more players. These pools would be randomly selected, but now different players would be picking from different bags. Is this any different?</p>
<p>If one player's bag ran out, more would be randomly shuffled into it from the general stockpile.</p>
http://stackoverflow.com/questions/1811569/requirements-for-a-game0Requirements for a gamejacob2009-11-28T04:34:05Z2009-11-28T16:52:14Z
<p>I'm writing an iPhone game and I am trying to write some requirements documents. I have never written requirements before so I got the book Software Requirements. I have not finished it yet, but I forsee some issues, as this book is targeted towards a business. My main question is I am the only person involved with this game and I feel the main purpose of the requirements document should be to nail out as many conceptual ideas of how the game works as I can before I am deep into design or construction. Does anyone have suggestions on how I should lay this out, should I still try to mimic the template provided in the book where it makes sense, or since I am both the sole developer and product owner, should I just stick to game concepts?</p>
http://stackoverflow.com/questions/1777607/overlay-2d-weapon-sprite-over-character-sprite1Overlay 2d weapon sprite over character sprite ?Mr.Gando2009-11-22T02:22:11Z2009-11-22T02:26:38Z
<p>Hello, I'm working on a game where my character needs to be able to have different weapons. For that I think that somehow overlaying the weapon over the moving sprite would be the correct choice, but I'm not sure about how could I do this.</p>
<p>Assuming my Character spritesheet looks like this:</p>
<p><img src="http://i47.tinypic.com/2qxw9ds.jpg" alt="Player SpriteSheet"></p>
<p>And my preliminar weapon spritesheet ( haven't decided on a fixed square size for the weapon yet ), looks like this:</p>
<p><img src="http://i47.tinypic.com/vgltfs.jpg" alt="Weapon SpriteSheet"></p>
<p>How would you make the overlay to set the weapon correctly over the character hand for each of his frames? I know that one way would be just to have a weapon frame the same size as my character sprites, and overlay those too, but I think that if the game has way too much weapons (say 15 different kinds of one hand weaps) this could get pretty insane ( having one weapon sprite sheet the same size as the character sprite sheet for each type of weapon )</p>
<p>Do you guys have any advice on how to implement this? (supporting overlaying the weapon sprites over the character sprites)</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1032272/c-game-design-main-loop-aborting-a-better-way-than-abort-and-resetabort1C# game design - main loop aborting - A better way than Abort() and ResetAbort()?Asaf2009-06-23T12:34:27Z2009-11-21T19:10:20Z
<p>i have some C# threading program (a game), that stops with a boolean (as most articles recommends).</p>
<pre><code>while (gameContinueRun)
{
createRound();
line1;
line2;
line3;
line4;
endRound();
}
</code></pre>
<p>some code lines lock the game and wait until other thread will release it.</p>
<pre><code>lock (stateSync)
{
Monitor.Wait(stateSync)
}
</code></pre>
<p>to stop the thread from another thread i set the boolean to false :</p>
<pre><code>if (cancel)
{
gameContinueRun= false;
}
</code></pre>
<p>everything works nice.. but i still need to wait until the end of the current loop (round).</p>
<p>now, i want to end the loop, to break all work in the middle (abort game).
another thing is to be able to restrat the loop (open new round).
(or in another words, two things :
1. aborting the game
2. cancel the current round and start a new one..)</p>
<p>i thought about it, and got a couple of ways :</p>
<ol>
<li><p>unlock all locks, and check after every code line :</p>
<p>if (!cancelRound)
{
line1;
}
if (!cancelRound)
{
line2;
}
if (!cancelRound)
{
line3;
}
if (!cancelRound)
{
line4;
}</p>
<p>not very nice, and very exhausting if one have lots of code lines to cover...</p></li>
<li><p>use Thread.Abort(), catching the Exception and resetAbort() if needed.</p></li>
<li><p>use goto and labels (which i assume is even uglier then aborting..)</p></li>
</ol>
<p>which one is better? or more over, is there a better recommended way?
thanks!</p>
http://stackoverflow.com/questions/1733855/tile-based-game-engine-or-framework-for-the-iphone2Tile-based Game Engine or Framework for the iPhone?Elliot2009-11-14T10:05:33Z2009-11-15T22:44:14Z
<p>I'm planning to build a simple tile-based RTS (Real-Time Strategy) game for the iPhone and iPod touch.</p>
<p>Is there an existing game engine or framework that I could use? If so, where can I find it?</p>
http://stackoverflow.com/questions/638549/what-language-features-are-needed-for-game-scripting3What language features are needed for game scripting?Joseph Kehoe2009-03-12T13:09:00Z2009-11-10T03:13:26Z
<p>I am looking into designing a game scripting language and was wondering what people employed in the games industry considered essential items/properties for a good game scripting language. This includes things like:</p>
<ul>
<li>static vs dynamic types</li>
<li>Who should it be aimed at:
programmers or designers? </li>
<li>syntax(must it look like C?)</li>
<li>How high level should it be? (C vs Lisp for example
-- or imperative vs functional)</li>
<li>What must it be able to do. How fast does
it need to be?</li>
</ul>
<p>Also, I have heard from a few sources that scripts tend to be very simple as they are written by designers more than programmers. Is this the case?</p>
http://stackoverflow.com/questions/1248851/self-regulation-of-a-mini-economy6Self-regulation of a mini economymarco92w2009-08-08T13:09:37Z2009-11-09T21:46:35Z
<p>Hello!</p>
<p>At first: I'm not sure if it's an adequate question for Stack Overflow. It's not just about programming, it's about game design. But I'll try it ...</p>
<p>I would like to deal with "Possibilities for self-regulation in a mini economy with the example manager game" in a skilled work.</p>
<p><strong>Initial situation:</strong></p>
<p>I've selected "hattrick.org" as an example. I want to analyze the economy and find possibilities to make the game economy regulate itself.</p>
<p><strong>Problems:</strong></p>
<ul>
<li>Teams which are deleted cause big changes in the recirculated quantity of money. If a manager deletes his team which has got 200,000,000, the recirculated quantity decreases fast.</li>
<li>The recirculated quantity has to grow from season to season in order to keep the game interesting.</li>
<li>Money mustn't be distributed unfairly: It can't be permitted that 1% of the teams own 20% of the money.</li>
</ul>
<p><strong>Approaches:</strong></p>
<ol>
<li>Decay of values: Players end their career earlier so that money (market value) leaves the system earlier/faster.</li>
<li>Percentaged taxes on player trades and money transfers: Whenever two human managers exchange money, a part of it must leave the system. The higher the exchanged value, the higher the amount which leaves the system.</li>
<li>KI teams (money transfers to them leave the system) sell players for 200% of their market value. Thus 50% of the money is "lost" and leaves the system.</li>
<li>Temporary advantages: Teams may buy temporary advantages for high amounts of money, e.g. improving the fitness level of their players (fitness coaches are expensive).</li>
<li>Limit help between human managers (not concerning problems but money), e.g.: Players can only change teams every third season so that teams can't make money that fast.</li>
<li>Bank accounts of teams can only keep limited amounts of money. Earnings exceeding this limit are lost so that the rich teams can never get too rich.</li>
<li>Teams must pay taxes on capital exceeding a given limit, e.g. the limit 300,000,000 with the percentage 10%. => A team with 310,000,000 loses 1,000,000 and on the next day 900,000.[/list]</li>
<li>Watch sources: If a source is generating too much money, it gets reduced.</li>
</ol>
<p>What do you think about these approaches? Are they good? Would they work?</p>
<p>I hope you can help me. Thanks alot in advance!</p>
<p><strong>Edit: Additional question:</strong>
I've read the following: "If the drains (costs) are fixed, the collapse is just a matter of when. So tie the drains to the price level (P=MV/Q)." Is this correct? Is it the solution for my problem?</p>
<p><img src="http://i26.tinypic.com/1tub89.jpg" alt="economy model" /></p>
http://stackoverflow.com/questions/1694101/how-to-implement-connected-rooms2How to implement connected rooms?pg-robban2009-11-07T19:16:50Z2009-11-08T18:07:11Z
<p>This may be a duplicate question as I don't know to phrase the search query. I'm creating a Zork-like text based game in Java where the character moves to different rooms which are connected to each other. I want to be able to list all options a player has available for this room.</p>
<p>For example, Room A is connected east to B, and B is connected west to A, south to C, north to D and so forth.</p>
<p>What data structure should I use or how should I implement this as efficiently as possible?</p>
http://stackoverflow.com/questions/1652193/howto-avoid-people-from-having-multiple-accounts-in-a-free-to-play-multiplayer-ga3Howto avoid people from having multiple accounts in a free to play multiplayer game? [closed]Tom2009-10-30T20:41:28Z2009-10-30T22:18:38Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/170152/prevent-users-from-starting-multiple-accounts">Prevent users from starting multiple accounts?</a> </p>
</blockquote>
<p>Imagine you develop a free to play multiplayer game. It is free to create an account. Now, having multiple accounts would give the user an unfair advantage to other players because they can develop multiple characters and transfer in game valueable items to their so called "main character".</p>
<p>My question is, what methods do you know to prevent people from having multiple accounts?</p>
<p>I currently have the following ideas, but having just these will not suffice:</p>
<ul>
<li>Require unique e-mail address for each account with activation (not helpful with these trash mail services)</li>
<li>Disallow multiple clients at a time on a machine (people can reverse engineer the client to pass this check, or simply use multiple machines or virtual operating systems)</li>
</ul>
<p>Maybe it is an idea to use somekind of service like OpenID? I have no experience with this, it just came up in my head as a slight possibility. I do not know how difficult it would be to create multiple OpenIDs either.</p>
<p>I'd love to hear more suggestions from the SO community.</p>
http://stackoverflow.com/questions/1583786/looking-for-good-server-side-language-that-will-allow-players-to-upload-code-that5Looking for good server-side language that will allow players to upload code that can be executedJames Black2009-10-18T01:59:21Z2009-10-26T22:46:48Z
<p>I had an idea of a program I want to write, but which language would be best is my problem.</p>
<p>If I have a car racing game and I want to allow users to submit code for new interactive 3D race tracks (think of tracks such as found in the Speed Racer movie), vehicles and for their autonomous vehicles, so, they would create the AI for their car that will enable the car to determine how to handle hazards.</p>
<p>So, I need a language that will run fast, and as part of a world map that the server has of all the possible races available, and their various states.</p>
<p>I am curious if this would be a good reason to look at creating a DSL in Scala, for example?</p>
<p>I don't want to have to restart an application to load new dlls or jar files so many compiled languages would be a problem.</p>
<p>I am open to Linux or Windows, and for the languages, most scripting languages, F#, Scala, Erlang or most OOP I can program in.</p>
<p>The user will be able to monitor how their vehicle is doing, and if they have more than one AI uploaded for that car, when it gets to certain obstacles they should be able to swap one AI program for another on demand.</p>
<p>Update: So far the solutions are javascript, using V8, and Lua. </p>
<p>I am curious if this may be a good use for a DSL, actually 3 separate ones. 1 for creating a racetrack, another for controlling a racecar and the third for creating new cars.</p>
<p>If so, would Haskell, F# or Scala be good choices for this?</p>
<p><strong>Update:</strong> Would it make sense to have different parts end up in different languages? For example, if Erlang was used for the controlling of the car and Lua for the car itself, and also for the animated racetrack? </p>
http://stackoverflow.com/questions/1552535/need-some-advise-with-how-bitblit-works1Need some advise with how bitblit worksjknox2009-10-12T03:20:16Z2009-10-12T12:39:37Z
<p>Hi,</p>
<p>I am creating my first game ever using pygame and i've found that in order to animate things the most popular method is to use bit blit.
However I have a few questions regarding this:</p>
<ol>
<li><p>From what I understood, when you use bit blit you have to "redraw" on the screen every single object that was present before in order for it to work correctly. Is this correct?</p></li>
<li><p>If so... i am drawing a "scene" of buildings using rects (rectangles) (the buildings have each a different colors (randomly geneated), different heights (random) and they also have windows which are of 2 different colors alternating). What would be the best way for my Building class to remember every color it had for the building and its windows so that when i bit blit the building dont get different colors to make it more realistic?</p></li>
</ol>
<p>Thanks in advance for pointing me in the right direction!</p>
http://stackoverflow.com/questions/1452828/sprites-in-game-programming-multiple-files-vs-one-texture1Sprites in game programming, multiple files vs one "texture" ?randombits2009-09-21T03:54:58Z2009-09-22T18:18:32Z
<p>Pardon me if my lingo is not correct as I'm new to game programming. I've been looking at some open source projects and noticed that some sprites are split up into several files, all of which are grouped together to make a 2d object look like it's animating. That's straight forward. Then I'll see a different approach, with the 2d object all in one png file or something similar, all next to each other. </p>
<p>Is there an advantage of using one approach to another? Should sprites be in separate files? Why are they sometimes all on one sheet?</p>
http://stackoverflow.com/questions/1437661/good-way-to-handle-ability-usage-within-a-multiplayer-game0Good way to handle ability usage within a multiplayer game?Tom2009-09-17T09:11:53Z2009-09-17T11:00:55Z
<p>I have written a client<>server based multiplayer game and have finished the basics (it's a flash client written in actionscript 3). The next step will be implementing a system which will allow me to easily add abilities to the game.</p>
<p>The problem here is that an ability can do so many things. Eg. player A uses ability "repair" on player B, the following will have to happen:</p>
<ul>
<li>Player A sends message to server informing about the action</li>
<li>Player A is now showing a "repair casted" animation on its own ship</li>
<li>The server has to inform all players near that ship A now has the "repair casted" animation</li>
<li>The server has to increase the "health" of player B because it has been repaired by player A</li>
<li>The server has to inform all nearby players that player B now has a different health value</li>
<li>The server has to inform all nearby players that player B should show the "being repaired" animation</li>
</ul>
<p>That's just an example, a lot of things have to happen for 1 simple ability. I could go into every object and add lines of code just for this spell. However, that would become a mess when I need to add a lot (~50) abilities. Also notice that some abilities do whole other things than others, some will have to show animations, some won't. Some will have to damage, some will have to increase statistics, etc.</p>
<p>So, how is such "ability system" usually handled both client and server side?</p>
http://stackoverflow.com/questions/1332146/c-game-class-design-and-responsibilities3C++ game, class design and responsibilitiesTesserex2009-08-26T03:04:40Z2009-08-26T08:10:51Z
<p>I've just read some related questions that came up when I typed the subject, so I'll try not to repeat those.</p>
<p>I've recently started revisiting a learning project I started about two or three years ago - a C++ port of a Mega Man engine. Yes I used ripped sprites. I also am using a game engine library for drawing, music, and input.</p>
<p>My original code was atrocious. While it could (but barely) be called OO, it missed the point entirely. I've starting adding things like interfaces and cut out a lot of repetitive code. There are some things I'm not sure about, because game design gets very complex at times.</p>
<p>The object that represents my game library is currently global (I know globals are usually bad) because many objects may rely on it here and there for things like loading their art or music. What's the best way to go about pulling that object out of global scope, without having to pass fifty parameters to everything that would otherwise use it directly?</p>
<p>Next question: As we all know, Mega Man shoots lots of little white projectiles. Currently, the Player object is responsible for the Projectile objects he fires, updating their position and such (literally, calling the Projectile::Update() method once for each shot, inside the Player::Update() method). Is this the wrong way to do it? My first improvement was have all of these objects implement a DrawnObject interface, so that my game can just draw everything. Doing the same thing for Updates would mean I take control of the projectiles away from Player and give it to some broader Game object. The reason I'm hesitant about this is that it feels like the God object antipattern. Or am I misunderstanding said antipattern? There is still additional complexity involved - the projectiles die if they leave the visible screen, so any call to update the projectile would require the caller to have access to the screen object.</p>
<p>That's all for now, I'll come back with more problems when I reach them. End of first post!</p>
http://stackoverflow.com/questions/1285694/how-can-i-find-islands-in-a-randomly-generated-hexagonal-map1How can I find islands in a randomly generated hexagonal map?J3nnings2009-08-17T00:03:16Z2009-08-17T19:01:26Z
<p>I'm programming a Risk like game in Codigniter and JQuery. I've come up with a way to create randomly generated maps by making a full layout of tiles then deleting random ones. However, this sometimes produces what I call islands.</p>
<p>In risk, you can only attack one space over. So if one player happens to have an island all to them self, they would never be able to loose.</p>
<p>I'm trying to find a way that I can check the map before the game begins to see if it has islands.</p>
<p>I have already come up with a function to find out how many adjacent spaces there are to each space, but am not sure how to implement it in order to find islands.</p>
<p>Each missing spot is also identified as "water."</p>
<p>I'm not allowed to use image tags:
<a href="http://imgur.com/xwWzC.gif" rel="nofollow">http://imgur.com/xwWzC.gif</a></p>
http://stackoverflow.com/questions/1281554/client-side-technology-for-a-web-based-game1Client-side technology for a web-based game Khalil Dahab2009-08-15T09:49:56Z2009-08-15T10:24:19Z
<p>I am developing a web-based game (similar to <a href="http://www.gwap.com/gwap/gamesPreview/espgame/" rel="nofollow">the ESP game</a>), I am done with the server side SOAP web service (built on ASP.NET), and now I am wondering if I should use Flash (swf) or AJAX for the client side layer of the game. Basically, the client side is a web service client making requests to the web server and receiving back instructions on how to render/update the user interface. Any suggestions or considerations? </p>
http://stackoverflow.com/questions/1199773/best-iphone-framework-for-2d-platform-games2Best iPhone framework for 2D platform gamesDimitris2009-07-29T12:03:04Z2009-07-29T23:46:32Z
<p>Which framework do you suggest for building a 2D platform game for the iPhone? I only need to move assets around the screen and detect collisions etc.</p>
<p>I would think OpenGL. But maybe Quartz 2D is enough? Or is there something else I should be aware of? What are advantages and disadvantages of each?
I guess there is a longer learning curve for OpenGL, but that pays off in performance, right?</p>
http://stackoverflow.com/questions/1192147/how-the-dynamics-of-a-sports-simulation-game-works1How the dynamics of a sports simulation game works?Victor2009-07-28T06:03:33Z2009-07-28T20:59:24Z
<p>I would like to create a baseball simulation game.</p>
<p>Are these sports management games based on luck? A management game entirely based on luck is not fair, but it cannot be too predictable either. How does the logic behind these games work?</p>
http://stackoverflow.com/questions/1184928/best-practices-when-design-iphone-game-with-mvc1Best practices when Design iPhone Game with MVC ?Mr.Gando2009-07-26T16:08:33Z2009-07-26T16:53:36Z
<p>Hi there, I have made two games for the iPhone already, the first one was a mess, and the second one is less messy but still, not perfect.</p>
<p>I would love to hear if someone had some links that pointed to good class organization advice when creating games using MVC ?</p>
http://stackoverflow.com/questions/1157245/creating-a-board-game-simulator-python-pygame8Creating a board game simulator (Python?) (Pygame?)Evan2009-07-21T04:03:33Z2009-07-21T18:04:42Z
<p>I've decided to start working on programming an old favorite of mine. I've never done a game before and also never done a large project in Python.</p>
<p>The game is the old Avalon Hill game <a href="http://www.boardgamegeek.com/boardgame/2808" rel="nofollow">Russian Campaign</a></p>
<p>I've been playing with PyGame a little bit and was wondering if there were reasons not to try to do this with PyGame and go after some other engine/language.</p>
<p>What would be the disadvantages of using Pygame to build this?</p>
<p>I'm not worried about AI, primarily I'd just love to get a minimal two player version of the game up and running. Bonuses would be the ability to save the state of the game and also to play over a network.</p>
<p>Do's and Dont's for starting this project would be greatly appreciated.</p>
http://stackoverflow.com/questions/795396/books-for-3d-game-engine-development5Books for 3d game engine developmentmartiert2009-04-27T21:39:29Z2009-07-21T00:04:01Z
<p>Hi.</p>
<p>I'm looking for tips on books that goes through what is needed/recommended in a game engine for 3D. I don't need books about math, physics or OpenGL/XNA/DirectX, but only about the inner goings of a standard game engine. I also just want tips and tricks for the game engine, and not a full source game engine, since I really want to write it myselv, I just don't know exactly where to start.</p>
<p>I'm marking this as community wiki, since more people are probably looking for something like this.</p>
http://stackoverflow.com/questions/1148102/voting-economy-balancing-credits-properly2Voting economy: balancing credits properlyStefano Borini2009-07-18T17:39:15Z2009-07-18T17:56:28Z
<p>Many websites today (including stackoverflow) and games allow people to perform voting, give feedback, enable additional features etc, according to a score: eg. reputation, or MMORPG credits.</p>
<p>As a programmer that will probably need to implement a community based website in the near future, I am interested in knowing about the existence of basic algorithms and decisions to be made so that everything is balanced. For example, the fact that one vote up grants 10 reputations and one down grants -2 was arbitrary or properly weighted ? How to decide the price of a given item and the rewards in a MMORPG, so that everything is balanced? I guess that WoW designers relied on their experience, but I am also sure that this experience can be found somewhere written down. Although this is a social problem, the pricing of a given feature and the reward for a given task are technical/mathematical ones, as you need to give a value to each feature according to some mathematical criteria (although not easy to devise, I guess)</p>
<p>Of course, this question could bring us far in terms of theory of economics, but I am sort of hoping that there are well defined and known simplified patterns and rules for this issue. I just don't know the keywords to query for.</p>
http://stackoverflow.com/questions/1116116/major-game-components6Major game componentstomzx2009-07-12T14:25:07Z2009-07-13T15:40:39Z
<p>Hi,</p>
<p>I am in the process of developping a game, and after two months of work (not full time mind you), I have come to realise that our specs for the game are lacking a lot of details. I am not a professional game developper, this is only a hobby.</p>
<p>What I would like to receive help or advices for is this: <strong>What are the major components that you find in games, that have to be developped or already exists as librairies?</strong> The objective of this question is for me to be able to specify more game aspects.</p>
<p>Currently, we had specified pretty much only how we would work on the visual, completely forgetting everything about game logic (AI, Entities interactions, Quest logic (how do we decide whether or not a quest is completed)).</p>
<p>So far, I have found those points:</p>
<ul>
<li>Physics (collision detection, actual forces, etc.)</li>
<li>AI (pathfinding, objectives, etc.)</li>
<li>Model management</li>
<li>Animation management</li>
<li>Scene management</li>
<li>Combat management</li>
<li>Inventory management</li>
<li>Camera (make sure not to render everything that is in the scene)</li>
<li>Heightmaps</li>
<li>Entities communication (Player with NPC, enemy, other players, etc)</li>
<li>Game state</li>
<li>Game state save system</li>
</ul>
<p>In order to reduce the scope of this queston, I'd like it if you could specifically discuss aspects related to developping an RPG type of game. I will also point out that I am using XNA to develop this game, but I have almost no grasp of all the classes available yet (pretty much only using the Game component with some classes that are related to it such as GameTime, SpriteBatch, GraphicDeviceManager) but not much more.</p>
http://stackoverflow.com/questions/1116411/how-should-i-have-my-game-entities-knowledgeable-of-the-things-around-them1How should I have my game entities knowledgeable of the things around them?Jameson2009-07-12T16:52:08Z2009-07-12T17:11:40Z
<p>Every enemy type in my game is a different class, and the instances are stored in a C array. In the main game loop update() is run for each enemy/item instance, and draw() is run. Some of the update() commands require knowledge of where the main player is. What would be the best route to get that information to the instance? I don't think a global variable is the smart way to do it, since multiplayer options may be added later.</p>
<p>This is only an example of the bigger problem, which is how things in the game are supposed to know about each other. How would enemies know they're colliding with other enemies for example.</p>
http://stackoverflow.com/questions/509310/how-do-you-draw-like-a-crayon17How do you draw like a Crayon?Simucal2009-02-03T22:50:47Z2009-07-02T19:36:31Z
<p><a href="http://www.crayonphysics.com/" rel="nofollow">Crayon Physics Deluxe</a> is a commercial game that came out recently. Watch the video on the main link to get an idea of what I'm talking about.</p>
<p>It allows you to draw shapes and have them react with proper physics. The goal is to move a ball to a star across the screen using contraptions and shapes you build.</p>
<p>While the game is basically a wrapper for the popular <a href="http://www.box2d.org/" rel="nofollow">Box2D Physics Engine</a>, it does have one feature that I'm curious about how it is implemented.</p>
<p>Its drawing looks <em>very</em> much like a Crayon. You can see the texture of the crayon and as it draws it varies in thickness and darkness just like an actual crayon drawing would look like.</p>
<p><img src="http://www.kloonigames.com/crayon/screenshots/crayon_small_01.jpg" alt="alt text" /> <img src="http://www.kloonigames.com/crayon/screenshots/crayon_small_02.jpg" alt="alt text" /></p>
<p>The background texture is freely available <a href="http://flickr.com/photos/felipeskroski/325477721/" rel="nofollow">here</a>.</p>
<p><img src="http://img267.imageshack.us/img267/1488/crayonmh7.png" alt="alt text" /><br />
<em>Close up of crayon drawing - Note the varying darkness</em></p>
<p>What kind of algorithm would be used to render those lines in a way that looks like a Crayon? Is it a simple texture applied with a random thickness and darkness or is there something more going on in the crayon-like drawing?</p>