User Joe Ludwig - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T10:48:46Z http://stackoverflow.com/feeds/user/1031 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/456042/how-do-i-perform-a-nonblocking-read-using-asio 3 How do I perform a nonblocking read using asio? Joe Ludwig 2009-01-18T22:32:01Z 2009-11-17T18:42:31Z <p>I am attempting to use boost::asio to read and write from a device on a serial port. Both boost::asio:read() and boost::asio::serial_port::read_some() block when there is nothing to read. Instead I would like to detect this condition and write a command to the port to kick-start the device.</p> <p>How can I either detect that no data is available?</p> <p>If necessary I can do everything asynchronously, I would just rather avoid the extra complexity if I can.</p> http://stackoverflow.com/questions/169155/setcursor-reverts-after-a-mouse-move 1 SetCursor reverts after a mouse move Joe Ludwig 2008-10-03T22:32:55Z 2009-10-20T05:03:27Z <p>I am using SetCursor to set the system cursor to my own image. The code looks something like this:</p> <pre><code>// member on some class HCURSOR _cursor; // at init time _cursor = LoadCursorFromFile("somefilename.cur"); // in some function SetCursor(_cursor); </code></pre> <p>When I do this the cursor does change, but on the first mouse move message it changes back to the default system arrow cursor. This is the only code in the project that is setting the cursor. What do I need to do to make the cursor stay the way I set it?</p> http://stackoverflow.com/questions/789353/how-do-i-read-only-available-data-off-a-windows-com-port 2 How do I read only available data off a windows COM port? Joe Ludwig 2009-04-25T17:22:06Z 2009-04-25T17:26:42Z <p>I have a file handle to a serial (COM) port. I need to read whatever data is available immediately and not wait for additional data to be sent. </p> <p>How can I determine how much data is available? I can call <code>SetCommMask(myHandle, EV_RXCHAR)</code> and then wait for an event to tell me that <strong>some</strong> data is available, but that won't tell me how much I can now read without blocking.</p> <p>At the moment I am using CreateFile() and overlapping I/O to perform my reads so they are asynchronous, but they still wait until the buffer is filled to report the I/O as complete.</p> http://stackoverflow.com/questions/652497/how-do-i-perform-custom-build-steps-in-flex-builder-3 0 How do I perform custom build steps in Flex Builder 3? Joe Ludwig 2009-03-16T23:14:14Z 2009-03-16T23:41:48Z <p>I want to do some of the things in Flex Builder 3 that I would use custom build steps for in Visual Studio. They aren't in the project properties and Google is not much help either.</p> <p>Is it possible to add custom build steps in Flex Builder 3 or Eclipse more generally? If so, now do I do it?</p> http://stackoverflow.com/questions/522791/flex-container-with-items-of-variable-size 1 Flex container with items of variable size Joe Ludwig 2009-02-07T00:31:55Z 2009-02-07T06:44:46Z <p>I need to display a horizontal list of images using Flex. I can't use a horizontal TileList because the tiles all end up the size of the first item. Is there a flex control that will allow me to have items with different sizes?</p> <p>Edit: The list of items would ideally come from a data provider. Unfortunately the control in Chetan Sastry's answer only supports data providers if the items have a fixed width.</p> http://stackoverflow.com/questions/372915/game-logic-in-xml-files/373521#373521 1 Answer by Joe Ludwig for Game Logic in XML Files Joe Ludwig 2008-12-17T02:51:50Z 2008-12-17T02:51:50Z <p>Unless your game will have less than half a dozen unique dialogs, you should definitely put this information in some kind of data file. XML is a strong contender for the format. I don't speak Ruby, so it may not work in this case, but another option would be to define the dialog as data directly in Ruby code. (I know this would work pretty well in Lua, Python, and Javascript... I assume defining nested data structures is also easy in Ruby.)</p> <p>We used XML files to define all the static data in Pirates of the Burning Sea, and it was a great way to go. Having a data format like this lets non-programmers control the data and frees up the programmers to work on features instead of data entry. Having those data files be text means that you can keep them under source control so you can tell when they change.</p> http://stackoverflow.com/questions/341734/suggest-logic-to-handle-freeform-movement-over-tile-based-system/341899#341899 3 Answer by Joe Ludwig for Suggest logic to handle freeform movement over tile based system Joe Ludwig 2008-12-04T20:16:49Z 2008-12-04T20:16:49Z <p>It wasn't clear from your question, but the approach I would use is different depending on whether your game is in 2D or 3D.</p> <p>For a 2D game, you would be best off using pixels as your coordinates.That way you can use integers to store them keep things nice and simple. You can easily figure out which tile a unit is in by dividing their coordinates by the tile size.</p> <p>For a 3D game that uses tiles, just use floats as your coordinate system. It would probably be easiest to keep the units in "tiles" if that's how you're thinking of things like weapon ranges.</p> <p>Whatever system you use, do yourself a favor and put the conversions from position to tile number in <strong>one</strong> place in your code. If you litter /100 and *100 everywhere just because your current tile size is 100 it's eventually going to come back to bite you. Just replacing the "100" with a constant called TILE_SIZE is probably not the best way to go either because it's entirely possible that somewhere down the road you will want to use a different origin for the two coordinate systems.</p> <p>Once your units can move inside a tile your path finding problem will get more complicated. Even if all your units are the same size, you might need to make sure they don't get too close to the edge when the adjacent tile is impassable. I would suggest that you keep all your pathing in tile-space and post-process the paths to smooth out all the unnecessary 45 degree turns.</p> http://stackoverflow.com/questions/90503/game-development-sound-frameworks/318615#318615 1 Answer by Joe Ludwig for Game Development Sound Frameworks Joe Ludwig 2008-11-25T19:40:40Z 2008-11-25T19:40:40Z <p>I've shipped two PC games using Miles Sound System and it worked quite well. MSS is easy to integrate, fast, and stable. The support you get from RAD Game Tools is excellent. This library has been used in over 4500 games, and it is rock-solid as a result. It's cheap too!</p> <p>On the other hand, MSS is a fairly low-level library compared to FMOD or WWise. The library doesn't provide any way for the sound designer to have control over sound volumes, attenuation, randomization, fading, or just about anything else that isn't stored in the sound file itself. You will have to write these high level features yourself.</p> <p>That's why I'm evaluating WWise for my next game. It has a much more developed toolset than Miles. It took longer to get up and running, but is working well so far. I'm not nearly far enough into using it to really offer a recommendation one way or the other.</p> http://stackoverflow.com/questions/211018/what-is-the-best-free-cross-platform-opengl-gui-library-for-a-video-game/211194#211194 3 Answer by Joe Ludwig for What is the best free cross-platform OpenGL GUI library for a video game? Joe Ludwig 2008-10-17T05:59:44Z 2008-10-17T05:59:44Z <p>We are using CEGUI, but I can't say I'm all that impressed. It's so complex that it is difficult to debug, even for simple things.</p> <p>If you're willing to pay for a GUI library I've heard good things about <a href="https://www.scaleform.com/" rel="nofollow">Scaleform</a>. It runs on most platforms and is an accelerated runtime for Flash that you can embed in your 3D engine. I haven't actually used it yet, but I intend to evaluate it as a CEGUI replacement. </p> http://stackoverflow.com/questions/179622/what-kind-of-programming-environment-do-you-use-to-write-your-windows-based-games/181558#181558 0 Answer by Joe Ludwig for What kind of programming environment do you use to write your Windows-based Games? Joe Ludwig 2008-10-08T06:34:33Z 2008-10-08T06:34:33Z <p>At Flying Lab for Pirates of the Burning Sea we used Visual Studio 2005. At Divide by Zero for we use Visual Studio 2008.</p> http://stackoverflow.com/questions/169155/setcursor-reverts-after-a-mouse-move/169280#169280 1 Answer by Joe Ludwig for SetCursor reverts after a mouse move Joe Ludwig 2008-10-03T23:18:06Z 2008-10-03T23:18:06Z <p>It seems that I have two options. The first is the one that Mark Ransom suggested here, which is to respond to the windows <code>WM_SETCURSOR</code> message and call SetCursor at that time based on where the mouse is. Normally windows will only send you <code>WM_SETCURSOR</code> when the cursor is over your window, so you would only set the cursor in your window.</p> <p>The other option is to set the default cursor for the window handle at the same time as I call <code>SetCursor</code>. This changes the cursor set by the default handler to <code>WM_SETCURSOR</code>. That code would look something like this:</p> <pre><code>// defined somewhere HWND windowHandle; HCURSOR cursor; SetCursor(cursor); SetClassLong(windowHandle, GCL_HCURSOR, (DWORD)cursor); </code></pre> <p>If you use the second method you have to call both <code>SetCursor</code> and <code>SetClassLong</code> or your cursor will not update until the next mouse move.</p> http://stackoverflow.com/questions/162680/the-value-of-hobby-game-development/168100#168100 2 Answer by Joe Ludwig for The value of hobby game development Joe Ludwig 2008-10-03T17:54:19Z 2008-10-03T17:54:19Z <p>If you are looking to get a job in game development, you should absolutely be doing some hobby development on the side while you look. Being able to send a more-or-less complete game along with your resume makes it stand out from the crowd. When we list a game programming job we get a ton of resumes, and while I'm thrilled to hire people with no industry experience to fill them, it's kind of hard to pick between all the options.</p> http://stackoverflow.com/questions/142391/getting-a-boostsharedptr-for-this 11 Getting a boost::shared_ptr for this Joe Ludwig 2008-09-26T22:42:43Z 2008-09-27T14:27:32Z <p>I am making extensive use of <code>boost:shared_ptr</code> in my code. In fact, most of the objects that are allocated on the heap are held by a <code>shared_ptr</code>. Unfortunately this means that I can't pass <code>this</code> into any function that takes a <code>shared_ptr</code>. Consider this code:</p> <pre><code>void bar(boost::shared_ptr&lt;Foo&gt; pFoo) { ... } void Foo::someFunction() { bar(this); } </code></pre> <p>There are two problems here. First, this won't compile because the T* constructor for <code>shared_ptr</code> is explicit. Second, if I force it to build with <code>bar(boost::shared_ptr&lt;Foo&gt;(this))</code> I will have created a second shared pointer to my object that will eventually lead to a double-delete.</p> <p>This brings me to my question: Is there any standard pattern for getting a copy of the existing shared pointer you know exists from inside a method on one of those objects? Is using intrusive reference counting my only option here?</p> http://stackoverflow.com/questions/7913/how-do-i-make-subversion-svn-send-email-on-checkins 4 How do I make Subversion (SVN) send email on checkins? Joe Ludwig 2008-08-11T16:27:55Z 2008-09-26T23:12:20Z <p>I've always found checkin mails to be very useful for keeping track of what work other people are doing in the codebase. How do I set up SVN to email a distribution list on each checkin?</p> <p>Edit: I'm running clients on Windows and the server on Linux. The answers below for various platforms will likely be useful to other people though.</p> http://stackoverflow.com/questions/12745/how-do-you-handle-poor-quality-code-from-team-members/13392#13392 0 Answer by Joe Ludwig for How do you handle poor quality code from team members? Joe Ludwig 2008-08-16T22:27:12Z 2008-08-16T22:27:12Z <p>As you try to bring code reviews into an environment like this, remember that they need to work both ways. You need to get one of those less-effective programmers to review <strong>your</strong> code and learn by example. They also need to make comments in reviews of your code that you actually incorporate. Make sure that they understand that the code reviews aren't there to give you a chance to tell them when they're screwing up, but to give everybody on the team a chance to learn from everybody else.</p> <p>If the code reviews and the stuff everybody else mentioned don't have any impact, it's probably time to get rid of some bad apples. (Assuming you have the authority to do that.)</p> http://stackoverflow.com/questions/13294/code-gen-options-what-do-you-use-for-your-apps-and-why/13386#13386 0 Answer by Joe Ludwig for Code Gen options, what do you use for your apps and why? Joe Ludwig 2008-08-16T22:15:10Z 2008-08-16T22:15:10Z <p>We've used code generators to allow reflection in C++, generate serialization code automatically, allow programmers and game designers to write in a higher-level language, generate scripting language glue, and automate some security and data format checks. That's for a game, though, so if you're using a higher level language in the first place, you might need to generate code a bit less desperately than we do.</p> http://stackoverflow.com/questions/521442/in-eclipse-how-do-i-change-perspectives-after-terminating-a-process/522958#522958 Comment by Joe Ludwig on In Eclipse, how do I change perspectives after terminating a process? Joe Ludwig 2009-02-07T02:51:40Z 2009-02-07T02:51:40Z I agree with everything but &quot;is not reasonable for the machine to make &quot;. Visual Studio does a fine job by returning to the main view when there are no processes left to debug. http://stackoverflow.com/questions/407464/how-to-synchronize-the-same-object-on-client-and-server-side-in-client-server-app/407478#407478 Comment by Joe Ludwig on How to synchronize the same object on client and server side in client-server application? Is small messages framework good for this job? Joe Ludwig 2009-01-02T20:06:44Z 2009-01-02T20:06:44Z The choice between UDP and TCP is not as simple as &quot;use UDP.&quot; Many successful online games (including World of Warcraft, which uses UDP only for voice chat) use TCP exclusively and get by fine. Choose the right solution for your game; don't default to UDP because ten year old action games used it.