active questions tagged game-development - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T22:18:17Z http://stackoverflow.com/feeds/tag/game-development http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1882042/faster-math-algorithm-sacrificing-accuracy 5 Faster math algorithm sacrificing accuracy grayger 2009-12-10T16:07:41Z 2009-12-10T22:16:09Z <p>Hi, I am developing a game that calls so many math functions for physics and rendering. <a href="http://en.wikipedia.org/wiki/Fast%5Finverse%5Fsquare%5Froot" rel="nofollow">"Fast inverse sqrt"</a> used in Quake3 is known to be faster than sqrt() and its background is beautiful. </p> <p>Do you know any other algorithm that is faster than usual one with acceptable accuracy loss? </p> http://stackoverflow.com/questions/356068/viability-of-c-net-as-the-new-standard-game-dev-platform 12 Viability of C#/.NET as the new standard game dev platform? Jason Miesionczek 2008-12-10T13:39:53Z 2009-12-10T13:41:50Z <p>For a long time now C++ has been the dominate game development language. Many AAA quality 3D engines are available to fit any budget. </p> <p>My question is, with the rise of XNA, has C# and the .NET framework been positioned well enough to take over as the new standard game development platform? Obviously the inherent cross-platform nature of the XNA framework (Windows, Xbox, Zune) has its benefits, but are those benefits good enough to entice large game dev studios to switch gears?</p> <p>Personally, i am torn between using C#/XNA for a new project, and using Java via jMonkeyEngine. I have a great desire to have my game be portable to multiple platforms, and the only languages i know well enough to accomplish this are C# and Java. i would love to see an implementation of the XNA codebase that is powered by OpenGL and would run on Mono, but i think that is merely wishful thinking at this point. </p> <p>I am curious to hear what others have experienced while building 3D games in something other than C++.</p> http://stackoverflow.com/questions/1880601/does-cliprect-parameter-of-the-bitmapdata-draw-method-really-clips-the-source 0 Does clipRect parameter of the BitmapData.draw method really clips the source? Juster 2009-12-10T12:17:57Z 2009-12-10T12:17:57Z <p>The <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/BitmapData.html#draw%28%29" rel="nofollow">documentation</a> says that clipRect parameter of the BitmapData.draw method sets clipping for the source. Reading this I wrote an AnimatedObject class for my potential flash game. This class draws a frame from a .png animation strip, and doesn't work with Flash scene hierarchy.</p> <p><code> var frame : Number;</p> <p>public function onDraw(backBuffer : BitmapData) : void { var frameClipRect : Rectangle = new Rectangle(int(frame) * celWidth, 0, frameWidth, frameHeight); // set a clip rect to pick a particular frame</p> <pre><code>var matrix : Matrix = new Matrix(); matrix.translate(-frameWidth / 2, -frameHeight / 2); if ( scale ) matrix.scale(scale, scale); if ( angle ) matrix.rotate(Math.PI * angle / 180.0); matrix.translate(frameWidth / 2, frameHeight / 2); matrix.translate(x, y); backBuffer.draw(bitmap, matrix, null, null, frameClipRect, true); </code></pre> <p>} </code></p> <p>I expected that this would work, but there is a problem with clipping. This code actually show nothing. I played a bit and figured out that <b>clipRect actually sets clipping for target bitmap, not for source.</b> Which is very strange and doesn't match with the documentation.</p> <p>What do you think? Does clipRect parameter of the BitmapData.draw method really clips the <b>source</b>? Is there a problem in my code?</p> <p>Thank you!</p> <p>Note: if you just omit frameClipRect parameter, then you sprites correctly transformed but showing every frame.</p> http://stackoverflow.com/questions/1877929/how-to-implement-ai-for-puyo-puyo-game 1 How to implement AI for Puyo Puyo game? Matt 2009-12-10T00:38:28Z 2009-12-10T08:34:37Z <p>Can someone give me some pointers on how I should implement the artificial intelligence (human vs. computer gameplay) for a Puyo Puyo game? Is this project even worth pursuing? </p> <p>The point of the game is to form chains of 4 or more beans of the same color that trigger other chains. The longer your chain is, the more points you get. My description isn't that great so here's a simple video of a game in progress: <a href="http://www.youtube.com/watch?v=K1JQQbDKTd8&amp;feature=related" rel="nofollow">http://www.youtube.com/watch?v=K1JQQbDKTd8&amp;feature=related</a></p> <p>Thanks!</p> http://stackoverflow.com/questions/1300755/persistent-connections-between-flash-client-and-java-server 1 Persistent connections between Flash client and Java server Peter 2009-08-19T15:32:48Z 2009-12-10T03:33:54Z <p>I'm new to Flash. I'm planning to create a game client in Flash (running in browser) that needs to talk to a server written in Java. Connection between client and server needs to be persistent.</p> <p>I'm aware of XMLSocket - is that the only way to go? Any recommendations?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1853412/real-time-strategy-game-programming-books-or-tutorials 2 Real Time Strategy Game Programming Books or Tutorials David Robles 2009-12-05T20:49:53Z 2009-12-09T23:16:19Z <p>I'm coding a simple RTS game as a hobbie, and to learn about pathfinding algorithms, a*, strategies, flocking, etc.</p> <p>I think I'm doing fine so far, but now that I have completed about 50% of the goals I wanted to achieve, I was looking for some tutorials/books to compare what I've been doing so far with the common techniques used in RTS games, but I didn't find much information.</p> <p>Do you know any good books or tutorials about programming RTS games?</p> http://stackoverflow.com/questions/1875830/how-to-implement-collision-effects-in-a-game 3 How to implement collision effects in a game ? phmr 2009-12-09T18:27:21Z 2009-12-09T20:48:23Z <p>I building a game with QT. Every objects on my GraphicsScene inherits from GraphicsPixmapItem (Player, Obstacles, bombs...). I would like to implment collision effects. For example when the player gets hover a bonus he can pick it. With the QT framework I can get the collidings items but I don't know which type they are as there isn't instanceof function. Any tips ?</p> <p>edit: I get the collision "event" the thing I want to do is handle the different collisions. I made another <a href="http://stackoverflow.com/questions/1876179/how-to-handle-multiple-collision-type-in-c">question</a> with better wording.</p> http://stackoverflow.com/questions/1876150/simple-efficient-weak-pointer-that-is-set-to-null-when-target-memory-is-dealloca 2 Simple, efficient weak pointer that is set to NULL when target memory is deallocated wonsungi 2009-12-09T19:15:15Z 2009-12-09T20:10:51Z <p><strong>Is there a simple, efficient weak/guarded pointer?</strong> I need multiple pointers to the same object that are all automatically set to NULL when the object is deleted. There is one "master" pointer that is always used to delete the object, but there can be several other pointers that reference the same object.</p> <p><strong>Here are some solutions that don't quite match my needs:</strong></p> <ul> <li><a href="http://stackoverflow.com/questions/909437/is-there-a-smart-pointer-that-is-automatically-nulled-when-its-target-is-destroye">QPointer</a>: I am not developing a QT app; I do not wish to include this libary/derive from QObject.</li> <li><a href="http://www.boost.org/doc/libs/1%5F41%5F0/libs/smart%5Fptr/weak%5Fptr.htm" rel="nofollow">boost::weak_ptr</a>: an exception is thrown when accessing a deallocated object. Too expensive for my situation: it should be normal to test a weak pointer; I plan to do some manual clean-up when a weak pointer is no longer valid.</li> <li><a href="http://lukepalmer.wordpress.com/2006/07/11/low-overhead-weak-pointers/" rel="nofollow">Low-Overhead Weak Pointers</a>: This is very close to what I am looking for, except I don't like the fact "This scheme is only guaranteed to work as long as you don’t allocate 2**sizeof(int) times in the same location."</li> </ul> <p><strong>Why I need these weak/guarded pointers:</strong> I have a game with a list of game objects. Some objects are dependent on others, for example a debug/stats object that is associated with a game entity. The debug/status object displays useful info about the game entity, but it only makes sense while the game entity exists. So if the game entity is deleted, the debug/stats object should realize this and delete itself. (Another idea is a tracking missile: instead of deleting itself, it may search for a new target.)</p> <p>I wish to keep the debug/stats logic separate from the game entity. The game entity should not have to know a debug/stats object is attached to it. While I'd prefer an answer for weak/guarded pointers, I also welcome different ways to approach my specific task. I am thinking I may have to implement a <a href="http://www.gamasutra.com/view/feature/4015/managing%5Fdata%5Frelationships.php?print=1" rel="nofollow">game object manager</a> that tracks object lifetimes and uses handles instead of raw pointers to memory addresses.</p> <p>I am developing in C++.</p> http://stackoverflow.com/questions/1861904/bitmap-compare-method-on-the-iphone-unity3d 0 Bitmap compare method on the iPhone (unity3d) Seth Illgard 2009-12-07T18:22:25Z 2009-12-09T17:48:03Z <p>Hi. What would be the best method to compare 2 bitmaps and get the correlation between the 2 (0 being completely different and 1 being exactly the same) in Unity3d on the iPhone? I am using C# since documentation says that using Boo or UnityScript will increase the size of the application.</p> <p>What I need is something similar to the fingerprint identification methods but not as accurate. Since this is intended to run on the iPhone performance is a big issue here.</p> <p>Example images: </p> <p><img src="http://img25.imageshack.us/img25/303/294906.jpg" alt="alt text"> <img src="http://img138.imageshack.us/img138/842/40248741fireworkexplosi.jpg" alt="alt text"></p> <p>For those I would expect to have a correlation factor of about 0.5 since they are similar but differ in color. There are a number of different dimensions of comparison, but the basic ones are color and shape.</p> <p>Any help will be greatly appreciated.</p> http://stackoverflow.com/questions/1176266/what-are-the-gotchas-when-developing-an-iphone-game 6 What are the "gotchas" when developing an iPhone Game? Piedad 2009-07-24T07:42:37Z 2009-12-09T14:25:37Z <p>Am used to developing business and reference apps. Now I have to do an iPhone game. What tips can you share to help me with:</p> <ol> <li>understanding the scope of the project</li> <li>defining the deliverables</li> <li>specifying the game play and other parameters</li> <li>estimating the development effort</li> <li>testing the game</li> </ol> <p>A big question, I know. Thanks!</p> http://stackoverflow.com/questions/1149856/help-in-choosing-a-3d-game-engine 3 Help in choosing a 3D game engine Sujay Ghosh 2009-07-19T13:05:01Z 2009-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/1034458/why-arent-video-games-written-in-java 28 Why aren't video games written in Java? musicfreak 2009-06-23T18:55:50Z 2009-12-09T02:36:25Z <p>So I was just wondering, why aren't many video games (commercial 3D games, not random open source 2D ones) written in Java? In theory, it makes a lot of sense; you get a productivity boost and a cross-platform application for free (among other things, such as the vast amount of Java libraries, and built-in garbage collection -- although I admit I'm not sure if that's a good thing). So why is it never used? I can't think of a single semi-popular commercial game written for the Java platform.</p> <p>Is it because of performance? Well, I've seen games written for the .NET platform, so why not Java? Also, most of the heavy lifting would be done by the GPU anyway, through OpenGL.</p> <p>Any insight would be great, thanks.</p> http://stackoverflow.com/questions/1865430/as3-game-development 1 AS3: Game development Oleg Tarasenko 2009-12-08T08:08:12Z 2009-12-08T22:34:14Z <p>Hi!</p> <p>I am looking a game framework for flex/AS3. I want to use it to create simple 2d games, such as tower defense, etc.</p> <p>Maybe someone can suggest something?</p> http://stackoverflow.com/questions/1549946/what-can-be-used-as-a-heuristic-for-bubblet-game 0 What can be used as a heuristic for Bubblet game? cambr 2009-10-11T05:37:36Z 2009-12-08T19:00:02Z <p>I am planning to make a <a href="http://kny.iki.fi/bubblet.html" rel="nofollow">Bubblet game</a> in Java, because I simply love the game.</p> <p>What can be used as a <strong>heuristic</strong> for the game? I will make it 30x30 or bigger, and I cannot figure out how to make the computer play the game efficiently...</p> <p>Can you suggest some idea? Thanks</p> http://stackoverflow.com/questions/1840154/rpg-dialogue-engine-structure 3 RPG dialogue engine / structure mac_55 2009-12-03T14:22:45Z 2009-12-08T14:25:21Z <p>I've always been interested in the data structures involved in an RPG (Role-Playing Game). In particular, I'm curious about dialogue and events based actions.</p> <p>For example: If I approach an NPC at point <em>x</em> in the game, with items <em>y</em> and quests <em>z</em>, how would I work out what the NPC needs to say? Branching dialogue and responding to player input seems as trivial as having a defined script, and user input causes the script reader to jump to a particular line in the script, which has a corresponding set of response lines (much like a choose your own adventure)</p> <p>However, tying in logic to work out if the player has certain items, and completed certain quests seems to really ruin this script based model.</p> <p>I'm looking for ideas (not necessarily programming language examples) of how to approach all of this dialogue and logic, and separate it out so that it's very easy to add new branching content, without delving into too much code.</p> <p>This is really an open question. I don't believe there's a single solution, but it'd be good to get the ball rolling with some ideas. As more of a designer than a programmer, I'm always interested in ways to separate content and code.</p> http://stackoverflow.com/questions/1862287/optimizing-a-pinhole-camera-rendering-system 2 Optimizing a pinhole camera rendering system knight666 2009-12-07T19:24:37Z 2009-12-08T12:59:03Z <p>Hello,</p> <p>I'm making a software rasterizer for school, and I'm using an unusual rendering method instead of traditional matrix calculations. It's based on a <a href="http://en.wikipedia.org/wiki/Pinhole%5Fcamera%5Fmodel" rel="nofollow">pinhole camera</a>. I have a few points in 3D space, and I convert them to 2D screen coordinates by taking the distance between it and the camera and normalizing it</p> <pre><code>Vec3 ray_to_camera = (a_Point - plane_pos).Normalize(); </code></pre> <p>This gives me a directional vector towards the camera. I then turn that direction into a ray by placing the ray's origin on the camera and performing a ray-plane intersection with a plane slightly behind the camera.</p> <pre><code>Vec3 plane_pos = m_Position + (m_Direction * m_ScreenDistance); float dot = ray_to_camera.GetDotProduct(m_Direction); if (dot &lt; 0) { float time = (-m_ScreenDistance - plane_pos.GetDotProduct(m_Direction)) / dot; // if time is smaller than 0 the ray is either parallel to the plane or misses it if (time &gt;= 0) { // retrieving the actual intersection point a_Point -= (m_Direction * ((a_Point - plane_pos).GetDotProduct(m_Direction))); // subtracting the plane origin from the intersection point // puts the point at world origin (0, 0, 0) Vec3 sub = a_Point - plane_pos; // the axes are calculated by saying the directional vector of the camera // is the new z axis projected.x = sub.GetDotProduct(m_Axis[0]); projected.y = sub.GetDotProduct(m_Axis[1]); } } </code></pre> <p>This works wonderful, but I'm wondering: can the algorithm be made any faster? Right now, for every triangle in the scene, I have to calculate three normals. </p> <pre><code>float length = 1 / sqrtf(GetSquaredLength()); x *= length; y *= length; z *= length; </code></pre> <p>Even with a fast reciprocal square root approximation (<code>1 / sqrt(x)</code>) that's going to be very demanding.</p> <p>My questions are thus:<br> Is there a good way to approximate the three normals?<br> What is this rendering technique called?<br> Can the three vertex points be approximated using the normal of the centroid? ((v0 + v1 + v2) / 3)</p> <p>Thanks in advance.</p> <p>P.S. "You will build a fully functional software rasterizer in the next seven weeks with the help of an expert in this field. Begin." I ADORE my education. :)</p> <p><strong>EDIT:</strong></p> <pre><code>Vec2 projected; // the plane is behind the camera Vec3 plane_pos = m_Position + (m_Direction * m_ScreenDistance); float scale = m_ScreenDistance / (m_Position - plane_pos).GetSquaredLength(); // times -100 because of the squared length instead of the length // (which would involve a squared root) projected.x = a_Point.GetDotProduct(m_Axis[0]).x * scale * -100; projected.y = a_Point.GetDotProduct(m_Axis[1]).y * scale * -100; return projected; </code></pre> <p>This returns the correct results, however the model is now independent of the camera position. :(</p> <p>It's a lot shorter and faster though!</p> http://stackoverflow.com/questions/1866204/game-development-artificial-intelligence-with-php -2 Game Development & Artificial Intelligence With PHP Sarfraz Ahmed 2009-12-08T10:56:06Z 2009-12-08T12:24:40Z <p>Hello All,</p> <p>A friend of mine told me that it is possible to even create games with PHP. </p> <p>Is that really possible? </p> <p>Can we implement artificial intelligence using PHP?</p> <p>Looking for your ideas.</p> <p>Thanks</p> http://stackoverflow.com/questions/1780675/performance-improvements-for-the-open-gl-es-code-in-the-crashlanding-sample-code 0 Performance improvements for the Open GL ES code in the CrashLanding sample code? MrDatabase 2009-11-23T01:20:16Z 2009-12-08T06:37:22Z <p>I'm making an iPhone game based on the <a href="http://www.71squared.co.uk/iPhone/CrashLanding.zip" rel="nofollow">CrashLanding sample code</a>. The sample code includes some Open GL ES stuff (Texture2D and MyEAGLView). <strong>What are some ways to improve the performance of this code?</strong> </p> <p>I'm fine w/ making certain trade-offs to improve the performance... but I don't what these trade-offs might be. For example perhaps one can simplify and speed-up the code by requiring the image files to have dimensions that are a power of 2, or perhaps square dimensions, or ... ?)</p> http://stackoverflow.com/questions/1837979/handling-touch-detection-in-iphone-with-c 0 Handling touch detection in iPhone with C++? Mr.Gando 2009-12-03T06:09:05Z 2009-12-07T23:49:36Z <p>I'm working on a game for the iPhone, for several reasons most of the code is in C++. I need to write a TouchesManager for my Game, I know about the methods touchesBegan: touchesEnded: and touchesMoved:</p> <p>I would really like to make a manager in C++ so I can subscribe some classes to this manager, so they can handle touch events in my Game. I have been thinking on making a C++ interface to handle the "touchesBegan: ended: and moved:" that I could implement in the classes I'm interested to respond to touches...</p> <p>I would really like to know a good simple way this could be achieved, I really need to keep C++ for many reasons ( I love Obj-C / Cocoa-touch, don't get me wrong here please ) </p> <p>Thank you all!</p> http://stackoverflow.com/questions/1863479/is-it-possible-to-block-deny-a-cast-conversion-in-java 4 Is it possible to block/deny a cast conversion in Java? David Robles 2009-12-07T22:50:14Z 2009-12-07T23:46:35Z <p>I have the code of a simple game, where an AgentInterface must be implemented in order to create an agent controller for one of the characters in the game. GameState is a class the implements GameStateInterface, and an object that implements this interface can be passed to the agent, so the agent can read and analyze the data from game state, and the agent must return the appropriate action (returned as an int) that the character should take.</p> <p>This is the AgentInterface that agents must implement:</p> <pre><code>public interface AgentInterface { // the return value specifies the direction of the joystick public int action(GameStateInterface gs); } </code></pre> <p>Running the game with an agent called MyAgent:</p> <pre><code> GameState gs = new GameState(); AgentInterface agent = new MyAgent(); while (true) { // more code here int bestAction = agent.action(gs) // more code here } </code></pre> <p>But, there is some information in GameState that the agent should NOT be able to access, since that would be cheating for the controller. But, doing a cast conversion from GameStateInterface to GameState would allow the agent to access information that is not defined in the GameStateInterface, like this:</p> <pre><code>public MyAgent implements AgentInterface { public int action(GameStateInterface gs) { int nLives = ((GameState) gs).nLivesRemaining; // IS IT POSSIBLE TO DENY/PREVENT THIS CAST?? // Do more stuff here return BestAction; } } </code></pre> <p>My question would be, is it possible to block a cast conversion? I know polymorphism is one of the main features of Java and Object-Oriented Programming Languages, but in cases like this I would like to avoid cast conversions.</p> <p>I know this can be solved in many other ways, but I was curious to know if it is possible to do this.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1863074/using-uitextfield-without-interface-builder 0 Using UITextField without Interface Builder Sampo Yrjänäinen 2009-12-07T21:37:10Z 2009-12-07T21:37:10Z <p>I am makeing my first simple iPhone game. When player achieve a new high score there is a need to ask player's name. Is it possible to accomplish a simple view where is a label "Please give your name" and UITextField for name input without using Interface Builder. So how can I progmatically set up this kind of simple view and also get rid of it when name is entered? Is it somehow possible to add these UI components over existing game view so that the game state where game halted would be seen as background for the name entering. I have tried many different angles but couldn't make it work on my own.</p> http://stackoverflow.com/questions/14087/automated-testing-a-game 13 Automated testing a game MrValdez 2008-08-18T01:44:57Z 2009-12-07T08:06:40Z <p><strong>Question</strong></p> <p>How would you go adding automated testing to a game?</p> <p>I believe you can unit test a lot of the game engine's functionality (networking, object creation, memory management, etc), but is it possible to automate test the actual game itself?</p> <p>I'm not talking about gameplay elements (like Protoss would beat Zerg in map X), but I'm talking about the interaction between the game and the engine.</p> <p><strong>Introduction</strong></p> <p>In game development, the engine is just a platform for the game. You could think of the game engine as an OS and the game as a software the OS would run. The game could be a collection of scripts or an actual subroutine inside the game engine.</p> <p><strong>Possible Answers</strong></p> <p>My idea is this: </p> <p>You would need an engine that is deterministic. This means that given one set of input, the output would be exactly the same. This would inlude the random generator being seeded with the same input.</p> <p>Then, create a bare-bone level which contains a couple of objects the avatar/user can interact with. Start small and then add objects into the level as more interactions are developed.</p> <p>Create a script which follows a path (tests pathfinding) and interact with the different objects (store the result or expected behavior). This script would be your automated test. After a certain amount of time (say, one week), run the script along with your engine's unit tests.</p> http://stackoverflow.com/questions/580103/links-for-simple-game-algorithms 2 Links for simple game algorithms Click Ok 2009-02-24T01:14:48Z 2009-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/1823927/simulated-time-in-a-game-loop-using-c 1 Simulated time in a game loop using c++ Tim 2009-12-01T04:02:59Z 2009-12-06T00:16:30Z <p>I am building a 3d game from scratch in C++ using OpenGL and SDL on linux as a hobby and to learn more about this area of programming.</p> <p>Wondering about the best way to simulate time while the game is running. Obviously I have a loop that looks something like:</p> <pre><code>void main_loop() { while(!quit) { handle_events(); DrawScene(); ... SDL_Delay(time_left()); } } </code></pre> <p>I am using the SDL_Delay and time_left() to maintain a framerate of about 33 fps.</p> <p>I had thought that I just need a few global variables like</p> <pre><code>int current_hour = 0; int current_min = 0; int num_days = 0; Uint32 prev_ticks = 0; </code></pre> <p>Then a function like :</p> <pre><code>void handle_time() { Uint32 current_ticks; Uint32 dticks; current_ticks = SDL_GetTicks(); dticks = current_ticks - prev_ticks; // get difference since last time // if difference is greater than 30000 (half minute) increment game mins if(dticks &gt;= 30000) { prev_ticks = current_ticks; current_mins++; if(current_mins &gt;= 60) { current_mins = 0; current_hour++; } if(current_hour &gt; 23) { current_hour = 0; num_days++; } } } </code></pre> <p>and then call the handle_time() function in the main loop.</p> <p>It compiles and runs (using printf to write the time to the console at the moment) but I am wondering if this is the best way to do it. Is there easier ways or more efficient ways?</p> http://stackoverflow.com/questions/1836881/django-based-skill-implementation 2 Django-based skill implementation awithrow 2009-12-03T00:28:29Z 2009-12-05T06:54:12Z <p>I'm working on a RPG using django and am considering different options for implementing part of the skill system.</p> <p>Say I have a base skill class ie, something like:</p> <pre><code>class Skill (models.Model): name = models.CharField() cost = models.PositiveIntegerField() blah blah blah </code></pre> <p>What would be some approaches to implementing specific skills? The first option that comes to mind is:</p> <p>1) Each skill extends Skill class and overrides specific functions:</p> <p>Not sure how this would work in django. Seems like having a db table for each skill would be overkill. Could the child class be abstract while the Skill class have an entry? Doesn't sound right. How about using a proxy class?</p> <p>What are some other options. I'd like to avoid a scripted approach for a pure django approach. </p> http://stackoverflow.com/questions/1844213/building-game-logic-with-events 2 Building game logic with events Styggentorsken 2009-12-04T01:05:55Z 2009-12-05T00:22:20Z <p>Hi! I'm making a game engine in C++. It is supposed to read all its game-level logic from XML files, so I'm in need of a simple, but rock solid way of creating and handling events. So far all i have done is to use an Action class. It's practically equivalent to throwing callbacks around.<br><br> An example could be an object (a map), that can change the scene if you click it. What bothers me is that I want to be able to delete the scene without worrying about all the objects that used to activate it.<br><br>Is there a widely accepted way to do this? The way that I have done this so far is to make all the dependent/dependable objects inherit a dependent/dependable class. The class provides them with a list over objects that depend on them or that they depend on.</p> <pre><code>class Dependent { protected: Dependent(); /// Warning all connected \ref Dependent that the Dependent does not exist. ~Dependent(); /// Connected Dependent \see connect(Dependent*, Dependent*) std::list&lt;Dependent*&gt;* dependents; /// Register a Dependent. void newDependent(Dependent*); /// Check if dependent on the given Dependent. bool listeningTo(const Dependent*) const; /// Used by a destructing connected Dependent to warn that it no longer exists. void stopListening(Dependent*); friend void connect(Dependent*, Dependent*); }; </code></pre> <p>All this for just the ability to check if an element has ceased to exist. There is no automatic checking that the objects don't call the other after one has been deleted, but I'm able to do the check without worrying about using pointer that lead to nowhere.<br><br> I'm hoping that there is a more elegant way to do this. </p> http://stackoverflow.com/questions/1849372/mud-programming-questions 2 MUD Programming questions Mike Trpcic 2009-12-04T20:12:02Z 2009-12-04T21:16:56Z <p>I used to play a MUD based on the <a href="http://www.smaug.org/" rel="nofollow">Smaug Codebase</a>. It was highly customized, but was the same at the core. I have the source code for this MUD, and am interested in writing my own (Just for a fun project). I've got some questions though, mostly about design aspects. Maybe someone can give me a hand?</p> <ol> <li>What language should I use? Interpreted or compiled? Does it make a difference? SMAUG is written in C. I am comfortable with a lot of languages, and have no problem learning more.</li> <li>Is there a particular approach I should follow to not hinder performance? Object Oriented, functional, etc?</li> <li>What medium should I use for storing data? Flat files (This is what SMAUG uses), or something like SQLite. What are the performance pros/cons of both?</li> <li>Are there any guides that anyone knows of on how to get started on a project like this?</li> </ol> <p>I want it to scale to allow 50 players online at a time with no decrease in performance. If I used Ruby 1.8 (very slow), would it make a difference compared to using Python 3.1 (Faster), or compiled C/C++?</p> <p>If anyone can lend a hand and give some info or advice, I'd be eternally grateful.</p> http://stackoverflow.com/questions/432016/what-commercial-games-have-been-written-with-pygame 9 What commercial games have been written with pyGame? Soviut 2009-01-11T00:13:38Z 2009-12-04T19:11:35Z <p>I'm curious to know what commercial games, if any, have been written with pyGame. The scale doesn't matter much, it doesn't have to be a massive success, but it should be significant that more than 2 people have ever heard of it.</p> <p>I ask this because nearly everything I saw on the pyGame website seemed fairly underwhelming. I understand the amount of work that goes into even simple game development, but I'm looking for examples that, say, do a better job than your average Flash "defend the castle" game.</p> <p><strong>EDIT:</strong> Feel free to mention what scale the game is on, if its an MMO, web game, client app, number of players, overall success, etc.</p> http://stackoverflow.com/questions/1812710/farseer-physics-xna-geom-tripping 0 Farseer Physics XNA Geom 'Tripping' Shahin 2009-11-28T15:02:02Z 2009-12-04T13:54:45Z <p>Hello, I have an issue similar to <a href="http://farseerphysics.codeplex.com/Thread/View.aspx?ThreadId=72364" rel="nofollow">http://farseerphysics.codeplex.com/Thread/View.aspx?ThreadId=72364</a></p> <p>I have a rectangle player geom, and many rectangle tile geoms lined up next to each other.</p> <p>Occasionally when the player geom is crossing between them he seems to clip onto the corners of the tile geom and as a result rotate over.</p> <p>Even when switching the moment of inertia to infinity which prevents rotation, the player geom "hops" when it clips the edge.</p> <p>Here is a screenshot of the geoms <img src="http://notspike.com/PrototypeG/trip.png" alt="tripping image"></p> <p>Is there any fix for this? I've tried the Farseer forums but it seems pretty inactive</p> <p>Here is a link to a video using a circle geom for the player</p> <p><a href="http://www.notspike.com/PrototypeG/trip.avi" rel="nofollow">http://www.notspike.com/PrototypeG/trip.avi</a></p> http://stackoverflow.com/questions/1779625/game-platform-engine-for-inexperienced-solo-developer 1 Game platform/engine for inexperienced/solo developer? 4thSpace 2009-11-22T19:01:38Z 2009-12-04T11:01:50Z <p>There are a number of discussions on stackoverflow.com about what is the best iPhone game platform/engine. My question is not necessarily what is the best, but what is the best for an experienced iPhone developer but not not experienced in game design. This will also be a solo project plus a graphics designer. Consider I will be working full-time at my day job and will need to support a number of other iPhone apps. In other words, designing the game will be very much a part-time project but needs to go out in 2 - 4 months(?). Ramp up time needs to be quick. I'd like to build 2D in the beginning and then go to 3D.</p> <p>I lean toward Unity 3D since it has lots of documentation and help. From what I can see, the iPhone basic version is $399 and you get the IDE for free. Can anyone confirm?</p> <p>Unity3D is for 3D but I've read you can still do 2D. I'm trying to find out what is involved there. One drawback with Unity3D is the 8-15 second Unity splash screen. I've also read this doesn't get much better with the higher priced version. But I suppose that is the price you pay for the convenience of having a simpler framework available.</p> <p>Cocos2d is a great framework and free but lacks documentation. It also requires much ramp up time to learn its framework and choose a suitable physics engine. I don't see this route as practical. I can see learning it across a long timeline as a side project but then you eat into getting your game out the door fairly quick. If I go with Unity, I probably abandon Cocos2d altogether since I will have invested so much into Unity.</p> <p>Does my reasoning for Unity sound feasible?</p> <p>---EDIT---</p> <p>Based on some of the comments, here is the type of game I'm referring to initially: A 2D shooter similar to Zomebieville but most likely without its large feature set.</p>