User Ricket - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T00:23:21Z http://stackoverflow.com/feeds/user/47493 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1930725/svn-reverse-merge 2 SVN reverse merge? Ricket 2009-12-18T21:14:40Z 2009-12-18T21:48:31Z <p>My SVN repository was perfect at revision 497. I performed several bad commits, so that now it is at revision HEAD. I see that to rollback you should use a command like this:</p> <pre><code>svn merge -r HEAD:497 . </code></pre> <p>while in the working directory (and the working directory is at the HEAD revision). But is that the right command? Or do I use HEAD:498? or 496? I already ran that command and the current revision doesn't appear to be the same as 497, because when I update -r 497 (or when I have a 497 working copy and I update -r HEAD), a lot of file updates occur.</p> <p>Do I have some sort of fencepost problem, where HEAD:497 actually reverts to 496, or something? Or is it that when I update, SVN goes back through each revision, despite the fact that the HEAD and 497 are identical?</p> <p><strong>Edit:</strong></p> <p>Just to clarify, as I said earlier when I update between 497 and my merged HEAD, I see a lot of file changes take place. I thought that if 497 and HEAD were identical, it would detect that, and no file changes would occur; it would simply say "Updated to revision 497." So is my command wrong, or is this thinking wrong? (and if so, why?)</p> http://stackoverflow.com/questions/1926250/client-server-project-structure-folder-structure-build-files-etc 2 Client/server project structure, folder structure, build files, etc. Ricket 2009-12-18T04:17:57Z 2009-12-18T14:50:36Z <p>I'm writing a client and server application. Right now I've just been developing it on my own, so I have written it as one Eclipse project, organized into Java packages (org.myorg.server, org.myorg.client, org.myorg.networksystem, etc.). The project deploys to a single jar file. Then, the client is an applet, so I simply point the applet <em>code</em> parameter at org.myorg.client.ClientApplet inside the jar file, whereas when I run the server, it's a command line application and I just run:</p> <blockquote> <p>java -jar MyJar.jar org.myorg.server.ServerApplication</p> </blockquote> <p>Well, I need to clean up its structure and improve the build process. I also want to separate the jar files, so that an user does not have access to a copy of the server built right into the jar file as it is now.</p> <p>I want to use a continuous integration server such as <a href="http://cruisecontrol.sf.net/" rel="nofollow">CruiseControl</a>. It would be really cool if I only needed to check my code into the SVN repository; then the CruiseControl server would grab the code, compile it and package it into separate jars, then deploy the server jar onto my dedicated server and run it, and also deploy the client jar onto my web server so that the applet is updated.</p> <p>I can figure out CruiseControl. My current issue is how to separate the code. It's nicely separated into client and server packages, but then there are some shared packages such as the network protocol. Should I separate my project into 3 projects for client, server, and common? Should I do something else? I was considering writing Ant build files by hand, but I would really like to stay in Eclipse.</p> <p>How can I best organize my code to meet these goals?</p> <p>(by the way, sorry if this question is confusing, I think I'm having a hard time putting into words all of the different questions swirling around my head)</p> http://stackoverflow.com/questions/1922587/how-to-keep-subversion-and-a-remote-server-via-ftp-in-sync 2 How to keep Subversion and a remote server (via FTP) in sync? Ricket 2009-12-17T15:38:36Z 2009-12-17T15:58:57Z <p>We are having a hard time keeping Subversion and FTP in-sync. Sometimes we forget to commit changes and just push them to the web server, we have .svn folders scattered throughout our web server, some things exist one place and don't exist in the other, etc.</p> <p>I want to take the time to fix this, today. What is the solution? Is there a way that SVN can be linked to our web server, so that we can commit to both the repository and to the web server via FTP? Should we ask our web host for some other system that would better sync with the SVN repository? How do we enforce that the repository and the web server are both in sync? How do we remove the .svn folders?</p> <p>Just as the title says, <strong>how can we keep our SVN repository and our web server in sync?</strong></p> http://stackoverflow.com/questions/1922355/php-mysql-error-hook 0 PHP: MySQL error hook? Ricket 2009-12-17T15:08:26Z 2009-12-17T15:14:38Z <p>I've been developing a web application with PHP and MySQL. The other day, I made some changes to the database and adapted one page to the new table layout but not another page. I didn't test well enough, so the site went online with the error still in the other page. It was a simple MySQL error, and once one of my co-workers spotted it, it was a simple fix.</p> <p>Now that it's happened, I'd like to know how I can catch other MySQL errors. I'm thinking about some sort of notification system, that would send me an email when a mysql_query() fails.</p> <p>I understand, of course, that I wouldn't be notified until after the error occurred, but at least I would have been notified immediately, rather than my co-worker come tell me after who-knows-how-many other people had run into the same fatal error.</p> <p><strong>Is there some sort of way to put in a hook, so that PHP automatically runs a function when an error happens? Or do I need to go through my code and add this functionality to every location where I use mysql_query()?</strong></p> <p>If the latter, do you have any recommendations on how to prevent something like this in the future? If this is the case I'll probably create a class to abstract SQL operations. I know I should have been doing this the whole time... But I did organize my sets of functions into different include files, so at least I'm doing most things right. Right?</p> http://stackoverflow.com/questions/1866204/game-development-artificial-intelligence-with-php/1898481#1898481 0 Answer by Ricket for Game Development & Artificial Intelligence With PHP Ricket 2009-12-14T01:23:59Z 2009-12-14T01:23:59Z <p><a href="http://www.vanthia.com/" rel="nofollow">Vanthia</a></p> <p><a href="http://sf.net/projects/phprpg/" rel="nofollow">PHPRPG/Ph'@ntasy/Ph'@ntom</a></p> <p><a href="http://www.lotgd.net/" rel="nofollow">Legend of the Green Dragon</a></p> <p>These are just a few of the PHP games out there. Oh, and I made a project called <a href="http://rickyc.org/magbor/" rel="nofollow">Magbor</a> (a little in-browser multiplayer game) which is heavy on PHP and JavaScript. So yes, you can see that it is possible.</p> http://stackoverflow.com/questions/1856113/oo-design-and-mirrored-duplicated-methods/1858182#1858182 0 Answer by Ricket for OO design and mirrored/duplicated methods Ricket 2009-12-07T06:21:20Z 2009-12-07T06:21:20Z <p><strong>First option:</strong> Make the collision directional. For example, if the box is stationary, it doesn't check its own collisions with anything else; but the moving circle checks collision with the box (and other stationary objects). This is unintuitive because all our lives we're taught "equal and opposite reactions". Pitfall: moving objects would duplicate collisions with other moving objects.</p> <p><hr></p> <p><strong>Second option:</strong> Give every object a unique ID number. In the collision checking method, only check the collision if the first parameter/object has a lower ID than the second parameter.</p> <p>Say the box has id=2 and circle has id=5. Then, "box collides with circle" would be executed, since box.id &lt; circle.id; but then when the circle is checking collisions, "circle collides with box" will just return immediately without checking the collision, because the collision would have already been checked.</p> http://stackoverflow.com/questions/1756709/game-programming-book-using-opengl-and-directx/1858083#1858083 1 Answer by Ricket for Game programming book using OpenGL and DirectX Ricket 2009-12-07T05:57:03Z 2009-12-07T05:57:03Z <p>You're probably going to need to pick one; OpenGL <em>or</em> DirectX, not both. Also, most good game programming books use DirectX (unfortunately). Just search around <a href="http://www.amazon.com/" rel="nofollow">Amazon</a>, read reviews, and figure out for yourself which book would suit your needs best.</p> <p>It may be worthwhile to learn DirectX or OpenGL first, then move into game programming. For this, the <a href="http://amzn.com/0321481003" rel="nofollow">OpenGL Programming Guide 6th edition</a> (AKA the red book) is best for learning OpenGL (don't move to GL 3 just yet). I'm not particularly sure of the best DirectX book(s) (can anyone comment on this?).</p> http://stackoverflow.com/questions/1189236/data-structures-for-message-passing-within-a-program 6 Data structures for message passing within a program? Ricket 2009-07-27T16:35:46Z 2009-11-04T22:39:55Z <p>I'm trying to write a simple RPG. So far, each time I try to start it instantly becomes a mess and I don't know how to organize anything. So I'm starting over, trying to prototype a new structure that is basically the MVC framework. My app starts execution in the Controller, where it will create the View and Model. Then it will enter the game loop, and the first step in the game loop is to collect user input.</p> <p>User input will be collected by a part of the View, because it can vary (a 3D View will directly poll user input, whereas maybe a remote View will receive it over a telnet connection, or a command-line view would use System.in). The input will be translated into messages, and each message will be given to Controller (by a method call) which can then interpret the message to modify Model data, or send data over the network (as I am hoping to have a networking option).</p> <p>This message handling technique can also be used, in the event of a networked game, to process network messages. Am I keeping the spirit of the MVC so far?</p> <p>Anyway my question is, what is the best way to represent these messages?</p> <p>Here is a use case, with each message in italics: Let's say the user starts the game and <em>chooses character 2</em>. Then the user <em>moves to coordinates (5,2)</em>. Then he <em>says to public chat, "hi!"</em>. Then he chooses to <em>save and quit</em>.</p> <p>How should the view wrap up these messages into something the controller can understand? Or do you think I should have separate controller methods like chooseCharacter(), moveCharacterTo(), publicChat()? I'm not sure that such simple implementation would work when I move to a networked game. But at the other end of the extreme, I don't want to just send strings to the Controller. It's just tough because the choose-character action takes one integer, the move-to takes two integers, and the chat takes a string (and a scope (public private global) and in the case of private, a destination user); there's no real set data type to it all.</p> <p>Also any general suggestions are very welcome; am I worrying about this at the right time? Am I headed down the right path to a well-laid-out MVC app? Is there anything I've forgotten?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1201361/3d-game-development-tips-especially-game-architecture 9 3D Game Development tips (especially game architecture) Ricket 2009-07-29T16:07:21Z 2009-11-04T22:31:31Z <p><strong>tl;dr version:</strong> What is the best advice (that you learned by experience and not from books) that you can give me, with regards to 3D game architecture? (as in, how to design and connect the components of a 3D game)</p> <p><hr /></p> <p>When it comes to programming, there is only so much you can learn from books. It seems to me, many of the things learned are learned from other people, or by <strong>experience</strong>. Even learning something in a classroom has its advantages over books; the professor might slip in a little tidbit of knowledge that he learned from his experience, and it can make all the difference.</p> <h2>I'm looking for those tidbits here.</h2> <p>Books on game development only go so far. There's a big difference about a book that explains the logic and syntax of a programming language, and a book that tries to tell you how to make a game. The latter doesn't work so well (at least for me); but the former is the whole reason I'm studying computer science.</p> <p>I am going into my second year of college, and I'm 19 years old. <strong>I don't have experience</strong>, I have book knowledge. So I'm trying to piggyback off of you and your knowledge that you've gained from experience.</p> <h2>My current topic of interest is game architecture.</h2> <p>(or "engine design" if you prefer, though I'm not looking to create a everything-but-the-kitchen-sink game engine)</p> <p>I recently asked a question, <a href="http://stackoverflow.com/questions/1189236/data-structures-for-message-passing-within-a-program">Data structures for message passing within a program?</a> and it resulted in a long, <a href="http://stackoverflow.com/questions/1189236/data-structures-for-message-passing-within-a-program/1191261#1191261">excellent answer</a> from <a href="http://stackoverflow.com/users/103258/haffax">haffax</a>. To him, he was just rattling off his experience and the knowledge he's gained from it; to me, it gave me many new things to think about that I had never read in a book before, and haven't experienced for myself. Go check out the answer, and up it if you like it.</p> <p>From it, I thought more about message passing within a program. I thought about how perhaps MVC is not a good fit for game architecture. His concepts of all game objects being equal and not a hierarchy, where instead you add "Features" to a game object, is something I've never heard before, and I really like it. And right at the beginning of the question he gave simple bits of advice:</p> <blockquote> <p>Before starting to design any of the packages and classes, start with an analysis</p> </blockquote> <p>...</p> <blockquote> <p>And for motivation, <strong>I speak from experience here</strong>, don't think of your task as writing a game engine, write a game!</p> </blockquote> <h2>I want more answers like that.</h2> <p>What are the most important game architecture concepts and tricks that you've taken from your experience as a game developer? When you sit down to write a game, how do you organize things? Do you separate your view and your model, or do you intertwine them and refactor later? What do you want to say about the effectiveness of MVC as a game architecture pattern? How do you keep track of so many things (graphics, audio, file loading, collision, AI, network) and make them all work together to create a finished game? How do you use design patterns and preserve the object oriented-ness of your game? How do you write automated tests for your game?</p> <p>I can come up with a million questions, but right now I just want to hear in general, whatever sticks out in your mind. What sort of experiences have you been through that changed your thinking? What is your philosophy when writing your games? How do you stay organized amidst the confusion and the massive-ness of the task of 3D game creation?</p> <h2>What game development tricks have you learned from experience?</h2> <p>Thank you for taking the time to read &amp; respond!!</p> http://stackoverflow.com/questions/551539/what-is-the-best-way-to-monitor-community-driven-websites-like-stackoverflow-dig 2 What is the best way to monitor community-driven websites like stackoverflow, digg, etc? Ricket 2009-02-15T20:35:24Z 2009-10-26T13:33:56Z <p>I've tried RSS feeds, but these always-updating sites that have tons of entries per day just fill up my poor reader. I do keep my Google Reader, I monitor quite a few feeds, but they are all (with the exception of Lifehacker and icanhascheezburger) feeds that have at most one or two entries per day.</p> <p>Right now, I keep a bookmark in my toolbar for Stack Overflow and click it at random times, whenever I'm not doing anything, but I always feel like I'm missing the important posts by taking random samples.</p> <p>How do you monitor stackoverflow? What's the best way to get the best information out of it while not having to deal with the questions that I neither care about nor have time for?</p> <p>How did you find this question in the sea of questions here on stackoverflow?</p> http://stackoverflow.com/questions/585769/solved-recommended-3d-model-type-for-in-game-character-model-loaded-manually 3 [SOLVED] Recommended 3D model type for in-game character model, loaded manually? Ricket 2009-02-25T12:20:42Z 2009-10-19T11:33:21Z <p>I'm writing a game in JOGL and need to represent the in-game character. I plan to use skeletal animation for the character movements, and of course the character will be skinned. I can't seem to find any good model loaders for JOGL so I plan to load the filetype myself, based on specs or something. I also plan to use Blender as my 3D modeler, so some type that exists in there would be best.</p> <p>What filetype do you recommend I use? .blend? .x, .3ds, .md2/3/5, ...?? Remember I'd like something with a clear defined format so that I can write the loader without having to deobfuscate some random file format, and it needs to support the aforementioned features. Any other info you can give regarding why you chose it and why it's best would be very helpeful too!</p> <p>Thanks!</p> <p>EDIT: I will be writing a Blender MS3D exporter. When I'm finished I will post it <a href="http://rickyc.org/ms3dexporter/" rel="nofollow">here</a>.</p> <p>Meanwhile, see my marked answer below; but more has gone on since then. I'm not going to keep this updated with what I'm doing, but basically I found jMonkey Engine and it already has a ms3d importer and other subsystems which I had begun hand-writing. Despite the scenegraph stuff (which is why I was avoiding Java3D) I think it'll be my best bet to join forces with it, so that's what I'm up to.</p> http://stackoverflow.com/questions/1484264/pros-and-cons-of-gaming-frameworks/1484511#1484511 4 Answer by Ricket for Pros and Cons of Gaming Frameworks Ricket 2009-09-27T21:22:33Z 2009-09-30T23:33:12Z <p><a href="http://www.ogre3d.org/" rel="nofollow">OGRE (Object-Oriented Graphics Engine)</a></p> <p>Pros:</p> <ul> <li>Tons of 3D features</li> <li>Cross-platform, uses DirectX or OpenGL</li> <li>Plugin architecture for even more features</li> <li>Does not try to be an everything-engine, only a graphics engine (doesn't even try to handle input, as many graphics libraries tend to do)</li> </ul> <p>Cons:</p> <ul> <li>Uses the Singleton pattern</li> <li>Very hard to do 2D or primitive rendering (individual polygons, lines, etc)</li> <li>Tons of code makes the learning curve quite steep</li> </ul> http://stackoverflow.com/questions/1488579/3d-model-format-for-games/1492754#1492754 0 Answer by Ricket for 3D model format for games Ricket 2009-09-29T14:03:18Z 2009-09-29T14:03:18Z <p>See my <a href="http://stackoverflow.com/questions/585769/solved-recommended-3d-model-type-for-in-game-character-model-loaded-manually">question</a> and <a href="http://stackoverflow.com/questions/585769/solved-recommended-3d-model-type-for-in-game-character-model-loaded-manually/632755#632755">answer</a> - I highly recommend the MS3D format. It ended up being easy to use, you can try my Blender exporter (though it's incomplete), and it does support all of these features.</p> http://stackoverflow.com/questions/1484264/pros-and-cons-of-gaming-frameworks/1484519#1484519 5 Answer by Ricket for Pros and Cons of Gaming Frameworks Ricket 2009-09-27T21:26:49Z 2009-09-28T18:48:58Z <p><a href="http://creators.xna.com/" rel="nofollow">Microsoft XNA Game Studio</a></p> <p>Pros:</p> <ul> <li>Uses .NET languages; managed memory, ease of the Visual Studio environment, etc.</li> <li>Good mix of high-level and low-level</li> <li>Supports both 2D and 3D very well</li> <li>Is proven; look at the Xbox Live Arcade, all of those games are made with XNA</li> <li>Games can be easily run on a networked Xbox</li> </ul> <p>Cons:</p> <ul> <li>Uses .NET languages; can't use Java, C++, etc.</li> <li>Not too many resources (i.e. books) out yet, though it is easy to learn and use so that may not be an issue</li> <li>Windows-only. Mono (on Linux) doesn't support XNA at all.</li> <li>XNA 3.0 was released less than a year after 2.0, and now we're at 3.1; frequent changes like these can hinder documentation, i.e. books get outdated quickly and many things break when upgrading a 2.0 game to a 3.0 game.</li> </ul> http://stackoverflow.com/questions/1426415/opengl-moving-camera-with-mouse/1484410#1484410 0 Answer by Ricket for OpenGL - moving camera with mouse Ricket 2009-09-27T20:33:31Z 2009-09-27T20:33:31Z <p>Most applications only allow up to 90 degrees up/down rotation; otherwise, the view is upside down and yes left-to-right is reversed. For most applications, it doesn't make sense to rotate so far that you're looking at the world upside-down.</p> <p>Also, this isn't gimbal lock like the other two answerers said; gimbal lock requires three (or more?) axes of rotation. Put simply, gimbal lock is when one axis has been rotated 90 degrees either direction, so that the other two axes line up; and then a rotation around either of the other two axes causes the same effect. The airplane image halfway down the wikipedia page shows it well.</p> <p>Anyway, your best bet is to clamp <code>camera_angle_v</code> to the range (-90,90); in other words, whenever you add or subtract to it, then check if it's greater than 90 and set it to 90, or if it's less than -90 then set it to -90.</p> <p>Also just to note, I have actually had problems in the past when a v angle is exactly 90 or -90, so I would clamp it to +/- 89.9 instead.</p> http://stackoverflow.com/questions/1241273/how-to-keep-track-of-opengl-state-across-function-calls 5 How to keep track of OpenGL state across function calls? Ricket 2009-08-06T20:35:12Z 2009-09-07T22:08:06Z <p>Since OpenGL is a state machine, I am constantly glEnable() and glDisable()-ing things in my program. There are a select few calls that I make only at the beginning (such as glClearColor) but most others I flip on and off (like lighting, depending on if I'm rendering a model or 3d text or the gui).</p> <p>How do you keep track of what state things in? Do you constantly set/reset these things at the top of each function? Isn't that a lot of unnecessary overhead?</p> <p>For example, when I write a new function, sometimes I know what state things will be in when the function is called, and I leave out glEnable or glDisable or other related state-switching calls at the top of the function. Other times, I'm just writing the function in advance and I add in these sorts of things. So my functions end up being very messy, some of them modifying OpenGL state and others just making assumptions (that are later broken, and then I have to go back and figure out why something turned yellow or why another thing is upside down, etc.).</p> <p>How do you keep track of OpenGL across functions in an object oriented environment?</p> <p><hr /></p> <p>Also related to this question, is how to know when to use push and pop, and when to just set the value.</p> <p>For example, let's say you have a program that draws some 3D stuff, then draws some 2D stuff. Obviously the projection matrix is different in each case. So do you: </p> <ol> <li>set up a 3d projection matrix, draw 3D, set up a 2d projection matrix, draw 2d, loop</li> <li>set up a 3d projection matrix at the program; then draw 3d, push matrix, draw 2d, pop matrix, loop</li> </ol> <p>And why?</p> http://stackoverflow.com/questions/1200901/why-is-udp-a-software-reliable-ordering-system-faster-than-tcp 2 Why is UDP + a software reliable ordering system faster than TCP? Ricket 2009-07-29T14:58:28Z 2009-09-06T13:31:55Z <p>Some games today use a network system that transmits messages over UDP, and ensures that the messages are reliable and ordered.</p> <p>For example, <a href="http://www.jenkinssoftware.com/" rel="nofollow">RakNet</a> is a popular game network engine. It uses only UDP for its connections, and has a whole system to ensure that packets can be reliable and ordered if you so choose.</p> <p>My basic question is, what's up with that? Isn't TCP the same thing as ordered, reliable UDP? What makes it so much slower that people have to basically reinvent the wheel?</p> http://stackoverflow.com/questions/1266146/is-programming-always-interesting/1266162#1266162 3 Answer by Ricket for Is Programming always interesting? Ricket 2009-08-12T13:27:21Z 2009-08-12T13:27:21Z <p>Actually, programming when done "correctly" (as I've read several places) is basically translating carefully planned specifications into machine language. There shouldn't be much room for creative interpretation, because that leads to unwanted behavior.</p> <p>Hobbyist programming, on the other hand, can be very enjoyable. It can be extremely frustrating, especially when tracking down bugs, but when you find that bug and squash it, that "programmer's high" is what keeps many of us going.</p> http://stackoverflow.com/questions/1258015/how-to-layout-the-code-of-a-simple-game/1258424#1258424 0 Answer by Ricket for How to layout the code of a simple game? Ricket 2009-08-11T04:05:37Z 2009-08-11T04:05:37Z <p>I almost want to scream duplicate of <a href="http://stackoverflow.com/questions/555283/how-can-you-organize-the-code-for-a-game-to-fit-the-mvc-pattern">my question</a> but that would be lame. :)</p> <p>Anyway look through those answers. I think if you don't have much experience in game dev, jump into it. Don't think so much about the planning stage, just worry about getting something on the screen, get something working, then refactor and mess with your code (without changing your output) and you'll figure out what works and what looks best.</p> <p>I am a big fan of writing something that works, then going back and refactoring. You can learn a lot that way, and you spend less time going in hypothetical circles trying to figure things out in your head and getting nothing done. (And not to say that that's what you'd end up doing, maybe you're an excellent planner, but I personally have done that plenty of times.)</p> http://stackoverflow.com/questions/1248937/using-linux-virtual-server-for-load-balancing-of-zones-in-mmo-game/1255092#1255092 0 Answer by Ricket for Using Linux Virtual Server for load balancing of zones in MMO game Ricket 2009-08-10T14:07:44Z 2009-08-10T14:07:44Z <p>The biggest issue in something like this is what happens when players are near a boundary. Obviously they need to be able to see and interact with each other, but they're on separate servers. So you need some pretty fancy inter-server communication, sometimes just duplicating messages to both servers. It can get even more complicated when someone is near a "corner", and then you have to deal with 4 servers!</p> <p>The book <a href="http://amzn.com/1584502436" rel="nofollow">Massively Multiplayer Game Development</a> has a chapter on "The Pitfalls of Shared Server Boundaries" which covers this issue in detail.</p> <p>I haven't heard of Linux Virtual Server before now, so I don't understand how it fits. I think your actual server application needs to support this game-specific load balancing, rather than trying to run a cluster and assuming that it will automatically know how to split up your application (which it won't). If I were you, I would write the server program to handle its own piece of land, and it should connect to the pieces of land around it, and then design a server-to-server protocol for the passing of these messages ("here comes a player, I'm going to start telling you about him!" "make sure to tell me about messages near our boundary", "okay the player is out of my territory and into yours, here's his detailed data", etc). I think it's a bit more complicated than just running a different flavor of Linux and assuming you'll get automatic load balancing.</p> http://stackoverflow.com/questions/1230507/how-to-reset-a-form-after-submit/1230531#1230531 4 Answer by Ricket for how to reset a form after submit? Ricket 2009-08-05T00:03:06Z 2009-08-05T00:03:06Z <pre><code>window.onload = function () { for(var f in document.getElementsByTagName("form")) f.reset(); } </code></pre> <p>This would certainly work, assuming you don't have another onload event already set. If you do, just add the inner bit (lines 2 and 3) to it. And of course this is standard JavaScript, it'll work no matter the framework.</p> http://stackoverflow.com/questions/1223478/coming-back-to-java-after-a-long-absence-good-java-game-dev-resources/1225587#1225587 0 Answer by Ricket for Coming back to Java after a long absence; good Java game dev resources? Ricket 2009-08-04T03:16:37Z 2009-08-04T03:29:13Z <p><a href="http://www.gamedev.net/" rel="nofollow">gamedev.net</a> and <a href="http://www.devmaster.net/" rel="nofollow">devmaster.net</a> are pretty much the two game development resources; language-agnostic, maybe leaning towards the C++ side, but it's all the same thing no matter what language you express it in.</p> <p>Unfortunately those two sites just don't cut it for me. I would really like to see a GOOD game dev website. Maybe it's just me but it seems like everyone's working on their own thing and there really isn't any good central repository for, like, everything. I love the concept of gamedev.net's articles section, but many are outdated now and don't seem to be kept up. It's a shame, really. Stackoverflow is my best game dev resource right now.</p> <p>Also check out the questions I've asked in the past, and my favorited questions (if you can see them). I keep a very close eye on tags related to java and/or gamedev here all the time (thus what led me to this question :) ).</p> http://stackoverflow.com/questions/1210286/where-can-i-find-free-sound-effects-for-a-game/1210303#1210303 1 Answer by Ricket for Where can I find free sound effects for a game? Ricket 2009-07-31T01:55:04Z 2009-07-31T01:55:04Z <ul> <li><a href="http://www.partnersinrhyme.com/pir/PIRsfx.shtml" rel="nofollow">Free Sound Effects and Royalty Free Sound Effects</a></li> <li><a href="http://freesoundfiles.tintagel.net/Audio/index.shtml" rel="nofollow">Tintagel's Free Sound File Archive</a></li> <li><a href="http://www.pdinfo.com/link.php" rel="nofollow">Copyright and Public Domain Music</a></li> <li><a href="http://www.shambles.net/pages/school/SoundE/" rel="nofollow">Sounds Effects and Music</a></li> <li><a href="http://www.ehow.com/how%5F2059827%5Ffind-public-domain-sound-effects.html" rel="nofollow">eHow - How to Find Public Domain Sound Effects</a></li> </ul> <p>Essentially, you want to be searching for "public domain" sound effects - these are sound effects that are made for the intention of publicly sharing, i.e. they have no copyright and you can use them however you like. Those were just the top results for a Google search for "<a href="http://www.google.com/search?q=public+domain+game+sound+effects" rel="nofollow">public domain game sound effects</a>".</p> <p>Sorry to piggyback off Google here, but that's really your best bet; just keep exploring til you find what you need!</p> http://stackoverflow.com/questions/1202466/acquire-direct-write-access-to-windows-backbuffer-yet-still-allow-read-access-t/1206593#1206593 0 Answer by Ricket for Acquire direct write access to window's backbuffer, yet still allow read access to what is on the screen already Ricket 2009-07-30T13:25:48Z 2009-07-30T13:25:48Z <p>There are better ways to create a window without borders. You might try experimenting with the <a href="http://msdn.microsoft.com/en-us/library/ms632600%28VS.85%29.aspx" rel="nofollow">dwStyle</a> parameter of <a href="http://msdn.microsoft.com/en-us/library/ms632679%28VS.85%29.aspx" rel="nofollow">CreateWindow</a>, for example. It looks as if you pass in WS_OVERLAPPED | WS_POPUP and it results in a borderless window, which is what you appear to want. (see <a href="http://www.gamedev.net/community/forums/topic.asp?topic%5Fid=418170" rel="nofollow">this forum post</a>).</p> <p>I also think the term "borderless window" is not correct, because I'm hardly getting any results in Google for searches including those words.</p> http://stackoverflow.com/questions/1203901/open-a-console-command-window-when-using-vs-2008-express/1204013#1204013 1 Answer by Ricket for Open a Console/Command Window when using VS 2008 Express Ricket 2009-07-30T01:27:41Z 2009-07-30T11:03:16Z <p>Try this: Press your windows key + R to open a Run dialog. Type <strong>cmd</strong> and hit enter. This will open a command prompt. If it opens maximized, then un-maximize ("restore") it. Then close it. Now see if it starts maximized.</p> <p>I think it's due to Windows saving the default size and placement of windows, and hopefully this will reset the default.</p> <p>-Edit- Okay try this then: <a href="http://stackoverflow.com/questions/626035/cmd-full-screen-visual-studio">http://stackoverflow.com/questions/626035/cmd-full-screen-visual-studio</a></p> http://stackoverflow.com/questions/1203836/switching-to-web-development/1203862#1203862 2 Answer by Ricket for Switching to web development Ricket 2009-07-30T00:42:48Z 2009-07-30T00:42:48Z <ul> <li><strong>HTML</strong> is the <em>basis</em> of all webpages. It's pretty simple to get the hang of, and very fun when you're just starting out.</li> <li><strong>CSS</strong> can <em>style</em> the HTML pages in awesome ways; it gives color to elements, and helps determine their size and position.</li> <li><strong>JavaScript</strong> is dynamic script that can run on your webpage, <em>interacting with the user and changing page elements</em>. Anything that changes on a page involves JavaScript (or a plugin, below)</li> <li><strong>Flash</strong> and <strong>Java</strong> are both plugins; Flash is generally used for animation and uses <a href="http://en.wikipedia.org/wiki/Vector%5Fgraphics" rel="nofollow">vector graphics</a>, while Java applets are more heavyweight and programmed like traditional applications, only embedded into your webpage.</li> <li><strong>PHP</strong> can be used to <em>customize a page to the user</em>. Logins, account features, anything that is customized to individual users is usually made using PHP (or another dynamic language, which I'll avoid here because PHP is fine)</li> <li><strong>MySQL</strong> is a database to be used with PHP</li> </ul> <p>Many content management systems today, such as <a href="http://wordpress.org/" rel="nofollow">Wordpress</a> or <a href="http://drupal.org/" rel="nofollow">Drupal</a>, don't require much knowledge of the above languages. You can pretty much just copy them to your web server and then browse to a specific install file, and go from there, customizing your website from within the browser.</p> http://stackoverflow.com/questions/1189891/opengl-selection-with-alpha-test/1194114#1194114 1 Answer by Ricket for Opengl Selection with Alpha Test Ricket 2009-07-28T13:29:40Z 2009-07-28T13:29:40Z <p>I think what you mean is the alpha blending is skipped. I haven't tested it, but it appears from the comment <a href="http://www.opentk.com/node/439" rel="nofollow">here</a>, that alpha tests are still used in GL_SELECT mode. So you would want to glEnable(GL_ALPHA_TEST) and then use glAlphaFunc() to set your threshold for how much alpha constitutes a hit. To test before you just blindly try selecting these objects, just render it. You'll see that OpenGL only renders part of your polygon; and any of that part would constitute a click, while any of the not-drawn part won't be hit with your GL_SELECT.</p> <p>Please comment and let me know how it works out. If you still can't get it to work, I can take the time to write a test case for you, but I'd rather not spend the time if you can get it to work on your own. :)</p> <p>Also, for reference, <a href="http://www.opengl.org/documentation/specs/version1.1/glspec1.1/node96.html" rel="nofollow">the OpenGL docs for Alpha test</a> and <a href="http://www.opengl.org/documentation/specs/man%5Fpages/hardcopy/GL/html/gl/alphafunc.html" rel="nofollow">the manpage for glAlphaFunc</a>.</p> http://stackoverflow.com/questions/1174982/3d-file-formats-for-games/1177817#1177817 1 Answer by Ricket for 3D File Formats for Games Ricket 2009-07-24T13:50:48Z 2009-07-24T13:50:48Z <p>I chose the MS3D format because its specification is simple, makes sense, does have animation and also rigging (joints), and is documented.</p> <p>Also see my previous question, very similar to this one, and the answer I wrote to it (which, oddly enough, seems to be at the bottom of the page):</p> <p><a href="http://stackoverflow.com/questions/585769/solved-recommended-3d-model-type-for-in-game-character-model-loaded-manually">[SOLVED] Recommended 3D model type for in-game character model, loaded manually?</a></p> http://stackoverflow.com/questions/1164656/p2p-network-games-apps-good-choice-for-a-battle-net-like-matching-server/1171480#1171480 2 Answer by Ricket for P2P network games/apps: Good choice for a "battle.net"-like matching server Ricket 2009-07-23T12:44:16Z 2009-07-23T12:44:16Z <p>Rather than a full-blown dedicated server, you could just get a cheap shared hosting service and have the application interface with a PHP page, which in turn interfaces with a MySQL database backend.</p> <p>For example, <a href="http://www.lunarpages.com" rel="nofollow">Lunarpages</a> has a $3/month starter package that includes 5gb of space and 50gb of bandwidth. For something this simple, that's all you should need.</p> <p>Then you just have your application poll the web page for the list of games, and submit a POST request in order to add their own game to the list.</p> <p>Of course, this method requires learning PHP and MySQL if you don't already know them. And if you do it right, you can have the PHP page enter a sort of infinite loop to keep the connection open and just feed updates to the client, rather than polling the page every few seconds and wasting a lot of bandwidth. That's way outside the scope of this answer though.</p> <p>Oh, and if you're looking for something absolutely free, search for a free PHP host. Those exist too! Even with an ad-supported host, your app could just grab the page and ignore the ads when you parse the list of games. I know that <a href="http://www.t35.com/" rel="nofollow">T35</a> used to be one of my favorites because their free plan doesn't track space or bandwidth (it limits the per-file size, to eliminate their service being used as a media share, but it shouldn't be a problem for PHP files). But of course, I think in the long run you'll be better off going with a paid host.</p> <p>Edit: T35 also says "Free hosting allows 1 domain to be hosted, while paid offers unlimited domain hosting." So you can even just pay for a domain name and link it to them! I think in the short term, that's your best (cheapest) bet. Of course, this is all assuming you either know or are willing to learn PHP in order to make this happen. :)</p> http://stackoverflow.com/questions/1167920/how-do-you-know-which-opengl-functions-need-to-be-called-every-frame-and-which-c 1 How do you know which OpenGL functions need to be called every frame, and which can only be called once? Ricket 2009-07-22T20:08:35Z 2009-07-22T20:14:55Z <p>As the question states. The best example of this I have right now is the function glSelectBuffer. I'd like to know if I can call it just once in my init function or if I have to call it every single time, before I do glRenderMode(GL_SELECT). But just in general, there have been many times when I've wondered whether I can just call a function once at the beginning of my program or if I have to call it every frame.</p> <p>I know that OpenGL is a state engine, but it seems to me like some things are kept in the state and others aren't. And yes I know, when I modify something later in my program, I'll have to reset it back to the first value in the beginning of my loop each time, because of OpenGL being a state engine; that's not the answer I'm looking for.</p> <p>If nothing else, if you find me very confused and you haven't had such a problem, then please just answer my sub-question of whether glSelectBuffer can be called once or needs to be called every time.</p> http://stackoverflow.com/questions/1930725/svn-reverse-merge/1930811#1930811 Comment by Ricket on SVN reverse merge? Ricket 2009-12-18T22:49:28Z 2009-12-18T22:49:28Z Okay, I successfully reverted. Since the first time didn't work, this time I did HEAD:496 and then 496:497, then committed. Interesting, after the commit it still thought I was at r507 so I had to svn update to become r508 (which it just committed); the update did nothing of course. I then did use svn diff, specifying two URLs, and it apparently did a server-side diff because it was quite quick to return a blank screen. A test diff with a different revision confirmed that blank is good; identical revisions at last. :) http://stackoverflow.com/questions/1930725/svn-reverse-merge/1930739#1930739 Comment by Ricket on SVN reverse merge? Ricket 2009-12-18T21:42:13Z 2009-12-18T21:42:13Z Thanks for fixing your error :) http://stackoverflow.com/questions/1930725/svn-reverse-merge/1930811#1930811 Comment by Ricket on SVN reverse merge? Ricket 2009-12-18T21:40:30Z 2009-12-18T21:40:30Z What is the easiest way to compare 497 and HEAD? This is a huge repository and the merge command alone takes 20-30 minutes; is there a command that can run server-side and just tell me if they are identical, or do I have to get the two revisions into two separate folders and do a diff myself? http://stackoverflow.com/questions/1922587/how-to-keep-subversion-and-a-remote-server-via-ftp-in-sync/1922616#1922616 Comment by Ricket on How to keep Subversion and a remote server (via FTP) in sync? Ricket 2009-12-17T15:50:10Z 2009-12-17T15:50:10Z Why? Can you explain a little more? http://stackoverflow.com/questions/1922587/how-to-keep-subversion-and-a-remote-server-via-ftp-in-sync/1922608#1922608 Comment by Ricket on How to keep Subversion and a remote server (via FTP) in sync? Ricket 2009-12-17T15:42:37Z 2009-12-17T15:42:37Z Or perhaps combining this with @Bryan McLemore's answer, set up a post-commit hook that triggers a svn update on the server.. Hmm... http://stackoverflow.com/questions/1922355/php-mysql-error-hook/1922408#1922408 Comment by Ricket on PHP: MySQL error hook? Ricket 2009-12-17T15:31:32Z 2009-12-17T15:31:32Z Thanks, and sorry @Pekka, I wish I could flag both of your answers as accepted. I think you've both given me the comprehensive answer and solution I was looking for! http://stackoverflow.com/questions/1856113/oo-design-and-mirrored-duplicated-methods/1858182#1858182 Comment by Ricket on OO design and mirrored/duplicated methods Ricket 2009-12-07T06:23:55Z 2009-12-07T06:23:55Z Oh, hmm. Perhaps I solved a different problem than you're talking about. To solve your problem, I think I'd use Generics (java) or a template method (c++). http://stackoverflow.com/questions/1767154/opengl-3d-selection-question Comment by Ricket on OpenGL 3D Selection Question Ricket 2009-12-07T05:59:49Z 2009-12-07T05:59:49Z +1 for a good laugh at 1 in the morning: &quot;my teacher is as helpful as a rock&quot; http://stackoverflow.com/questions/1797546/learning-c-xna-as-a-first-language-for-indie-games-dev/1797710#1797710 Comment by Ricket on Learning C# / XNA as a first language for indie games dev Ricket 2009-12-04T04:28:27Z 2009-12-04T04:28:27Z I second the source control! Find a good, stable place to store your code with backups (my host is xp-dev.com, they've been great so far). +1 http://stackoverflow.com/questions/1459326/how-to-convert-opengl-code-to-jogl/1459357#1459357 Comment by Ricket on How to convert OpenGL code to JOGL? Ricket 2009-10-08T14:45:53Z 2009-10-08T14:45:53Z This is assuming arg0 is a type GLAutoDrawable (or maybe GLDrawable?). Furthermore, you would actually need GL2 gl = arg0.getGL().getGL2(); http://stackoverflow.com/questions/1459326/how-to-convert-opengl-code-to-jogl/1459346#1459346 Comment by Ricket on How to convert OpenGL code to JOGL? Ricket 2009-10-08T14:45:11Z 2009-10-08T14:45:11Z Note that gl is generally of type GL2 now, gotten with drawable.getGL().getGL2(). Similarly, you would instead say GL2.GL_WHATEVER as of recent JOGL versions. http://stackoverflow.com/questions/1484264/pros-and-cons-of-gaming-frameworks/1484519#1484519 Comment by Ricket on Pros and Cons of Gaming Frameworks Ricket 2009-09-30T22:31:44Z 2009-09-30T22:31:44Z @Dykam are you sure c++ is possible? I would definitely debate it, and I can't find anything on Google to suggest it is possible... http://stackoverflow.com/questions/1484264/pros-and-cons-of-gaming-frameworks/1484519#1484519 Comment by Ricket on Pros and Cons of Gaming Frameworks Ricket 2009-09-30T22:30:13Z 2009-09-30T22:30:13Z @darthcoder well, yes and no... it's MUCH simpler than DirectX ever was, though maybe only a step up from managed DirectX (I never used it); and of course, the xbox 360 support is a highlight. http://stackoverflow.com/questions/1413239/const-char-to-lptstr/1413246#1413246 Comment by Ricket on const char* to LPTSTR Ricket 2009-09-27T20:23:07Z 2009-09-27T20:23:07Z I'm pretty sure you can actually just do foo(L&quot;bar&quot;) - try it. http://stackoverflow.com/questions/1385229/whats-the-most-cross-platform-friendly-coding-language Comment by Ricket on What's the most cross-platform friendly coding language? Ricket 2009-09-08T12:31:08Z 2009-09-08T12:31:08Z Why is Java out of the question? I think it would be a good candidate, using JOGL. If you think it's slow, you are mistaking the Java of years ago; Java today is near native speed thanks to HotSpot VM technology.