User sludge - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T14:34:18Zhttp://stackoverflow.com/feeds/user/22244http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/347191/how-do-i-get-the-source-ip-address-from-a-datagrams-ip-header-with-winsock1How do I get the source IP address from a datagram's IP header with Winsock?sludge2008-12-07T03:38:14Z2009-11-23T14:51:31Z
<p>I have a port that is bind()'d to INADDR_ANY. I am receiving datagrams successfully. After receipt, I need to read the IP header to get the source IP address.</p>
http://stackoverflow.com/questions/1659695/useful-things-to-put-in-the-user-stream-segment-of-minidumps1Useful things to put in the user stream segment of minidumpssludge2009-11-02T06:20:39Z2009-11-02T06:20:39Z
<p>I am interested in what useful things developers put in the user stream data structure that can be embedded in minidumps. MSDN describes the parameter for MiniDumpWriteDump as such:</p>
<p><code>PMINIDUMP_USER_STREAM_INFORMATION UserStreamParam</code></p>
<p>and describes the parameter thusly:</p>
<blockquote>
UserStreamParam
[in] Pointer to an array of MINIDUMP_USER_STREAM_INFORMATION structures. If the value of this parameter is NULL, no user-defined information is included in the minidump file.
</blockquote>
<p>I was considering embedding the last <em>n</em> log lines of my program in a user stream since testers tend not to send the properly formatted logs with all bugs all the time.</p>
<p>Also, I could put hardware specs (memory, CPU, video, etc) in that section.</p>
<p>What else have people used the user stream segment for?</p>
http://stackoverflow.com/questions/148881/how-do-i-append-a-large-amount-of-rich-content-images-formatting-quickly-to-a2How do I append a large amount of rich content (images, formatting) quickly to a control without using tons of CPU?sludge2008-09-29T14:22:17Z2009-10-24T06:27:38Z
<p>I am using wxWidgets and Visual C++ to create functionality similar to using Unix "tail -f" with rich formatting (colors, fonts, images) in a GUI. I am targeting both wxMSW and wxMAC.</p>
<p>The obvious answer is to use wxTextCtrl with wxTE_RICH, using calls to wxTextCtrl::SetDefaultStyle() and wxTextCtrl::WriteText(). </p>
<p>However, on my 3ghz workstation, compiled in release mode, I am unable to keep tailing a log that grows on average of 1 ms per line, eventually falling behind. For each line, I am incurring:</p>
<ol>
<li>Two calls to SetDefaultStyle()</li>
<li>Two calls two WriteText()</li>
<li>A call to Freeze() and Thaw() the widget</li>
</ol>
<p>When running this, my CPU goes to 100% on one core using wxMSW after filling up roughly 20,000 lines. The program is visibly slower once it reaches a certain threshold, falling further behind.</p>
<p>I am open to using other controls (wxListCtrl, wxRichTextCtrl, etc). </p>
http://stackoverflow.com/questions/148881/how-do-i-append-a-large-amount-of-rich-content-images-formatting-quickly-to-a/1617173#16171730Answer by sludge for How do I append a large amount of rich content (images, formatting) quickly to a control without using tons of CPU?sludge2009-10-24T06:27:38Z2009-10-24T06:27:38Z<p>Derive from wxVListBox. From the docs:</p>
<blockquote>
<p>wxVListBox is a listbox-like control with the following two main differences from a regular listbox: it can have an arbitrarily huge number of items because it doesn't store them itself but uses OnDrawItem() callback to draw them (so it is a Virtual listbox) and its items can have variable height as determined by OnMeasureItem() (so it is also a listbox with the lines of Variable height).</p>
</blockquote>
http://stackoverflow.com/questions/1560131/porting-wii-and-or-psone-games-to-opengl-es/1617118#16171183Answer by sludge for Porting Wii and/or PSOne Games to OpenGL ESsludge2009-10-24T06:06:41Z2009-10-24T06:06:41Z<p>Porting from the Wii or the PSOne is a complex and involved task that can be broken down into multiple separate engineering efforts working in parallel to produce a working end product. The best possible thing you can do before moving to the target hardware is to compartmentalize all of the non-portable code while ensuring that the game continues to run as expected. When you commit to moving to the new platform, your effort switches to reimplementing the non-portable compartmentalized parts.</p>
<p>So, to answer your question, yes, you will need to become or work with a Sony and Nintendo licensed developer in order to take this approach. In the case of Sony, I don't even know if they offer a PSOne development program anymore which presents issues. Your Sony account rep can help clarify.</p>
<p>The major subsystems that are likely to be the focus of your porting effort are:</p>
<ol>
<li><strong>Rendering</strong> Graphics code contains fundamental assumptions about the hardware it is being run on in order to perform optimally. API-level compatibility is superficial compatibility and does not get you as much as you may hope it does. Plan on finding the entry point to the renderer and determining what data you need to render a scene and rewriting all the render code from there for your target hardware.</li>
<li><strong>Game Saving</strong> Game state serialization and archival will need to be separated out. Older games often fwrite() structs with #pragma packed fields. Is that still going to work for you?</li>
<li><strong>Networking</strong> Wii games write to high level services that are unavailable on your target hardware. At the low level, sockets are still sockets. What network services do your Wii games rely on? </li>
<li><strong>Controls</strong> From where you are coming from to where you are going, anything short of a full redesign or reimagining of input will result in poor reviews of the software.</li>
<li><strong>Memory Management</strong> Console games often make fundamental assumptions about the rate the system software returns memory from the heap, how much fragmentation it will cause and the duration the game needs to operate under these conditions. These memory management assumptions are obsolete on the new platform. It is wise to write your own memory manager that provides a cushion from the operating system. Also, console games compiled for release are stripped of most error handling and don't gracefully handle running out of memory-- just a heads up.</li>
<li><strong>Content</strong> Your bottleneck will be system memory. Can you fit the necessary assets into memory? With textures, you can reduce mip where necessary and with graphics hardware timing, you can pull in the far clipping plane. With assets resident in memory, you may need a technical artist to go through and reduce the face density of your models or an animation programmer to implement a more size-friendly animation codec. This is very game specific.</li>
</ol>
<p>You also run into the standard set of problems with things like bit compatibility (though the Wii and PSOne are both 32-bit), compiler idiosyncrasies, build script incompatibilities and proprietary compiler extensions. </p>
<p>Games are relatively challenging to test. A good rule of thumb is you want to have enough testers on your team to run through the game in a maximum of two days, covering all major aspects of play. In games that take a long time to beat (RPGs with 30+ hours of gameplay), your testing team needs to be quite large to offer full coverage. Because you are just doing a port, you can come up with a testing plan that maximizes coverage of your new code without having a testing team punch every wall in your game to make sure it (still) has clipping. The game shipped once.</p>
<p>Becoming a licensed developer requires you to apply. The turnaround time, from experience, is not good. Generally speaking, priority is given to studios with shipped titles and organized offices with reasonably good security and the ability to buy the (relatively) expensive development kits. You may be better off working with a licensed developer if you do not meet these criteria.</p>
<p>Console and game development is challenging for people already experienced in it. There is no book that covers it all. My recommendation is to attempt to recruit an expert who has experience shipping titles in a position of systems or engine programmer. What types of programmers and skillsets exist in games is a whole different question for Stack, though.</p>
http://stackoverflow.com/questions/1494254/whats-the-best-way-to-discover-why-threads-are-being-created-in-my-c-app-and-w2What's the best way to discover why threads are being created in my C++ app and what they do?sludge2009-09-29T18:45:46Z2009-09-29T19:13:15Z
<p>I am doing an audit of a C++ app running on Windows, compiled against multithreaded debug DLL. It has a lot of third party dependencies which can spawn threads. I need to track why each thread is there and how much stack space it is allocating.</p>
<p>What is a good way to trace back to the start of a thread's creation so I can see where it is spawned? </p>
<p>Update: I should point out I have the source code to the entire app outside of Microsoft dependencies. However, a lot of the threads have callstacks that exist exclusively inside of libraries that ship with the OS such as ntdll.dll and kernel32.dll.</p>
http://stackoverflow.com/questions/1084956/how-do-i-take-a-screengrab-of-a-single-window-using-cocoa-or-carbon-on-os-x0How do I take a screengrab of a single window using Cocoa or Carbon on OS X?sludge2009-07-05T22:29:07Z2009-07-05T22:56:07Z
<p>I need to be able to identify a single window on the user's screen and take a screen capture of it. The screen data is to be stored in memory and not written to disk.</p>
<p>This is already supported through the commandline tool /usr/sbin/screencapture or through the Grab utility (though their functionality is not extensive enough to justify me launching them as a subprocess).</p>
<p><strong>References / Hints</strong></p>
<ul>
<li>nm /usr/sbin/screencapture returns private Cocoa interfaces including _CGSGetSharedWindow that appear to do this.</li>
<li>Third party application Snapzpro does this (but does not provide source code)</li>
</ul>
http://stackoverflow.com/questions/1083577/how-do-i-retrieve-iphone-camera-or-video-images-before-the-user-presses-the-snaps0How do I retrieve iPhone camera or video images before the user presses the snapshot button?sludge2009-07-05T06:37:36Z2009-07-05T11:36:30Z
<p>I am looking to stream what the camera sees onto a series of OpenGL ES textures. Getting them to display on the textures is not difficult, however, it isn't clear that the UIImagePickerController is able to grab images from the camera before the user takes a snapshot.</p>
<p>Tagged with 3gs because of the new video capture API.</p>
http://stackoverflow.com/questions/992239/how-to-get-into-game-devpart-time/1024490#10244901Answer by sludge for how to get into game dev(part time)?sludge2009-06-21T18:37:20Z2009-06-21T18:37:20Z<p>As one of two programmers of the Threewave Capture the Flag mod for Quake 3, I can attest to working on (and shipping) a mod as being an incredibly rewarding introduction to gaming.</p>
<p>Working on a mod situates you next to production code, with all of its conventions and warts. It also introduces you to an already-working codebase that is, at a minimum, a few hundred thousand lines of code. This teaches you to be able to search and read code and primes you for working on a team.</p>
<p>You also get to work with quality art assets and ship a product that garners attention for you and your small group.</p>
<p>Working with XNA or downloading libraries and hanging out in forums is alright, but neither of them give you the starting point of a defined product, already commercially successful. </p>
<p>These days, Half-Life 2 seems like a great starting point. Lots of C++ code, community support and a history of Valve and other studios hiring top talent from their own community.</p>
<p>Best of luck!</p>
http://stackoverflow.com/questions/1009076/how-can-i-learn-about-cross-platform-game-development/1024366#10243662Answer by sludge for How can I learn about cross platform game development?sludge2009-06-21T17:28:08Z2009-06-21T17:34:03Z<p>This question can be divided up into two separate questions. "How can I write portable code?" and "What are the divergent requirements of mainstream gaming platforms?".</p>
<p>The first question is relatively easy to answer. Best practices for abstracting your non-portable code are covered in Write Portable Code:
<a href="http://books.google.ca/books?id=4VOKcEAPPO0C&printsec=frontcover" rel="nofollow">http://books.google.ca/books?id=4VOKcEAPPO0C&printsec=frontcover</a></p>
<p>Turning theory into practice, the Quake 3 source code does a pretty good job of dividing out different platforms into separate areas for a C codebase, available at <a href="http://www.idsoftware.com/business/techdownloads/" rel="nofollow">http://www.idsoftware.com/business/techdownloads/</a> However, it does not demonstrate C++ patterns such as abstract interfaces, implemented once per platform.</p>
<p>The second part of your question, "What are the divergent requirements of mainstream gaming platforms?" is tougher. However, it is notable that your largest areas of change are still your renderer, your audio subsystem and your networking. </p>
<p>Each console platform has a series of certification requirements, available under an agreement with the respective console owners. The requirements drive consistency in user experience and are not focused on gameplay or qualitative, high level issues. For instance, your game may need to display a reasonably interesting animating loading screen, and black screens are unacceptable.</p>
<p>Getting your hands on this documentation as soon as possible is key to making the right choices in developing for a specific console platform.</p>
<p>Finally, if you can't get your hands on a console devkit, I suggest you port your code to the Mac from Windows. The Mac gets you an OS port ensuring you are not tied to Windows as well as a processor port if you support universal binaries. This ensures your code is endian agnostic.</p>
<p>If you support both PC and Mac, you will be well positioned to support a third platform, should you gain access to it in the future.</p>
<p><strong>Addendum</strong> You wrote:</p>
<blockquote>
<p>the ideal solution is to reuse as much
code as possible instead of rewriting
the whole thing for every platform</p>
</blockquote>
<p>In many game porting scenarios, the ideal solution is <em>not</em> to reuse as much code as possible, but to write the optimal code for each platform. Code can be reused between projects and is relatively inexpensive as compared to the content that the engine takes in. A more reasonable goal is to aim for lowest common denominator content that runs on all platforms without modification (a build phase that packs the content for media is okay).</p>
http://stackoverflow.com/questions/151919/when-should-i-use-forceinline-instead-of-inline5When should I use __forceinline instead of inline?sludge2008-09-30T05:58:53Z2009-06-06T18:03:03Z
<p>Visual Studio includes support for __forceinline. The Microsoft Visual Studio 2005 documentation states:</p>
<blockquote>
<p>The __forceinline keyword overrides
the cost/benefit analysis and relies
on the judgment of the programmer
instead.</p>
</blockquote>
<p>This raises the question: When is the compiler's cost/benefit analysis wrong? And, how am I supposed to know that it's wrong? </p>
<p>In what scenario is it assumed that I know better than my compiler on this issue?</p>
http://stackoverflow.com/questions/415673/what-first-game-did-you-program-and-did-it-make-you-a-better-developer/843661#8436610Answer by sludge for What first game did you program, and did it make you a better developer?sludge2009-05-09T17:08:21Z2009-05-09T17:08:21Z<p>The first game I wrote was a turn-based racing game with still graphics to add to the experience over the text. It was for the commodore 64, and I was five years old. It took me two months and filled the better part of a single sided 5 1/4" floppy disk. </p>
<p>Yes, a turn based racing game. You'd go cross country and encounter obstacles and interesting people who would help you get to your destination faster. There was also subterfuge where you could damage your opponent's changes of winning.</p>
http://stackoverflow.com/questions/146480/how-do-i-get-the-resolution-of-the-main-monitor-in-mac-os-x-in-c3How do I get the resolution of the main monitor in Mac OS X in C++?sludge2008-09-28T18:49:12Z2009-04-30T18:58:03Z
<p>I have a graphical app that needs to test the resolution of the display it is starting up on in Mac OS X to ensure it is not larger than the resolution. This is done before the window itself is initialized. </p>
<p>If there is more than one display, it needs to be the primary display. This is the display that hardware accelerated (OpenGL) apps will start up on in Full Screen, and is typically the display that has the menu bar at the top.</p>
<p>In Windows, I can successfully use GetSystemMetrics(). How can I do this on OS X?</p>
http://stackoverflow.com/questions/764656/how-do-i-test-for-collision-of-two-moving-2d-oriented-bounding-boxes3How do I test for collision of two moving 2d oriented bounding boxes?sludge2009-04-19T01:53:31Z2009-04-24T20:28:02Z
<p>The OBBs have a position(x,y), a velocity(x,y) and an orientation(Matrix). Given periodic updates, the OBBs must collide with each other, returning the fraction of the move that was deemed successful.</p>
<p>I have looked at the Polygon test on the GPWiki - <a href="http://gpwiki.org/index.php/Polygon_Collision" rel="nofollow">http://gpwiki.org/index.php/Polygon_Collision</a> - but it does not account for moving objects or an object that is completely within an OBB.</p>
<p>The book Real Time Collision Detection covers 3D OBBs in Chapter 4: Bounding Volumes, but the method for testing in 3 dimensions is notably more complex than in 2D.</p>
http://stackoverflow.com/questions/397274/how-do-i-change-the-fov-of-the-3dsmax-perspective-window-programattically-through1How do I change the FOV of the 3dsmax perspective window programattically through Maxscript?sludge2008-12-29T07:21:34Z2009-01-29T20:33:42Z
<p>I need to access the FOV property of the Perspective viewport. This is not the same as the FOV property associated with target and free cameras.</p>
<p>To access the FOV property non-programatically, right click on the viewport name (top left of each viewport), go to configure and under "perspective user view" you can change the FOV.</p>
http://stackoverflow.com/questions/431684/how-do-i-cd-in-python/431715#4317154Answer by sludge for How do I "cd" in pythonsludge2009-01-10T20:41:50Z2009-01-10T20:46:06Z<p>You can change the working directory with os.chdir( path ). </p>
<p>There are two best practices to follow:</p>
<ol>
<li>Catch the exception (WindowsError, OSError) on invalid path. If the exception is thrown, do not perform any recursive operations, especially destructive ones. They will operate on the old path and not the new one.</li>
<li>Return to your old directory when you're done. This is done in an exception-safe manner by wrapping your chdir call in a class:</li>
</ol>
<pre>
class Chdir:
def __init__( self, newPath ):
self.savedPath = os.getcwd()
os.chdir(newPath)
def __del__( self ):
os.chdir( self.savedPath )
</pre>
<p>Note that this snippet assumes that self.savedPath is still valid. Improving the handling of this is an exercise left up to the programmer.</p>
<p>Changing the current working directory in a subprocess does not change the current working directory in the parent process. This is true of the Python interpreter as well. You cannot use os.chdir() to change the CWD of the calling process.</p>
http://stackoverflow.com/questions/179723/what-is-the-best-way-of-implementing-assertion-checking-in-c/179883#1798832Answer by sludge for What is the best way of implementing assertion checking in C++?sludge2008-10-07T19:06:09Z2008-10-07T21:00:33Z<h2>Basic Assert Usage</h2>
<pre><code>#include <cassert>
/* Some code later */
assert( true );
</code></pre>
<h3>Best Practice Notes</h3>
<p>Asserts are used to identify <em>runtime states that should be true</em>. As a result, they are compiled out in release mode. </p>
<p>If you have a situation where you want an assert to always hit, you can pass false to it. For example:</p>
<pre><code>switch ( someVal ):
{
case 0:
case 1:
break;
default:
assert( false ); /* should never happen */
}
</code></pre>
<p>It is also possible to pass a message through assert:</p>
<pre><code>assert( !"This assert will always hit." );
</code></pre>
<p>Mature codebases frequently extend the assert functionality. Some of the common extensions include:</p>
<ul>
<li>Toggling asserts on a per-module basis to localize testing.</li>
<li>Creating an additional assert macro that is compiled out in most debug builds. This is desirable for code that is called very frequently (millions of times per second) and is unlikely to be incorrect.</li>
<li>Allowing users to disable the currently hit assert, all asserts in the compilation unit or all asserts in the codebase. This stops benign asserts from being triggered, creating unusable builds.</li>
</ul>
http://stackoverflow.com/questions/156438/what-does-it-mean-for-a-c-function-to-be-inline/156466#1564661Answer by sludge for What Does It Mean For a C++ Function To Be Inline?sludge2008-10-01T06:33:55Z2008-10-01T06:33:55Z<p>Inline functions alter the performance profile of your application by possibly generating instructions that are placed in the code segment of your application. Whether a function is inlined is at the discretion of your compiler. In my experience, most modern compilers are good at determining when to comply with a user's request to inline.</p>
<p>In many cases, inlining a function will improve its performance. There is an inherent overhead to function calls. There are reasons, however, why inlining a function could be negative:</p>
<ul>
<li>Increasing the size of the binary executable by duplicating code could lead to disk thrashing, slowing your application down.</li>
<li>Inlining code could contribute to cache misses, or possibly contribute to cache hits depending on your architecture.</li>
</ul>
<p>The C++ FAQ does a good job of explaining the intricacies of the keyword:
<a href="http://www.parashift.com/c++-faq-lite/inline-functions.html#faq-9.3" rel="nofollow">http://www.parashift.com/c++-faq-lite/inline-functions.html#faq-9.3</a></p>
http://stackoverflow.com/questions/146657/c-header-file-loops/146669#1466693Answer by sludge for C header file loopssludge2008-09-28T20:31:15Z2008-09-28T20:46:39Z<p>The correct answer is to use include guards, and to use forward declarations.</p>
<h2>Include Guards</h2>
<pre><code>/* begin foo.h */
#ifndef _FOO_H
#define _FOO_H
// Your code here
#endif
/* end foo.h */
</code></pre>
<p>Visual C++ also supports #pragma once. It is a non standard preprocessor directive. In exchange for compiler portability, you reduce the possibility of preprocessor name collisions and increase readability. </p>
<h2>Forward Declarations</h2>
<p>Forward declare your structs. If the members of a struct or class are not explicitly needed, you can declare their existence at the beginning of a header file.</p>
<pre><code>struct tree; /* element.h */
struct element; /* tree.h */
</code></pre>
http://stackoverflow.com/questions/146271/what-you-think-about-default-pass-by-reference-semantics-on-c/146330#1463301Answer by sludge for What you think about default pass-by-reference semantics on C++?sludge2008-09-28T17:42:51Z2008-09-28T17:42:51Z<p>When you pass by value, you are copying data to the stack. In the event that you have an operator= defined for the struct or class that you are passing it, it gets executed. There is no compiler directive I am aware of that would wash away the rigmarole of implicit language confusion that the proposed change would inherently cause. </p>
<p>A common best practice is to pass values by const reference, not just by reference. This ensures that the value cannot be changed in the calling function. This is one element of a const-correct codebase.</p>
<p>A fully const-correct codebase goes even further, adding const to the end of prototypes. Consider: </p>
<pre><code>void Foo::PrintStats( void ) const {
/* Cannot modify Foo member variables */
}
void Foo::ChangeStats( void ) {
/* Can modify foo member variables */
}
</code></pre>
<p>If you were to pass a Foo object in to a function, prefixed with const, you are able to call PrintStats(). The compiler would error out on a call to ChangeStats().</p>
<pre><code>void ManipulateFoo( const Foo &foo )
{
foo.PrintStats(); // Works
foo.ChangeStats(); // Oops; compile error
}
</code></pre>
http://stackoverflow.com/questions/25999/secure-online-highscore-lists-for-non-web-games/145450#1454505Answer by sludge for Secure Online Highscore Lists for Non-Web Gamessludge2008-09-28T08:04:12Z2008-09-28T08:04:12Z<p>At the end of the day, you are relying on trusting the client. If the client sends replays to the server, it is easy enough to replicable or modify a successful playthrough and send that to the server.</p>
<p>Your best bet is to raise the bar for cheating above what a player would deem worth surmounting. To do this, there are a number of proven (but oft-unmentioned) techniques you can use:</p>
<ol>
<li>Leave blacklisted cheaters in a honeypot. They can see their own scores, but no one else can. Unless they verify by logging in with a different account, they think they have successfully hacked your game.</li>
<li>When someone is flagged as a cheater, defer any account repercussions from transpiring until a given point in the future. Make this point random, within one to three days. Typically, a cheater will try multiple methods and will eventually succeed. By deferring account status feedback until a later date, they fail to understand what got them caught.</li>
<li>Capture all game user commands and send them to the server. Verify them against other scores within a given delta. For instance, if the player used the shoot action 200 times, but obtained a score of 200,000, but the neighboring players in the game shot 5,000 times to obtain a score of 210,000, it may trigger a threshold that flags the person for further or human investigation.</li>
<li>Add value and persistence to your user accounts. If your user accounts have unlockables for your game, or if your game requires purchase, the weight of a ban is greater as the user cannot regain his previous account status by simply creating a new account through a web-based proxy.</li>
</ol>
http://stackoverflow.com/questions/1659695/useful-things-to-put-in-the-user-stream-segment-of-minidumpsComment by sludge on Useful things to put in the user stream segment of minidumpssludge2009-11-22T23:08:29Z2009-11-22T23:08:29ZThen you agree that it's a forward looking question. By providing the maximum diagnostic information, you can debug cases that you encounter in the future.
Hence the question. :)
Keep in mind that debug dumps are generated by third parties, including customers. Understanding as much as possible about the environment of the app when it crashed can be essential to tracking an issue.http://stackoverflow.com/questions/1084956/how-do-i-take-a-screengrab-of-a-single-window-using-cocoa-or-carbon-on-os-x/1085003#1085003Comment by sludge on How do I take a screengrab of a single window using Cocoa or Carbon on OS X?sludge2009-07-06T15:14:38Z2009-07-06T15:14:38ZThis does the trick. A short Google provided sample code, rigged with profiling. <a href="http://developer.apple.com/samplecode/SonOfGrab/index.html" rel="nofollow">developer.apple.com/samplecode/SonOfGrab/…</a>http://stackoverflow.com/questions/1083577/how-do-i-retrieve-iphone-camera-or-video-images-before-the-user-presses-the-snapsComment by sludge on How do I retrieve iPhone camera or video images before the user presses the snapshot button?sludge2009-07-05T21:38:31Z2009-07-05T21:38:31ZAlso, it appears that there is an app called "RedLaser" which was approved by Apple. It overlays a red bar on the camera and lets you do realtime scanning of barcodes.
<a href="http://www.ismashphone.com/2009/05/red-laser-the-first-accurate-iphone-barcode-scanner-hits-the-app-store.html" rel="nofollow">ismashphone.com/2009/05/…</a>
However, it isn't available in the "Canadian" iTunes store as of this writing. That means it could have been pulled after approval.http://stackoverflow.com/questions/1083577/how-do-i-retrieve-iphone-camera-or-video-images-before-the-user-presses-the-snapsComment by sludge on How do I retrieve iPhone camera or video images before the user presses the snapshot button?sludge2009-07-05T21:30:40Z2009-07-05T21:30:40ZThis appears to be a related thread. Certainly with relevant comments:
<a href="http://stackoverflow.com/questions/601381/getting-an-image-representation-of-the-camera-preview-in-uiimagepickercontroller" rel="nofollow" title="getting an image representation of the camera preview in uiimagepickercontroller">stackoverflow.com/questions/601381/…</a>http://stackoverflow.com/questions/1083577/how-do-i-retrieve-iphone-camera-or-video-images-before-the-user-presses-the-snaps/1083899#1083899Comment by sludge on How do I retrieve iPhone camera or video images before the user presses the snapshot button?sludge2009-07-05T18:46:22Z2009-07-05T18:46:22ZDoes this answer take into account the new UIVideoEditorController class added recently? There seems to be a dearth of documentation on the subject.http://stackoverflow.com/questions/496599/iphone-camera-images-as-opengl-es-textures/496631#496631Comment by sludge on iPhone camera images as OpenGL ES texturessludge2009-07-05T06:35:07Z2009-07-05T06:35:07ZDoes the iPhone OpenGL ES standard allow for the GL_ARB_texture_non_power_of_two extension? This may be worth looking into.http://stackoverflow.com/questions/764656/how-do-i-test-for-collision-of-two-moving-2d-oriented-bounding-boxes/764660#764660Comment by sludge on How do I test for collision of two moving 2d oriented bounding boxes?sludge2009-04-19T02:20:35Z2009-04-19T02:20:35ZThe question is specifically about ORIENTED bounding boxes that can be rotated, not axially aligned boxes.