User HanClinto - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T10:23:22Zhttp://stackoverflow.com/feeds/user/26933http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/329652/enums-in-as3-flash-flex4Enums in AS3 / Flash / Flex?HanClinto2008-12-01T00:06:30Z2009-09-30T05:02:01Z
<p>One thing I really like about AS3 over AS2 is how much more compile-time type-checking it adds. However, it seems to be somewhat lacking in that there is no type-checked enumeration structure available. What's a good (best / accepted) way to do custom enumerated types in AS3?</p>
http://stackoverflow.com/questions/1430427/mxmlc-generates-different-binarys-swf-even-with-no-code-changes/1435581#14355810Answer by HanClinto for mxmlc generates different binarys (swf) even with no code changesHanClinto2009-09-16T21:28:44Z2009-09-16T21:28:44Z<p>IIRC, the build timestamp is embedded into the SWF, and then the binary is compressed. This will cause subtle variations in compression used for the binary, and so it will often change.</p>
<p>I don't know of a way around this.</p>
http://stackoverflow.com/questions/1300690/actionscript-angle-of-a-line-trig/1302724#13027244Answer by HanClinto for Actionscript Angle of a Line TrigHanClinto2009-08-19T21:30:18Z2009-08-20T14:44:48Z<p>Everyone is suggesting formulas using <a href="http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs%5FParts&file=00001820.html" rel="nofollow">Math.atan()</a>, giving caveats for 0 cases in the denominator. There's a whole function that already does this -- it's <a href="http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs%5FParts&file=00001821.html" rel="nofollow">Math.atan2()</a>. </p>
<p>Just pass in an X and a Y value, and it gives you an angle. No special cases -- just coordinates. As usual, the return value is in radians, from -pi to +pi.</p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1239549#12395496Answer by HanClinto for What is your best programmer joke?HanClinto2009-08-06T15:09:42Z2009-08-17T13:40:51Z<p><strong>Q.</strong> What's the difference between C and C++?</p>
<p><strong>A.</strong> Nothing, because: (C - C++ == 0)</p>
<p><em>(But note that the value of C has been increased)</em></p>
http://stackoverflow.com/questions/1271594/shape-map-file-decoding/1272462#12724621Answer by HanClinto for shape map file decodingHanClinto2009-08-13T14:51:13Z2009-08-13T14:51:13Z<p>Just use the x/y coordinates directly as long/lat.</p>
<p>Quoting from <a href="http://en.wikipedia.org/wiki/Shapefile#Overview" rel="nofollow">The 'Pedia</a>:</p>
<blockquote>
<p>Shapefiles deal with coordinates in
terms of X and Y, although they are
often storing longitude and latitude,
respectively. While working with the X
and Y terms, be sure to respect the
order of the terms (longitude is
stored in X, latitude in Y).</p>
</blockquote>
<p>It's not guaranteed that these coordinates are lat/long -- sometimes they can be pixels. However, that's determined by the generator of the Shapefile -- nothing inherit to the Shapefile itself.</p>
http://stackoverflow.com/questions/1262308/read-binary-c-float-in-actionscript-3/1262652#12626520Answer by HanClinto for Read binary C float in Actionscript 3?HanClinto2009-08-11T20:12:58Z2009-08-11T20:12:58Z<p>The AS3 <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/Number.html" rel="nofollow">Number</a> class conforms to <a href="http://en.wikipedia.org/wiki/IEEE%5F754-2008" rel="nofollow">IEEE 754</a>, and is identical to the Javascript number class.</p>
<p>Rather than search for AS3 libraries, I dug around for some Javascript code that should work with only minor modification in AS3.</p>
<p>On <a href="http://jsfromhell.com/classes/binary-parser" rel="nofollow">this site</a> I found this rather high-density float parser:</p>
<pre><code>p.decodeFloat = function( data, precisionBits, exponentBits ){
var b = new this.Buffer( this.bigEndian, data );
b.checkBuffer( precisionBits + exponentBits + 1 );
var bias = Math.pow( 2, exponentBits - 1 ) - 1, signal = b.readBits( precisionBits + exponentBits, 1 ), exponent = b.readBits( precisionBits, exponentBits ), significand = 0,
divisor = 2, curByte = b.buffer.length + ( -precisionBits >> 3 ) - 1;
do
for( var byteValue = b.buffer[ ++curByte ], startBit = precisionBits % 8 || 8, mask = 1 << startBit; mask >>= 1; ( byteValue & mask ) && ( significand += 1 / divisor ), divisor *= 2 );
while( precisionBits -= startBit );
return exponent == ( bias << 1 ) + 1 ? significand ? NaN : signal ? -Infinity : +Infinity : ( 1 + signal * -2 ) * ( exponent || significand ? !exponent ? Math.pow( 2, -bias + 1 ) * significand : Math.pow( 2, exponent - bias ) * ( 1 + significand ) : 0 );
};
</code></pre>
<p>If you prefer your code to be debuggable as well as functional, you may find <a href="http://babbage.cs.qc.edu/IEEE-754/js/" rel="nofollow">this code</a> to be more helpful instead.</p>
http://stackoverflow.com/questions/1262237/howto-allow-any-data-type-to-be-returned-by-a-function-in-actionscript-3/1262286#12622862Answer by HanClinto for Howto allow any data type to be returned by a function in actionscript 3?HanClinto2009-08-11T18:57:46Z2009-08-11T18:57:46Z<p>Use *</p>
<pre><code>public static function retrieve(msg:String):*
{
if (msg == "age") {
return 23;
} else {
return "hi!";
}
}
</code></pre>
http://stackoverflow.com/questions/1255286/detecting-memory-leaks-in-actionscript-3-project/1255642#12556423Answer by HanClinto for Detecting Memory Leaks in ActionScript-3 Project.HanClinto2009-08-10T15:42:34Z2009-08-10T15:42:34Z<p>First is to establish if you actually have a memory leak. For that, I would recommend using a performance stat tool that gives you real-time feedback on your memory usage. </p>
<p>One of the best ones that I've used is <a href="http://code.google.com/p/mrdoob/wiki/stats" rel="nofollow">Mr. Doob's Stats</a> tool:</p>
<p><img src="http://mrdoob.com/tools/stats/hires%5Fstats2.png" alt="Screenshot" /></p>
<p>Just add it to the stage with </p>
<pre><code>addChild( new Stats() );
</code></pre>
<p>And you'll be able to watch your memory usage in real-time. Perform different actions to see what is causing the memory leak (is it just when you click on these buttons, or every frame, etc etc).</p>
http://stackoverflow.com/questions/1209876/accessing-a-piece-of-data-quickly-from-a-very-large-sharedobject-data/1222629#12226291Answer by HanClinto for Accessing a piece of data quickly from a very large sharedObject-dataHanClinto2009-08-03T14:21:59Z2009-08-03T14:21:59Z<p>I would be inclined to think that multiple shared objects would be the best way to go, but I don't know what your performance requirements are. I'm not inclined to think that the garbage collection would be an issue -- it doesn't seem like it could be any worse than loading the whole 0.5gb at once. Ultimately, your best bet here is going to be to experiment.</p>
http://stackoverflow.com/questions/1176534/what-is-a-good-profiling-performance-monitor-app-method-for-flash-flex/1202877#12028770Answer by HanClinto for What is a good profiling/performance monitor app/method for Flash/Flex?HanClinto2009-07-29T20:35:29Z2009-07-29T20:35:29Z<p>I use Mr. Doob's performance stat widget. Add it to the stage, and it gives you real-time information about the performance and memory usage of your app:</p>
<ul>
<li><a href="http://code.google.com/p/mrdoob/wiki/stats" rel="nofollow">http://code.google.com/p/mrdoob/wiki/stats</a></li>
</ul>
<p><img src="http://mrdoob.com/tools/stats/hires%5Fstats2.png" alt="Screenshot" /></p>
<p>It's light-weight, and performs well. Compatible with Actionscript3, Javascript, and haXe.</p>
http://stackoverflow.com/questions/1195257/as3-sprite-sheets/1195653#11956531Answer by HanClinto for AS3 Sprite SheetsHanClinto2009-07-28T17:51:33Z2009-07-28T18:02:26Z<p>The short answer is that you will want to use <a href="http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs%5FParts&file=00001400.html" rel="nofollow">BitmapData.copyPixels()</a> to copy only a small section from your source sprite sheet to your display sprite that is actually on the screen.</p>
<p>Something like:</p>
<pre><code>private function DrawSpriteIndex( displayBitmap:Bitmap, spriteSheet:Bitmap, spriteIndex:int ):void {
var spriteW:int = 32;
var spriteH:int = 32;
var sheetW:int = 5;
displayBitmap.bitmapData.copyPixels(spriteSheet.bitmapData,
new Rectangle( (spriteIndex % sheetW) * spriteW, Math.floor(spriteIndex / sheetW) * spriteH, 32, 32),
new Point(0,0)
);
}
</code></pre>
<p>You may find these links helpful -- they helped me when I was learning this:</p>
<ul>
<li><a href="http://www.8bitrocket.com/newsdisplay.aspx?newspage=13430" rel="nofollow">http://www.8bitrocket.com/newsdisplay.aspx?newspage=13430</a></li>
<li><a href="http://www.8bitrocket.com/newsdisplay.aspx?newspage=14591" rel="nofollow">http://www.8bitrocket.com/newsdisplay.aspx?newspage=14591</a></li>
<li><a href="http://www.8bitrocket.com/newsdisplay.aspx?newspage=15967" rel="nofollow">http://www.8bitrocket.com/newsdisplay.aspx?newspage=15967</a></li>
</ul>
http://stackoverflow.com/questions/1155658/convert-a-pdf-to-a-jpg/1155919#11559190Answer by HanClinto for convert a PDF to a jpg ?HanClinto2009-07-20T20:56:52Z2009-07-20T20:56:52Z<p>Did you look at the <a href="http://code.google.com/p/as3-pdfreader/" rel="nofollow">as3-pdfreader</a> project?</p>
http://stackoverflow.com/questions/1018074/flash-performance-for-game-dev-native-render-vs-bitmapdata-framebuffer/1018402#10184021Answer by HanClinto for Flash performance for game dev: native render VS BitmapData framebufferHanClinto2009-06-19T14:51:28Z2009-06-19T14:51:28Z<p>If you are doing hundreds or thousands of objects on a screen (such as with intense particle effects), then you will have better performance with CopyPixels.</p>
<p>A lot of this just depends on what you're trying to do, right?</p>
http://stackoverflow.com/questions/952229/code-completion-for-non-as-documents-in-flex-builder/971088#9710881Answer by HanClinto for Code completion for non .as documents in Flex BuilderHanClinto2009-06-09T16:17:26Z2009-06-09T16:17:26Z<p>Start by opening up the Flex Builder / Eclipse preferences, and in the left-hand navigation, select General -> Content Types.</p>
<p>In the "Content Types" list on the right side, scroll down and select Actionscript (might be listed as AS3 -- not sure) from the list, then click the "Add..." button.</p>
<p>In the dialog box that pops up, type in
*.es
and click "OK"</p>
<p>This will associate .es files to be recognized and parsed as Actionscript.</p>
<p>Click OK to close the preferences dialog, and close any .es files you may have open in your editor. When you re-open them, you should have syntax highlighting.</p>
http://stackoverflow.com/questions/968539/as3-anti-bot-form-script/971045#9710450Answer by HanClinto for AS3 anti bot form script?HanClinto2009-06-09T16:09:06Z2009-06-09T16:09:06Z<p>In addition to Nils' excellent answer, see <a href="http://stackoverflow.com/questions/111576/when-the-bots-attack">this previous Stack Overflow question</a> for a wide survey of some of the anti-bot measures that are currently popular.</p>
<p>Also, I'm not sure you'll want to use AS3, as that is both server side, and may be more complicated than you need. Still, if you used a Flash app to submit your form (rather than having form information embedded into your HTML), then it would be harder for a bot to parse and submit.</p>
http://stackoverflow.com/questions/945859/best-approach-to-change-variable-values-in-a-compiled-swf-file/947315#9473151Answer by HanClinto for Best approach to change variable values in a compiled SWF fileHanClinto2009-06-03T21:20:08Z2009-06-03T21:20:08Z<p>Part of the trouble is that a compiled SWF is compressed with a zlib stream internally, so it's non-trivial to modify the binary without recompiling from the command-line SDK.</p>
<p>It's not hard to set up and automate the Flex SDK with the command line tools (either mxmlc or Ant -- we use both in our projects), but if you're really insistent that you'd like to modify the binaries without recompiling, then you may find <a href="http://kaioa.com/node/87" rel="nofollow">this blog post</a> helpful. It includes a utility to decompress the internal stream into its raw data, and recompress with a different compression algorithm. In the middle of that script (while the data is decompressed), you could search through the binary for the value that you're looking for (either through a known offset found by experimentation, or from a public member label), change the data, recompress the stream, and voila -- you have a custom .swf. If you change the value in an embedded asset (such as a text XML file), you may have an easier time locating the data to change in the binary.</p>
<p><a href="http://kaioa.com/b/0808/swf%5Frecompress.zip" rel="nofollow">swf_recompress.zip</a></p>
http://stackoverflow.com/questions/945086/saving-xml-file-in-as3-is-possible/945621#9456210Answer by HanClinto for Saving XML file in AS3 is possibleHanClinto2009-06-03T16:11:09Z2009-06-03T16:11:09Z<p>I'm sorry, your question isn't very clear.</p>
<p>Are you asking if you can save a file to the hard drive from within a compile SWF written in AS3?</p>
<p>Or are you asking if you can include a raw XML file in your AS3 project without needing to write it out as a variable?</p>
<p>If you meant the former, no -- not without Adobe AIR. You can save data locally as a SharedObject, but not as an arbitrary file in the file system.</p>
<p>If the latter, then yes -- you must embed the file just as you would embed another resource (such as an image or a sound). However, it looks like there might be a bug in Flash that makes this non-trivial to figure out how to do.</p>
<p><a href="http://forums.tigsource.com/index.php?topic=6208.0" rel="nofollow">This link might be of help to you.</a></p>
<pre><code>[Embed(source='../../../../assets/levels/test.xml', mimeType="application/octet-stream")]
public static const Level_Test:Class;
</code></pre>
<p>And then to parse the XML:</p>
<pre><code>var ba:ByteArray = (new Levels.Level_Test()) as ByteArray;
var s:String = ba.readUTFBytes( ba.length );
xml = new XML( s );
</code></pre>
<p>Apologies if neither of those questions are what you were actually asking.</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/945527/modify-cmd-exe-properties-using-the-command-prompt/945552#9455521Answer by HanClinto for Modify cmd.exe properties using the command promptHanClinto2009-06-03T15:57:33Z2009-06-03T15:57:33Z<p>Regarding auto-completion:</p>
<blockquote>
<p>File and Directory name completion is
NOT enabled by default. You can
enable or disable file name completion
for a particular invocation of CMD.EXE
with the /F:ON or /F:OFF switch. You
can enable or disable completion for
all invocations of CMD.EXE on a
machine and/or user logon session by
setting either or both of the
following REG_DWORD values in the
registry using REGEDT32.EXE:</p>
<pre><code>HKEY_LOCAL_MACHINE\Software\Microsoft\Command
</code></pre>
<p>Processor\CompletionChar
HKEY_LOCAL_MACHINE\Software\Microsoft\Command
Processor\PathCompletionChar</p>
<pre><code> and/or
HKEY_CURRENT_USER\Software\Microsoft\Command
</code></pre>
<p>Processor\CompletionChar
HKEY_CURRENT_USER\Software\Microsoft\Command
Processor\PathCompletionChar</p>
<p>with the hex value of a control
character to use for a particular
function (e.g. 0x4 is Ctrl-D and 0x6
is Ctrl-F). The user specific
settings take precedence over the
machine settings. The command line
switches take precedence over the
registry settings.</p>
<p>If completion is enabled with the
/F:ON switch, the two control
characters used are Ctrl-D for
directory name completion and Ctrl-F
for file name completion. To disable
a particular completion character in
the registry, use the value for space
(0x20) as it is not a valid control
character.</p>
</blockquote>
<p>Couldn't find any command history options in there ( cmd /? ), and it looks like the other options you asked about are set exclusively through registry settings.</p>
http://stackoverflow.com/questions/853450/getting-info-from-wikipedia-how-do-i-get-html-form/853504#8535040Answer by HanClinto for Getting info from Wikipedia - how do I get HTML form?HanClinto2009-05-12T15:53:17Z2009-05-12T17:34:57Z<p>Try looking at the <a href="http://en.wikipedia.org/w/index.php?title=Aix-les-Bains&printable=yes" rel="nofollow">printable version</a> of the desired Wikipedia article in question.</p>
<p>In other words, change this line of your source code:</p>
<pre><code>$url.=sprintf('&action=query&titles=%s&rvprop=content&prop=revisions&redirects=1', $article);
</code></pre>
<p>to something like:</p>
<pre><code>$url.=sprintf('&action=query&titles=%s&printable=yes&redirects=1', $article);
</code></pre>
<p>Disclaimer: Have not tested, and this is just a guess at how your API might work.</p>
http://stackoverflow.com/questions/853647/is-it-a-violation-of-terms-and-services-to-embedd-googles-turn-by-turn-direction/853746#8537462Answer by HanClinto for Is it a violation of terms and services to embedd google's turn by turn directions into an iphone app?HanClinto2009-05-12T16:47:29Z2009-05-12T16:47:29Z<p>From the <a href="http://www.google.com/intl/en%5Fus/help/terms%5Fmaps.html" rel="nofollow">Google Maps Terms of Use</a></p>
<blockquote>
<p>2: <strong>Restrictions on Use.</strong> Unless you have received prior written
authorization from Google (or, as
applicable, from the provider of
particular Content), you must not: </p>
<p>(a)
access or use the Products or any
Content through any technology or
means other than those provided in the
Products, or through other explicitly
authorized means Google may designate
(such as through the Google
Maps/Google Earth APIs);</p>
<p>(b) copy,
translate, modify, or make derivative
works of the Content or any part
thereof;</p>
<p>(c) redistribute, sublicense,
rent, publish, sell, assign, lease,
market, transfer, or otherwise make
the Products or Content available to
third parties; </p>
<p>(d) reverse engineer,
decompile or otherwise attempt to
extract the source code of the Service
or any part thereof, unless this is
expressly permitted or required by
applicable law; </p>
<p>(e) use the Products
in a manner that gives you or any
other person access to mass downloads
or bulk feeds of any Content,
including but not limited to numerical
latitude or longitude coordinates,
imagery, and visible map data; </p>
<p>(f)
delete, obscure, or in any manner
alter any warning, notice (including
but not limited to any copyright or
other proprietary rights notice), or
link that appears in the Products or
the Content; or</p>
<p><strong>(g) use the Service or Content with any products, systems, or applications
for or in connection with (i) real
time navigation or route guidance,
including but not limited to
turn-by-turn route guidance that is
synchronized to the position of a
user's sensor-enabled device; or (ii)
any systems or functions for automatic
or autonomous control of vehicle
behavior.</strong></p>
</blockquote>
<p>I don't know the specifics of your app, but I'm thinking it's easy to run into issues with clause 2.g.</p>
http://stackoverflow.com/questions/853398/alternate-newline-character-python/853432#8534324Answer by HanClinto for Alternate newline character? pythonHanClinto2009-05-12T15:40:18Z2009-05-12T16:14:26Z<p>I'm guessing that your real problem is not with reading in \n as a '\' 'n' -- internally, Python should automagically translate \n into a single character.</p>
<p>My guess is that the real problem is that your newlines are probably actually two characters -- carriage return ('\r') and newline ('\n'). Try handling \r in addition to \n, and I wonder if that won't make your problem go away.</p>
http://stackoverflow.com/questions/853407/strange-python-behaviour/853464#8534642Answer by HanClinto for Strange python behaviourHanClinto2009-05-12T15:45:34Z2009-05-12T15:45:34Z<p>This is because the order of precedence in Python causes this equation to be evaluated from right-to-left.</p>
<pre><code>>>> 2**2
4
>>> 2**2**2
16
>>> 2**(2**2)
16
>>> 2**2**2**2
65536
>>> 2**2**(2**2)
65536
>>> 2**(2**(2**2))
65536
>>> 2**2**2**2**2
57896044618658097711785492504343953926634992332820282019728792003956564819968L
>>> 2**2**2**(2**2)
57896044618658097711785492504343953926634992332820282019728792003956564819968L
>>> 2**2**(2**(2**2))
57896044618658097711785492504343953926634992332820282019728792003956564819968L
>>> 2**(2**(2**(2**2)))
57896044618658097711785492504343953926634992332820282019728792003956564819968L
>>> 2**255
57896044618658097711785492504343953926634992332820282019728792003956564819968L
</code></pre>
http://stackoverflow.com/questions/722905/generating-warnings-for-undocumented-as3-members-asdoc0Generating Warnings for Undocumented AS3 Members? (ASDoc)HanClinto2009-04-06T19:50:24Z2009-04-20T20:26:11Z
<p>I have a Flash (AS3) component library that I'm distributing, and I want to make sure that it's fully documented for each release. One of the things I really liked about Microsoft's automatic doc generation for C# was that I could have my compiler generate warnings (on every compile) for any public member that wasn't documented in their doc tagging format.</p>
<p>I found this extremely helpful for me to make sure I had fully documented all of my code.</p>
<p>Is there a way to turn on a similar thing for ASDoc?</p>
<p>Thanks for any advice and tips -- I would love for this to work from within Eclipse / Flex Builder, but I'm okay using Ant.</p>
http://stackoverflow.com/questions/722905/generating-warnings-for-undocumented-as3-members-asdoc/769938#7699380Answer by HanClinto for Generating Warnings for Undocumented AS3 Members? (ASDoc)HanClinto2009-04-20T20:26:11Z2009-04-20T20:26:11Z<p>Looks like it's not yet in there, but it's now <a href="https://bugs.adobe.com/jira/browse/ASC-3709" rel="nofollow">logged as a feature request in Adobe's tracker</a>.</p>
http://stackoverflow.com/questions/603035/truth-tables-in-code-how-to-structure-state-machine7Truth tables in code? How to structure state machine?HanClinto2009-03-02T16:43:07Z2009-03-12T21:00:45Z
<p>I have a (somewhat) large truth table / state machine that I need to implement in my code (embedded C). I anticipate the behavior specification of this state machine to change in the future, and so I'd like to keep this easily modifiable in the future.</p>
<p>My truth table has 4 inputs and 4 outputs. I have it all in an Excel spreadsheet, and if I could just paste that into my code with a little formatting, that would be ideal.</p>
<p>I was thinking I would like to access my truth table like so:</p>
<pre><code>u8 newState[] = decisionTable[input1][input2][input3][input4];
</code></pre>
<p>And then I could access the output values with:</p>
<pre><code>setOutputPin( LINE_0, newState[0] );
setOutputPin( LINE_1, newState[1] );
setOutputPin( LINE_2, newState[2] );
setOutputPin( LINE_3, newState[3] );
</code></pre>
<p>But in order to get that, it looks like I would have to do a fairly confusing table like so: </p>
<pre><code>static u8 decisionTable[][][][][] =
{{{{ 0, 0, 0, 0 },
{ 0, 0, 0, 0 }},
{{ 0, 0, 0, 0 },
{ 0, 0, 0, 0 }}},
{{{ 0, 0, 1, 1 },
{ 0, 1, 1, 1 }},
{{ 0, 1, 0, 1 },
{ 1, 1, 1, 1 }}}},
{{{{ 0, 1, 0, 1 },
{ 1, 1, 1, 1 }},
{{ 0, 1, 0, 1 },
{ 1, 1, 1, 1 }}},
{{{ 0, 1, 1, 1 },
{ 0, 1, 1, 1 }},
{{ 0, 1, 0, 1 },
{ 1, 1, 1, 1 }}}};
</code></pre>
<p>Those nested brackets can be somewhat confusing -- does anyone have a better idea for how I can keep a pretty looking table in my code?</p>
<p>Thanks!</p>
<p><strong>Edit based on HUAGHAGUAH's answer:</strong></p>
<p>Using an amalgamation of everyone's input (thanks -- I wish I could "accept" 3 or 4 of these answers), I think I'm going to try it as a two dimensional array. I'll index into my array using a small bit-shifting macro:</p>
<pre><code>#define SM_INPUTS( in0, in1, in2, in3 ) ((in0 << 0) | (in1 << 1) | (in2 << 2) | (in3 << 3))
</code></pre>
<p>And that will let my truth table array look like this:</p>
<pre><code>static u8 decisionTable[][] = {
{ 0, 0, 0, 0 },
{ 0, 0, 0, 0 },
{ 0, 0, 0, 0 },
{ 0, 0, 0, 0 },
{ 0, 0, 1, 1 },
{ 0, 1, 1, 1 },
{ 0, 1, 0, 1 },
{ 1, 1, 1, 1 },
{ 0, 1, 0, 1 },
{ 1, 1, 1, 1 },
{ 0, 1, 0, 1 },
{ 1, 1, 1, 1 },
{ 0, 1, 1, 1 },
{ 0, 1, 1, 1 },
{ 0, 1, 0, 1 },
{ 1, 1, 1, 1 }};
</code></pre>
<p>And I can then access my truth table like so:</p>
<pre><code>decisionTable[ SM_INPUTS( line1, line2, line3, line4 ) ]
</code></pre>
<p>I'll give that a shot and see how it works out. I'll also be replacing the 0's and 1's with more helpful #defines that express what each state means, along with /**/ comments that explain the inputs for each line of outputs. Thanks for the help, everyone!</p>
http://stackoverflow.com/questions/448844/variable-sized-arrays-in-c/448857#4488572Answer by HanClinto for Variable Sized Arrays in CHanClinto2009-01-15T23:04:07Z2009-01-15T23:04:07Z<p>Because</p>
<pre><code>int array[variable];
</code></pre>
<p>isn't valid in standard C -- you can only define the length of an array with a constant. (such as your </p>
<pre><code>char name[] = "Nick";
</code></pre>
<p>example, which isn't variable-length).</p>
<p>As such, it's necessary to use a memory allocator like calloc() if you want to create an array of a length based on a program variable.</p>
<p>Just don't forget to free() it.</p>
http://stackoverflow.com/questions/278398/going-backwards-in-a-bash-prompt/278422#2784223Answer by HanClinto for Going backwards in a bash promptHanClinto2008-11-10T16:46:28Z2008-12-27T15:58:15Z<p>This is a bit of a stab in the dark, but you <em>may</em> be able to use <a href="http://www.ibiblio.org/pub/historic-linux/ftp-archives/tsx-11.mit.edu/Oct-07-1996/info/vt102.codes" rel="nofollow">VT102 terminal codes</a> to control the cursor without having to use Curses. The relevant VT102 commands that you'd be interested in all consist of sending ESC, then [, then the specific command parameters.</p>
<p>For instance, to move the cursor up one line, one needs to output:</p>
<pre><code>ESC [ 1 A
0x1B 0x5B 0x31 0x41
</code></pre>
<p>Be warned that the VT102 documentation generally uses octal, so keep an <a href="http://www.asciitable.com/" rel="nofollow">ascii table</a> handy if you're using hex.</p>
<p>All of this advice is given without having tested it -- I don't know if VT102 commands can be embedded into your bash prompt, but I thought it might be worth a shot.</p>
<p>Edit: Yeah -- looks like <a href="http://www.mail-archive.com/xfree86@xfree86.org/msg05109.html" rel="nofollow">a lot of people</a> use VT102 formatting codes in their bash prompts. To translate my above example into something Bash would recognize, putting:</p>
<pre><code>\e[1A
</code></pre>
<p>into your prompt should move the cursor up one line.</p>
http://stackoverflow.com/questions/375996/compare-the-content-of-two-objects-for-equality/376007#3760071Answer by HanClinto for Compare the content of two objects for equalityHanClinto2008-12-17T20:59:29Z2008-12-17T20:59:29Z<blockquote>
<blockquote>
<p><em>Is there a generic way to compare the content of the two objects?</em></p>
</blockquote>
</blockquote>
<p>Well yes, but generally that's known as the IComparable interface.</p>
<p>If you could descend from the class and create a child that implemented IComparable, that might be ideal.</p>
http://stackoverflow.com/questions/375117/screen-scraping-a-windows-application-in-c/375177#3751771Answer by HanClinto for Screen-scraping a windows application in c#HanClinto2008-12-17T16:40:08Z2008-12-17T16:59:16Z<p>You may want to look into the <a href="http://msdn.microsoft.com/en-us/library/ms632627(VS.85).aspx" rel="nofollow">WM_GETTEXT message</a>. This can be <a href="http://msdn.microsoft.com/en-us/magazine/cc301438.aspx" rel="nofollow">used to read text from other windows</a> -- it's an archaic part of the Windows API, and if you're in C#, you'll need to p/invoke for it. </p>
<p>Check out <a href="http://answers.google.com/answers/threadview/id/759776.html" rel="nofollow">this page</a> for an example of doing this in C#. </p>
<p>Basically, you first FindControlEx() to get the handle of the window that you want (by caption).</p>
<p>Second, you recursively enumerate the controls on that window with EnumChildWindows() to find all of the window's child controls, and all of those children's children until you have a complete map of the target form. </p>
<p>Here is a selected portion of <a href="http://answers.google.com/answers/threadview/id/759776.html" rel="nofollow">Theta-ga's excellent explanation</a> from Google Answers:</p>
<p><em>To get the contents of any textbox or listbox control, all we need is it's window handle. If you have already obtained the window handle then move to part 2 of the explaination.</em></p>
<p><strong><em>PART 1: Obtaining the control handle</em></strong></p>
<ul>
<li><em>To obtain the handle of a control, we first obtain the handle of it?s parent window. We can do this by using the Win32 FindControlEx() method. This method takes in the window caption (such as 'Calculator') and/or its class name, and return its handle.</em></li>
<li><em>Once we have the parent window handle, we can call the Win32 EnumChildWindows method. This method takes in a callback method, which it calls with the handle of every child control it finds for the specified parent. For eg., if we call this method with the handle of the Calculator window, it will call the callback method with the handle of the textbox control, and then again with the handles of each of the buttons on the Calculator window, and so on.</em></li>
<li><em>Since we are only interested in the handle of the textbox control, we can check the class of the window in the callback method. The Win32 method GetClassName() can be used for this. This method takes in a window handle and provides us with a string containing the class name. So a textbox belongs to the ?Edit? class, a listbox to the 'ListBox' class and so on. Once you have determined that you have the handle for the right control, you can read its contents.</em></li>
</ul>
<p><strong><em>PART 2: Reading the contents of a control</em></strong></p>
<ul>
<li>*You can read in the contents of a control by using the Win32 SendMessage() function, and using it to pass the WM_GETTEXT message to the target control. This will give you the text content of the control. This method will work for a textbox, button, or static control.*</li>
<li>*However, the above approach will fail if you try to read the contents of a listbox. To get the contents of a listbox, we need to first use SendMessage() with the LB_GETCOUNT message to get the count of list items. Then we need to call SendMessage() with the LB_GETTEXT message for each item in the list.*</li>
</ul>
http://stackoverflow.com/questions/321359/usb-debugging/343979#3439790Answer by HanClinto for USB DebuggingHanClinto2008-12-05T14:27:39Z2008-12-05T14:27:39Z<p>Sorry for the long delay in my reply -- I checked out one of our USB developer's toolchain, and he uses a <a href="http://www.avrfreaks.net/index.php?module=Freaks%20Tools&func=viewItem&item_id=913" rel="nofollow">Beagle USB Sniffer</a>. He seems happy with it.</p>
http://stackoverflow.com/questions/1480942/how-to-reduce-my-flash-games-background-engine-600mb-memory-usage-peaks/1481795#1481795Comment by HanClinto on How to reduce my flash game's background engine 600MB memory usage peaks?HanClinto2009-10-01T14:59:32Z2009-10-01T14:59:32Z+1 for object poolinghttp://stackoverflow.com/questions/329652/enums-in-as3-flash-flex/1491947#1491947Comment by HanClinto on Enums in AS3 / Flash / Flex?HanClinto2009-09-29T16:46:18Z2009-09-29T16:46:18ZCool, thanks for the suggestion!http://stackoverflow.com/questions/1323119/is-it-safe-to-access-my-home-svn-server-over-the-internet/1323125#1323125Comment by HanClinto on Is it safe to access my home svn server over the internet? HanClinto2009-08-24T15:55:47Z2009-08-24T15:55:47ZAh, true. It's so widespread that I forget not everyone uses the Apache module.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1239549#1239549Comment by HanClinto on What is your best programmer joke?HanClinto2009-08-20T14:17:13Z2009-08-20T14:17:13Z@Windows programmer: Wow -- sure 'nuff, you're right. :) Ultimately I just had to test it, so made a small test program and compiled it with GCC using the -Wsequence-point flag. Calling "printf("%d", c - c++);" yielded: "test.c:7: warning: operation on `c' may be undefined" Nice catch!http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1239549#1239549Comment by HanClinto on What is your best programmer joke?HanClinto2009-08-17T13:47:09Z2009-08-17T13:47:09Z@Windows programmer: Why? The rules in the ISO standard (see section 1.9, paragraph 7) say that the value of any operand should only be modified once in a given expression, and that the order of modification side effects is un-specified. The equation (as originally written) was (C == C++), not (C = C++). If it were the latter, it would be undefined behavior. But because there is only one side effect, the behavior should be deterministic.
Regardless, I've changed the equation to fit more with the original question ("What's the <i>difference</i> between..."), but both are legit.http://stackoverflow.com/questions/1271594/shape-map-file-decoding/1272462#1272462Comment by HanClinto on shape map file decodingHanClinto2009-08-13T15:18:04Z2009-08-13T15:18:04ZI'm sorry, I don't have any experience working with them.http://stackoverflow.com/questions/255104/best-way-to-deal-with-users-double-clicking-buttons-in-a-winforms-app/255138#255138Comment by HanClinto on Best way to deal with users double-clicking buttons in a winforms app?HanClinto2009-08-05T15:19:30Z2009-08-05T15:19:30Z@tzup: It will happily let the processing stuff execute multiple times -- just so long as they all wait their turn and execute one after the other.http://stackoverflow.com/questions/255104/best-way-to-deal-with-users-double-clicking-buttons-in-a-winforms-app/255138#255138Comment by HanClinto on Best way to deal with users double-clicking buttons in a winforms app?HanClinto2009-08-05T15:18:33Z2009-08-05T15:18:33Z@tzup: This code doesn't prevent the user from clicking multiple times. It only prevents the processing code (the "super secret stuff") from trying to execute more than once at the same time in a multithreaded environment.http://stackoverflow.com/questions/1018074/flash-performance-for-game-dev-native-render-vs-bitmapdata-framebuffer/1018402#1018402Comment by HanClinto on Flash performance for game dev: native render VS BitmapData framebufferHanClinto2009-07-29T20:27:02Z2009-07-29T20:27:02Z@fenomas: Sorry for the late reply -- not sure why I didn't think of this before, but one thing that you might have been missing in your example is bitmap caching. DisplayObject can do caching of its objects, so that it doesn't have to recalculate filters every frame, but something about the way you were doing things might have been bypassing the caching, and causing a slowdown. I'm not positive, it's just a thought.http://stackoverflow.com/questions/1191393/line-number-constant-in-actionscript-3-0/1194076#1194076Comment by HanClinto on Line number constant in Actionscript 3.0?HanClinto2009-07-28T14:35:17Z2009-07-28T14:35:17ZVery nice trick!http://stackoverflow.com/questions/1018074/flash-performance-for-game-dev-native-render-vs-bitmapdata-framebufferComment by HanClinto on Flash performance for game dev: native render VS BitmapData framebufferHanClinto2009-06-20T14:57:09Z2009-06-20T14:57:09ZIf you use Mr. Doob's in-SWF profiler, you won't have to guess at memory usage or framerate: <a href="http://code.google.com/p/mrdoob/wiki/stats" rel="nofollow">code.google.com/p/mrdoob/wiki/stats</a>http://stackoverflow.com/questions/1018074/flash-performance-for-game-dev-native-render-vs-bitmapdata-framebuffer/1018402#1018402Comment by HanClinto on Flash performance for game dev: native render VS BitmapData framebufferHanClinto2009-06-20T14:54:38Z2009-06-20T14:54:38Z@oshyshko: #2 performed much better for me, but it's hard to give you good metrics without an FPS counter. Have you tried using a performance-measuring widget like Mr. Doob's? <a href="http://code.google.com/p/mrdoob/wiki/stats" rel="nofollow">code.google.com/p/mrdoob/wiki/stats</a>
@fenomas: Just because DisplayObject is a pretty heavyweight class. It has a lot of checks for fancy things that you are probably not using, and if you manage all of your rendering code yourself, you're free to cut out a lot of the cruft. In my experience, the Flash display stack really isn't all that efficient (especially for thousands of objects, such as a big tilemap).http://stackoverflow.com/questions/964338/memory-leak-in-flex-air-applicationComment by HanClinto on Memory Leak in Flex AIR ApplicationHanClinto2009-06-09T16:10:21Z2009-06-09T16:10:21ZYour question must be in the form of a question.http://stackoverflow.com/questions/853647/is-it-a-violation-of-terms-and-services-to-embedd-googles-turn-by-turn-direction/853746#853746Comment by HanClinto on Is it a violation of terms and services to embedd google's turn by turn directions into an iphone app?HanClinto2009-05-12T17:38:00Z2009-05-12T17:38:00ZWell it sounds like as long as you're using the intended and provided means for accessing the information, then you're clear. Give the TOS another read-through to make sure -- IANAL, but if you're just doing things similar to other apps, it's probably fine.http://stackoverflow.com/questions/853398/alternate-newline-character-python/853419#853419Comment by HanClinto on Alternate newline character? pythonHanClinto2009-05-12T16:33:18Z2009-05-12T16:33:18ZGreat answer -- I think you and DBR are on the right track.