User Tom - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:49:46Z http://stackoverflow.com/feeds/user/45974 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1943410/howto-get-the-deepest-child-matching-certain-attributes-in-actionscript-3 0 Howto get the deepest child matching certain attributes in actionscript 3? Tom 2009-12-21T23:58:04Z 2009-12-22T10:18:34Z <p>If I have the following XMLDocument in actionscript 3:</p> <pre><code>&lt;xml&gt; &lt;element1 x="10" y="10" width="200" height="200"&gt; &lt;child&gt;text&lt;/child&gt; &lt;child x="0" y="0" width="100" height="100"&gt; content &lt;/child&gt; &lt;/element1&gt; &lt;element2 x="10" y="10" width="200" height="200"&gt; &lt;/element2&gt; &lt;element3&gt; &lt;/element3&gt; &lt;/xml&gt; </code></pre> <p>This is just an example. Now, what I want to do is the following: get the deepest child element with x, y, width and height attributes which is within a certain location. So, if the given location is 50x100 then <code>((child.@x &lt;= x) &amp;&amp; (child.@x + child.@width &gt;= x) &amp;&amp; (child.@y &lt;= y) &amp;&amp; (child.@y + child.@height &gt;= y))</code> must be valid</p> <p>In this case it should return the second child element named child with attributes x=0 and y=0 - the code should also keep in mind that the childs of elements' positions are relative to the parents position. So, if the child's X is 0 and the parent's X is 100 then the absolute child position is 100.</p> <p>I'm struggeling to get this right, could anyone help me out?</p> <p>In the end, the method</p> <pre><code>getDeepestChildAtLoc(50, 100) </code></pre> <p>should in the above example code return</p> <pre><code>&lt;child x="0" y="0" width="100" height="100"&gt; content &lt;/child&gt; </code></pre> <p>I hope this makes sense. Thank in advance.</p> <p>Edit:</p> <p>Judging by the lack of replies this might not be making a lot of sense. In any way, this is what I came up with so far - though it returns "null" all the time so obviousely there is a flaw:</p> <pre><code>private static function recProcessXML(curElement:XML, depth:uint, targetX:uint, targetY:uint, totParentX:uint = 0, totParentY:uint = 0):XML { if (!curElement.children().length() &gt; 0) { return curElement; } else { var newChild:XML; var testChild:XML; for each (var child:XML in curElement.children()) { //if all required properties are given for an element with content if ((child.@x) &amp;&amp; (child.@y) &amp;&amp; (child.@width) &amp;&amp; (child.@height)) { //if the new object is inside this child if ((child.@x + totParentX &lt;= targetX) &amp;&amp; (child.@x + totParentX + child.@width &gt;= targetX) &amp;&amp; (child.@y + totParentY &lt;= targetY) &amp;&amp; (child.@y + totParentY + child.@height &gt;= targetY)) { testChild = recProcessXML(child, depth + 1, targetX, targetY, child.@x + totParentX, child.@y + totParentY); if (testChild) { newChild = testChild; } } } } return newChild; } return null; } </code></pre> http://stackoverflow.com/questions/1917687/what-are-some-alternatives-to-css-to-style-your-websites-in-html -5 What are some alternatives to CSS to style your websites in HTML? Tom 2009-12-16T20:58:50Z 2009-12-17T01:13:14Z <p>After asking <a href="http://stackoverflow.com/questions/1808318/simple-html-css-block-structure-cant-use-headerheight-bottom-margin-for-conten">this question</a>, it appears that a lot of CSS hacks and tricks are needed to achieve something that simple. People have said that CSS is broken.</p> <p>So I wonder now, if <em>not</em> CSS, what <em>are</em> some alternatives to creating advanced html structure and markup/layout?</p> <p>Are we left with tables and framesets? Or is there something else?</p> http://stackoverflow.com/questions/1808318/simple-html-css-block-structure-cant-use-headerheight-bottom-margin-for-conten 2 Simple html css block structure, can't use -headerHeight bottom-margin for content div to avoid scrollbar? Tom 2009-11-27T11:54:12Z 2009-12-16T22:07:50Z <p>The following is my simple html/css structure:</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;de titel&lt;/title&gt; &lt;style type="text/css"&gt; * { color: #FFFFFF; margin: 0; padding: 0; } html, body { height: 100%; background-color: #000000; } #wrapper { width: 800px; height: 100%; margin-left: auto; margin-right: auto; } #header { background-color: lightblue; position: absolute; top: 0; width: 800px; border: 1px solid red; height: 60px; } #content { height: 100%; margin-top: 60px; margin-bottom: -60px; } #menu { width: 200px; height: 100%; border: 1px solid red; background-color: gray; float: left; padding: 5px 0 0 5px; } #text { background-color: orange; height: 100%; margin-left: 200px; padding-top: 5px; padding-left: 15px; margin-right: -2px; border: 1px solid red; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="wrapper"&gt; &lt;div id="header"&gt; &lt;br&gt;&lt;center&gt;[ hier moet een header image worden toegevoegd ]&lt;/center&gt; &lt;/div&gt; &lt;div id="content"&gt; &lt;div id="menu"&gt; Link 1 &lt;/div&gt; &lt;div id="text"&gt; &lt;h1&gt;Titel&lt;/h1&gt; &lt;p&gt;Dit is de tekst van je pagina.&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>The question I have: "why isn't the bottom-margin: -60px; causing the content layer to decrease in 60 pixels height so that the scrollbar is not shown because of the header? how should I solve this in the cleanest possible way?"</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1785035/when-programming-for-an-hourly-rate-should-you-keep-the-timer-running-while-proc 3 When programming for an hourly rate, should you keep the timer running while processing code automatically in the background? Tom 2009-11-23T18:23:59Z 2009-11-26T03:32:26Z <p>This is probably subjective as it is a dilemma between what is good for you and what is good for your customer, but I as a programmer, would really like to know what is the commonly accepted way of doing this. I will keep these answers to my question in mind for future projects.</p> <p>I've personally never sold any of my work using a set rate per hour as I treat each project individually. However, if I do decide to set a price for every hour of work, would processing code (for example: compiling, downloading, uploading, auto-correcting/modifying) while walking with the dog or enjoying a cup of coffee count as "working"?</p> <p>This example assumes that you can only continue working on the project when the processing has completed. Is it fair to keep the timer running during these hours of "work"? Absolutely not? Or is there a balance to be found somewhere?</p> http://stackoverflow.com/questions/872649/howto-get-iframe-linking-to-internal-document-source-using-javascript-jquery 1 Howto get iframe linking to internal document source using javascript/jQuery? Tom 2009-05-16T15:38:22Z 2009-11-24T17:00:11Z <p>Hi there,</p> <p>I have an iframe with id "appframe", the source is page.html and it's on the same server. I want to get the source of the page using jQuery.</p> <pre><code>alert($("#appframe").contents().find("html").html()); </code></pre> <p>returns <code>&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;/body&gt;</code> even though the document does not contain those tags, it only contains "Default page" - any idea how to get the right source of the whole document, including (when existing) etc. using jQuery?</p> http://stackoverflow.com/questions/1741869/how-to-run-monitor-and-stop-a-php-script-using-ssh-on-a-shared-webserver 1 How to run, monitor and stop a PHP script using SSH on a shared webserver? Tom 2009-11-16T12:25:10Z 2009-11-16T12:56:25Z <p>Can a normal member (not an admin) of a shared webserver with (limited) SSH access run, monitor and stop a PHP script through SSH? If so, how would all three actions be done by the user?</p> <p><hr></p> <p>I tried to use the command "top", but it only listed actual top level processes, not PHP scripts. I have also managed to start a PHP script using the commands provided in this <a href="http://stackoverflow.com/questions/612115/how-do-i-run-a-php-script-through-ssh">SO question</a>. But what about termination and monitoring of the currently running PHP scripts?</p> http://stackoverflow.com/questions/1735972/php-fastest-way-to-check-for-invalid-characters-all-but-a-z-a-z-0-9 0 PHP: fastest way to check for invalid characters (all but a-z, A-Z, 0-9, #, -, ., $)? Tom 2009-11-14T23:29:47Z 2009-11-15T00:13:14Z <p>I have to check the buffer input to a PHP socket server as fast as possible. To do so, I need to know if the input message $buffer contains any other character(s) than the following: a-z, A-Z, 0-9, #, -, . and $</p> <p>I'm currently using the following ereg function, but wonder if there are ways to optimize the speed. Should I maybe use a different function, or a different regex?</p> <pre><code>if (ereg("[A-Za-z0-9]\.\#\-\$", $buffer) === false) { echo "buffer only contains valid characters: a-z, A-Z, 0-9, #, -, ., $"; } </code></pre> http://stackoverflow.com/questions/1708179/can-xmlsocket-send-more-than-once-in-a-frame/1721215#1721215 1 Answer by Tom for Can XMLSocket send more than once in a frame? Tom 2009-11-12T10:07:19Z 2009-11-12T10:07:19Z <p>You have to flush the output buffer <strong>when you use the Socket class</strong>. Example:</p> <pre><code>public static function write(msg:String):void { socket.writeUTFBytes(msg); socket.flush(); } </code></pre> <p>However, you're saying that you're using the XMLSocket class? That one provides less lower level posibilities and should already do the flushing for you so I don't think you'd have this problem if your code is correct.</p> <p>You could try to use the lower level Socket class, and flush the output buffer manually every time you call the write method. See: <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/Socket.html" rel="nofollow">http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/Socket.html</a></p> http://stackoverflow.com/questions/1687402/copypaste-from-eclipse-to-flash-does-not-work/1715342#1715342 0 Answer by Tom for copy+paste from eclipse to flash does not work Tom 2009-11-11T13:59:54Z 2009-11-11T13:59:54Z <p>Seems like a bug in your editor. But yeah, try your own solution.</p> <blockquote> <p>update: I made an interesting discovery just now, when I copy in Eclipse, then paste somewhere else (so just paste) I then can also paste in Flash.</p> </blockquote> http://stackoverflow.com/questions/1713837/how-to-achieve-comet-using-flash/1714024#1714024 0 Answer by Tom for How to achieve Comet using Flash Tom 2009-11-11T09:21:25Z 2009-11-11T09:21:25Z <p>Not exactly sure what you want but you can establish an open connection between the client and the server.</p> <p>see <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/Socket.html" rel="nofollow">this (flash client)</a> and as an example, <a href="http://devzone.zend.com/article/1086" rel="nofollow">this (php socket server)</a></p> http://stackoverflow.com/questions/365820/howto-rotate-image-using-jquery-rotate-plugin 2 Howto rotate image using jquery rotate plugin? Tom 2008-12-13T22:06:47Z 2009-11-10T20:30:10Z <p>How do you rotate an image using jquery (www.jquery.com) rotate plugin (<a href="http://code.google.com/p/jquery-rotate/" rel="nofollow">http://code.google.com/p/jquery-rotate/</a>)?</p> <p>I have tried the following and it doesn't seem to work:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=windows-1252"&gt; &lt;title&gt;View Photo&lt;/title&gt; &lt;script type="text/javascript" src="scripts/jquery.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="scripts/jquery.rotate.1-1.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; var angle = 0; setInterval ( function (e) { rotate(); }, 100 ); function rotate() { angle = angle + 1; $('#pic').rotate(angle); } &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;img border="0" src="player.gif" name="pic" id="pic"&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Example: <a href="http://uptowar.com/jquery/" rel="nofollow">http://uptowar.com/jquery/</a></p> <p>Other methods that are supported by most browsers are wanted too, thanks!</p> http://stackoverflow.com/questions/1700969/why-selffunction-and-self-variable-or-selfvariable-even-though-there-is 0 Why self::function() and $self->variable or self::$variable even though there is $this->function() and $this->variable (PHP)? Tom 2009-11-09T13:22:56Z 2009-11-09T16:12:41Z <p>I'm confused about these two keywords and the way to use them in PHP5. I think that "this" is used for instanced objects (not static) while "self" is referring to the object itself, not an instance of it and thus used within static objects. Right?</p> <p>Now, I believe that the correct use inside a class's static method to call another static variable/method is the following:</p> <pre><code>self::doSomething(); self::$testVar; </code></pre> <p>That's true?</p> <p>However, the following also seems to be possible:</p> <pre><code>$self-&gt;testVar; </code></pre> <p>Yet, $testVar is static. Why is that?</p> <p>Also, why is $ used infront of self sometimes and sometimes not, and same question for "this" keyword?</p> http://stackoverflow.com/questions/1657057/howto-take-latency-differences-into-consideration-when-verifying-location-differe 3 Howto take latency differences into consideration when verifying location differences with timestamps (anti-cheating)? Tom 2009-11-01T12:32:39Z 2009-11-08T04:22:53Z <p>When you have a multiplayer game where the server is receiving movement (location) information from the client, you want to verify this information as an anti-cheating measure.</p> <p>This can be done like this:</p> <pre><code>maxPlayerSpeed = 300; // = 300 pixels every 1 second if ((1000 / (getTime() - oldTimestamp) * (newPosX - oldPosX)) &gt; maxPlayerSpeed) { disconnect(player); //this is illegal! } </code></pre> <p>This is a simple example, only taking the X coords into consideration. The problem here is that the oldTimestamp is stored as soon as the last location update was <strong>received</strong> by the server. This means that if there was a lag spike at that time, the old timestamp will be received much later relatively than the new location update by the server. This means that the time difference will not be accurate.</p> <p>Example:</p> <ol> <li>Client says: I am now at position 5x10</li> <li>Lag spike: server receives this message at timestamp 500 (it should normally arrive at like 30)</li> <li>....1 second movement...</li> <li>Client says: I am now at position 20x15</li> <li>No lag spike: server receives message at timestamp 1530</li> </ol> <p>The server will now think that the time difference between these two locations is 1030. However, the real time difference is 1500. This could cause the anti-cheating detection to think that 1030 is not long enough, thus kicking the client.</p> <p><em>Possible solution</em>: let the client send a timestamp while sending, so that the server can use these timestamps instead</p> <p><em>Problem:</em> the problem with that solution is that the player could manipulate the client to send a timestamp that is not legal, so the anti-cheating system won't kick in. This is not a good solution.</p> <p>It is also possible to simply allow maxPlayerSpeed * 2 speed (for example), however this basically allows speed hacking up to twice as fast as normal. This is not a good solution either.</p> <p>So: do you have any suggestions on how to fix this "server timestamp &amp; latency" issue in order to make my anti-cheating measures worthwhile?</p> http://stackoverflow.com/questions/1682822/how-to-control-sound-in-a-pure-dhtml-game/1690756#1690756 1 Answer by Tom for How to control sound in a pure DHTML game Tom 2009-11-06T21:55:19Z 2009-11-06T21:55:19Z <p>You could write a flash application without interface which you'd only have to write once and then you can communicate to it with javascript to make it play songs. It'd basically be your "sound player controlled by DHTML".</p> <p>See this link: <a href="http://www.viget.com/inspire/bi-directional-actionscript-javascript-communication" rel="nofollow">Javascript&lt;>Flash communication explained</a> </p> http://stackoverflow.com/questions/1609880/using-tcp-for-real-time-commands-nagle-arithmetic-causes-huge-delays-what-shoul 2 Using TCP for real-time commands: Nagle arithmetic causes huge delays, what should I do? Tom 2009-10-22T20:50:57Z 2009-11-01T13:55:34Z <p>I'm writing a socket server and flash game client. The game requires real-time commands such as movement and turning. It is important for these commands to be sent by the server to the client as soon as possible because the other clients will otherwise desynchronise a lot with the moving/turning client.</p> <p>This is an example of the problem caused by the Nagle arithmetic:</p> <p><strong>Note</strong>: see the command table below if you wish to understand what these commands mean.</p> <p><em>First one is the ship I moved (moved forward + right, forward was received but right not)</em></p> <p><strong>The client sending commands:</strong></p> <pre><code>84796: Sending data: 2#4 84796: Sending data: 2#2 84904: Sending data: 2#3 84904: Sending data: 2#0 86187: Sending data: 2#4 86188: Sending data: 2#2 86374: Sending data: 2#3 86404: Sending data: 2#0 </code></pre> <p><strong>The client receiving commands:</strong></p> <pre><code>79244: Raw receive: 3#3#4$ 79244: New command: 3#3#4 79398: Raw receive: 3#3#2$3#3#3$3#3#0$ 79399: New command: 3#3#2 79399: New command: 3#3#3 79399: New command: 3#3#0 80635: Raw receive: 3#3#4$ 80635: New command: 3#3#4 80908: Raw receive: 3#3#2$3#3#3$3#3#0$ 80908: New command: 3#3#2 80908: New command: 3#3#3 80908: New command: 3#3#0 </code></pre> <p><em>"moment" is a strange term that doesn't mean what I am trying to say, but here it seems the amount of time in milliseconds after the previous command</em></p> <ol> <li><p>move forward send by client A (moment: 0), received by client B (moment: 0)</p></li> <li><p>turn right send by client A (moment: 0), received by client B (moment: 155)</p></li> <li><p>stop moving send by client A (moment: 108), received by client B (moment: 0)</p></li> <li><p>stop turning send by client A (moment: 0), received by client B (moment: 0)</p></li> <li><p>move forward send by client A (moment: 1283), received by client B (moment: 1236)</p></li> <li><p>turn right send by client A (moment: 1), received by client B (moment: 273)</p></li> <li><p>stop movement send by client A (moment: 186), received by client B (moment: 0)</p></li> <li><p>stop turning send by client A (moment: 30), received by client B (moment: 0)</p></li> </ol> <p><strong>This is the command table corresponding with the commands:</strong></p> <p><em>Client-> Server</em></p> <pre><code>2# (movement info) 0) now not turning 1) now turning left 2) now turning right 3) now not moving 4) now moving forward </code></pre> <p><em>Server-> Client</em></p> <pre><code>3# (movement info) [shipId]# 0) now not turning 1) now turning left 2) now turning right 3) now not moving 4) now moving forward </code></pre> <p>So, what you can see is that the commands are totally desynched because of "Nagle". This causes the stop movement command to be received by other clients at the same time as the start movement command, causing that player to not move at all.</p> <p>This is why I need these commands to be send in real-time, as fast as possible by the TCP server. An easy fix would be to simply disable Nagle. However, I have <a href="http://www.codeguru.com/forum/showthread.php?p=1618669#post1618669" rel="nofollow">googled</a> (note that his suggestion about tcp message partial is implemented in my system but has nothing to do with timing) a bit and noticed that people absolutely not recommend disabling Nagle.</p> <p>Is it true that I should not disable the Nagle arithmetic for this cause and should instead look for an other solution? Why (not)?</p> <p>Thanks in advance. - Tom</p> http://stackoverflow.com/questions/1652193/howto-avoid-people-from-having-multiple-accounts-in-a-free-to-play-multiplayer-ga 3 Howto avoid people from having multiple accounts in a free to play multiplayer game? [closed] Tom 2009-10-30T20:41:28Z 2009-10-30T22:18:38Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/170152/prevent-users-from-starting-multiple-accounts">Prevent users from starting multiple accounts?</a> </p> </blockquote> <p>Imagine you develop a free to play multiplayer game. It is free to create an account. Now, having multiple accounts would give the user an unfair advantage to other players because they can develop multiple characters and transfer in game valueable items to their so called "main character".</p> <p>My question is, what methods do you know to prevent people from having multiple accounts?</p> <p>I currently have the following ideas, but having just these will not suffice:</p> <ul> <li>Require unique e-mail address for each account with activation (not helpful with these trash mail services)</li> <li>Disallow multiple clients at a time on a machine (people can reverse engineer the client to pass this check, or simply use multiple machines or virtual operating systems)</li> </ul> <p>Maybe it is an idea to use somekind of service like OpenID? I have no experience with this, it just came up in my head as a slight possibility. I do not know how difficult it would be to create multiple OpenIDs either.</p> <p>I'd love to hear more suggestions from the SO community.</p> http://stackoverflow.com/questions/1650916/selecting-good-non-conflicting-keybindings-for-a-game/1651008#1651008 1 Answer by Tom for Selecting good, non-conflicting keybindings for a game Tom 2009-10-30T16:47:32Z 2009-10-30T16:47:32Z <p>The best bet is probably to let the user choose his own keybindings.</p> http://stackoverflow.com/questions/1642595/is-string-replace-any-faster-than-string-split-string-join-in-actionscript-3/1642686#1642686 2 Answer by Tom for Is String.replace any faster than String.split ... String.join in ActionScript 3? Tom 2009-10-29T10:11:58Z 2009-10-29T10:11:58Z <p>David R. quoted from the blog Dirkgently linked:</p> <blockquote> <p>The string.split().join() construct is a leftover from AS2 days, where there was no string.replace(). In AS3, it makes no sense to use .split.join, only people who haven’t learned the new replace function would be likely to use it.</p> </blockquote> <p>Also, the time difference appears to be minimal according to that blog. So yes, replace should be a much cleaner way of doing this.</p> http://stackoverflow.com/questions/1642052/how-to-prevent-swf-from-decompiling/1642628#1642628 3 Answer by Tom for How to Prevent SWF from Decompiling? Tom 2009-10-29T09:57:19Z 2009-10-29T09:57:19Z <p>Unfortunately you can't avoid anyone from getting your source if they try hard enough.</p> <p>You can use tools to make reading the code more difficult, however you won't make it harder to decompile. The decompiled output will simply be obfuscated.</p> <p>The one reverse engineering can then try to deobfuscate your code, making it readable again. You can make it more difficult to deobfuscate your obfuscated code by using better obfuscation methods. Unfortunately there is little known about tools like <a href="http://www.kindisoft.com/secureSWF/actionscript-obfuscator.php" rel="nofollow">this one</a>, and thus we are forced to believe the words of the developers that created them. One of these answers is made in <a href="http://stackoverflow.com/questions/1259821/any-reverse-engineers-have-experience-with-secureswf">one of my questions</a>. But to be honest, this is not very reliable.</p> <p>You would need to hire professional and experienced reverse engineers to try and deobfuscate one of these obfuscated files to really know howmuch time it will take them and whether it is going to be worth the effort.</p> http://stackoverflow.com/questions/1631917/balance-between-fast-and-secure-time-sensitive-password-encryption-algorithm 0 Balance between fast and secure: time sensitive password encryption algorithm Tom 2009-10-27T16:10:04Z 2009-10-27T16:43:22Z <p>I'm working on a client&lt;>server multiplayer game. The authentication is done on the same server as all game logic etc. This means that my authentication password encryption algorithm can't take too much calculation time as it would delay all the other required actions. If many people would logon at the same time that would cause a noticeable delay when used with very strong encryption algorithms that take a lot of time to process.</p> <p>This is why I am looking for a balance: an encryption algorithm that is still reliable and not easily crackable but fast enough to execute on the same server. What do you recommend?</p> http://stackoverflow.com/questions/1623971/how-to-let-the-server-inform-game-clients-about-other-nearby-visible-players-in-a 0 How to let the server inform game clients about other nearby visible players in an efficient way? Tom 2009-10-26T09:58:09Z 2009-10-26T10:44:27Z <p>I'm working on a multiplayer flash game. The server informs each client what other players are near the player. To do this the server has to check which clients are near each other continuously. The following is what I am using at this moment, as a temporary solution:</p> <pre><code>private function checkVisibilities() { foreach ($this-&gt;socketClients as $socketClient1) { //loop every socket client if (($socketClient1-&gt;loggedIn()) &amp;&amp; ($socketClient1-&gt;inWorld())) { //if this client is logged in and in the world foreach ($this-&gt;socketClients as $cid2 =&gt; $socketClient2) { //loop every client for this client to see if they are near if ($socketClient1 != $socketClient2) { //if it is not the same client if (($socketClient2-&gt;loggedIn()) &amp;&amp; ($socketClient2-&gt;inWorld()) { //if this client is also logged in and also in the world if ((abs($socketClient1-&gt;getCharX() - $socketClient2-&gt;getCharX()) + abs($socketClient1-&gt;getCharY() - $socketClient2-&gt;getCharY())) &lt; Settings::$visibilities_range) { //the clients are near each other if (!$socketClient1-&gt;isVisible($cid2)) { //not yet visible -&gt; add $socketClient1-&gt;addVisible($cid2); } } else { //the clients are not near each other if ($socketClient1-&gt;isVisible($cid2)) { //still visible -&gt; remove $socketClient1-&gt;removeVisible($cid2); } } } else { //the client is not logged in if ($socketClient1-&gt;isVisible($cid2)) { //still visible -&gt; remove $socketClient1-&gt;removeVisible($cid2); } } } } } } </code></pre> <p>It works fine. However, so far I've only been playing with 2 players at a time. This function is looping every client for every client. So, with 100 players that would be 100 * 100 = 10.000 loops every time the function is run. This doesn't seem the best or most efficient way to do it.</p> <p>Now I wonder what you folks think about my current setup and if you have any suggestions on a better way of handling these visibilities.</p> <p><strong>Update: I forgot to mention that the world is infinite. It is actually "the universe". There are no maps. Also, it is a two dimensional (2D) game.</strong></p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1023486/is-my-authentication-encryption-any-good 1 Is my authentication encryption any good? Tom 2009-06-21T09:08:19Z 2009-10-25T14:13:23Z <p>So I've been reading a lot about encryption in PHP. So much that I am not sure exactly what's a really good method to securely store login information.</p> <p>However, the following function is what I came up with:</p> <pre><code>function loginHash($username, $password){ $salt = str_split($password,(strlen($password)/2)+1); $hash = hash('whirlpool', $username.$salt[0].'centerSalt'.$salt[1]); return $hash; } </code></pre> <p>Am I doing it the right way? It's used for authenticating a password combined with a username, and the ability to compare the generated hash with the one stored in a database to verify a login.</p> http://stackoverflow.com/questions/1519125/actionscript-tcp-socket-failing-to-send-message-for-some-people 2 Actionscript TCP Socket failing to send message for some people Tom 2009-10-05T09:51:52Z 2009-10-15T18:08:22Z <p>I've written a socket server which communicates with my actionscript 3 flash game using the Socket class. This is a TCP connection, which I thought would mean that it is 100% sure that the sending message will be received by the server as this is done low-level. So, if it would fail to send it would resend the message.</p> <p>This does seem to be the case for me and for two other people I've tested my build with. However, with one person, sometimes (rare but not ignoreable) the message is not being received by the server even though this does not seem to happen for other people their systems. This person however never has any problems with other professional multiplayer games, which means that it must be an issue with my build.</p> <p>Is there anything that I can do to make sure that the message is being send correctly, and am I wrong about TCP being 100% secure because messages are supposed to be resend on failure low-level?</p> http://stackoverflow.com/questions/1059480/math-opposite-sign-function 9 Math opposite sign function? Tom 2009-06-29T17:30:01Z 2009-10-06T19:05:52Z <p>Does such function exist? I created my own but would like to use an official one:</p> <pre><code>private function opposite(number:Number):Number { if (number &lt; 0) { number = Math.abs(number); } else { number = -(number); } return number; } </code></pre> <p>So, -5 becomes 5 and 3 becomes -3.</p> <p>Edit: Forgive me for being stupid. I'm human. :)</p> http://stackoverflow.com/questions/1518876/efficient-way-to-communicate-between-flash-and-mysql/1518908#1518908 1 Answer by Tom for Efficient way to communicate between Flash and MySql? Tom 2009-10-05T08:57:07Z 2009-10-05T08:57:07Z <p>Are you trying to handle frequent sever&lt;>client data with one-way post calls? In this case you would have to constantly poll the server and open and close the connection all the time.</p> <p>If you want to use PHP I'd recommend creating a socket server so that you only have one open connection all the time. You'd have to establish a connection using the Socket class in actionscript. Your PHP socket server can then retreive data from the SQL database with high speed as they are both located on the same machine and directly send this data back to the flash client using the open socket connection.</p> <p><a href="http://www.kirupa.com/developer/flash8/php5sockets%5Fflash8.htm" rel="nofollow">This should get you started</a>, though I recommend using the Socket class rather then XMLSocket class as it provides more customization.</p> http://stackoverflow.com/questions/1448997/do-good-multiplayer-mmo-clientserver-games-use-latency-within-movement-calculat 1 Do good multiplayer/mmo client<>server games use latency within movement calculations? Tom 2009-09-19T17:13:30Z 2009-09-28T20:45:57Z <p>There's a couple of questions here.</p> <p>Image I have client A who's going to send the following message to Server: "START MOVEMENT FORWARD".</p> <p>The server will not receive this message instantly, as there is a delay because of latency.</p> <p>Question 1: ping (or better: <a href="http://en.wikipedia.org/wiki/Round-trip%5Fdelay%5Ftime" rel="nofollow">round trip time</a>) is the amount of time it takes for the client to send a message to the server and receive a response back. Does this mean the following if you can ignore the time it takes for the server to notice that it has received a message and start sending a response (this should be very short)?</p> <ol> <li>time it takes for client to send someting to server = round-trip-time / 2</li> <li>time it takes for server to send something to client = round-trip-time / 2</li> </ol> <p>So, when client A sends that message, the server will supposedly receive that message round-trip-time / 2 milliseconds after the client has send the message. This leads me to the next question.</p> <p>Question 2: should the client first send the package, and then wait round-trip-time / 2 milliseconds before actually executing that command client-side (in this case: move forward) to compensate with the latency/lag?</p> <p>Now, the server will send the following message to all nearby players: "CLIENT A IS NOW MOVING FORWARD". These clients will then make sure that the character of client a starts moving, this leads me to the next question.</p> <p>Question 3: should the client receiving the message that an other client has moved take into account that this message was send by the server round-trip-time / 2 milliseconds ago? So that the current time used for movement calculations timestamps should be reduced by round-trip-time / 2?</p> <p>All these methods would in my mind make sure that synchronisation improves between clients, as latency is taken into account. Is this the right way of doing things? Do most other good multiplayer games do this? Any comments, suggestions, alternatives or random but related shouts that you'd like to give? Thanks in advance.</p> http://stackoverflow.com/questions/1284886/optimizing-transition-movement-smoothness-for-a-2d-flash-game 0 Optimizing transition/movement smoothness for a 2D flash game. Tom 2009-08-16T17:52:04Z 2009-09-28T03:38:06Z <p><strong>Update 6</strong>:</p> <p>Fenomenas suggested me to re-create everything as simple as possible. I had my doubts that this would make any difference as the algorithm remains the same, and performance did not seem to be the issue. Anyway, it was the only suggestion I got so here it is:</p> <ol> <li>30 FPS: <a href="http://www.feedpostal.com/test/simple/30/SimpleMovement.html" rel="nofollow">http://www.feedpostal.com/test/simple/30/SimpleMovement.html</a></li> <li>40 FPS: <a href="http://www.feedpostal.com/test/simple/40/SimpleMovement.html" rel="nofollow">http://www.feedpostal.com/test/simple/40/SimpleMovement.html</a></li> <li>60 FPS: <a href="http://www.feedpostal.com/test/simple/60/SimpleMovement.html" rel="nofollow">http://www.feedpostal.com/test/simple/60/SimpleMovement.html</a></li> <li>100 FPS: <a href="http://www.feedpostal.com/test/simple/100/SimpleMovement.html" rel="nofollow">http://www.feedpostal.com/test/simple/100/SimpleMovement.html</a></li> </ol> <p>The code:</p> <pre><code>package { import flash.display.Sprite; import flash.events.Event; import flash.events.KeyboardEvent; import flash.utils.getTimer; [SWF(width="800", height="600", frameRate="40", backgroundColor="#000000")] public class SimpleMovement extends Sprite { private static const TURNING_SPEED:uint = 180; private static const MOVEMENT_SPEED:uint = 400; private static const RADIAN_DIVIDE:Number = Math.PI/180; private var playerObject:Sprite; private var shipContainer:Sprite; private var moving:Boolean = false; private var turningMode:uint = 0; private var movementTimestamp:Number = getTimer(); private var turningTimestamp:Number = movementTimestamp; public function SimpleMovement() { //step 1: create player object playerObject = new Sprite(); playerObject.graphics.lineStyle(1, 0x000000); playerObject.graphics.beginFill(0x6D7B8D); playerObject.graphics.drawRect(0, 0, 25, 50); //make it rotate around the center playerObject.x = 0 - playerObject.width / 2; playerObject.y = 0 - playerObject.height / 2; shipContainer = new Sprite(); shipContainer.addChild(playerObject); shipContainer.x = 100; shipContainer.y = 100; shipContainer.rotation = 180; addChild(shipContainer); //step 2: install keyboard hook when stage is ready addEventListener(Event.ADDED_TO_STAGE, stageReady, false, 0, true); //step 3: install rendering update poll addEventListener(Event.ENTER_FRAME, updatePoller, false, 0, true); } private function updatePoller(event:Event):void { var newTime:Number = getTimer(); //turning if (turningMode != 0) { var turningDeltaTime:Number = newTime - turningTimestamp; turningTimestamp = newTime; var rotation:Number = TURNING_SPEED * turningDeltaTime / 1000; if (turningMode == 1) shipContainer.rotation -= rotation; else shipContainer.rotation += rotation; } //movement if (moving) { var movementDeltaTime:Number = newTime - movementTimestamp; movementTimestamp = newTime; var distance:Number = MOVEMENT_SPEED * movementDeltaTime / 1000; var rAngle:Number = shipContainer.rotation * RADIAN_DIVIDE; //convert degrees to radian shipContainer.x += distance * Math.sin(rAngle); shipContainer.y -= distance * Math.cos(rAngle); } } private function stageReady(event:Event):void { //install keyboard hook stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDown, false, 0, true); stage.addEventListener(KeyboardEvent.KEY_UP, keyUp, false, 0, true); } private final function keyDown(event:KeyboardEvent):void { if ((event.keyCode == 87) &amp;&amp; (!moving)) //87 = W { movementTimestamp = getTimer(); moving = true; } if ((event.keyCode == 65) &amp;&amp; (turningMode != 1)) //65 = A { turningTimestamp = getTimer(); turningMode = 1; } else if ((event.keyCode == 68) &amp;&amp; (turningMode != 2)) //68 = D { turningTimestamp = getTimer(); turningMode = 2; } } private final function keyUp(event:KeyboardEvent):void { if ((event.keyCode == 87) &amp;&amp; (moving)) moving = false; //87 = W if (((event.keyCode == 65) || (event.keyCode == 68)) &amp;&amp; (turningMode != 0)) turningMode = 0; //65 = A, 68 = D } } } </code></pre> <p>The results were as I expected. Absolutely no improvement. I really hope that someone has another suggestion as this thing needs fixing. Also, I doubt it's my system as I have a pretty good one (8GB RAM, Q9550 QuadCore intel, ATI Radeon 4870 512MB). Also, everyone else I asked so far had the same issue with my client.</p> <p><strong>Update 5:</strong> another example of a smooth flash game just to demonstrate that my movement definitely is different! See <a href="http://www.spel.nl/game/bumpercraft.html" rel="nofollow">http://www.spel.nl/game/bumpercraft.html</a></p> <p><strong>Update 4</strong>: I traced the time before rendering (EVENT.RENDER) and right after rendering (EVENT.ENTER_FRAME), the results:</p> <pre><code>rendering took: 14 ms rendering took: 14 ms rendering took: 12 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 14 ms rendering took: 12 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 14 ms rendering took: 12 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 14 ms rendering took: 14 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 24 ms rendering took: 18 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 232 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms rendering took: 14 ms rendering took: 16 ms rendering took: 12 ms rendering took: 14 ms rendering took: 12 ms </code></pre> <p>The range is 12-16 ms. During these differences, the shocking/warping/flickering movement was already going on. There is also 1 peak of 232ms, at this time there was a relatively big warp. This is however not the biggest problme, the biggest problem are the continuous small warps during normal movement. Does this give anyone a clue?</p> <p><strong>Update 3:</strong> After testing, I know that the following factors are <em>not</em> causing my problem:</p> <ul> <li>Bitmap's quality -> changed with photoshop to an uglier 8 colours optimized graphic, no improvement at all.</li> <li>Constant rotation of image while turning -> disabled it, no improvement at all</li> <li>Browser rendering -> tried to use the flash player standalone, no improvement at all</li> </ul> <p>I am 100% convinced that the problem lies in either my code or in my algorithm. Please, help me out. It has been almost two weeks (1 week that I asked this question on SO) now and I still have to get my golden answer.</p> <p><strong>Update 1:</strong> see bottom for full flex project source and a live demo demonstrating my problem.</p> <p>I'm working on a 2d flash game. Player ships are created as an object:</p> <pre><code>ships[id] = new GameShip(); </code></pre> <p>When movement and rotation information is available, this is being directed to the corresponding ship:</p> <pre><code>ships[id].setMovementMode(1); //move forward </code></pre> <p>Now, within this GameShip object movement works using the "Event.ENTER_FRAME" event:</p> <pre><code>addEventListener(Event.ENTER_FRAME, movementHandler); </code></pre> <p>The following function is then being run:</p> <pre><code>private final function movementHandler(event:Event):void { var newTimeStamp:uint = UtilLib.getTimeStamp(); //set current timeStamp var distance:Number = (newTimeStamp - movementTimeStamp) / 1000 * movementSpeed; //speed = x pixels forward every 1 second movementTimeStamp = newTimeStamp; //update old timeStamp var diagonalChange:Array = getDiagonalChange(movementAngle, distance); //the diagonal position update based on angle and distance charX += diagonalChange[0]; charY += diagonalChange[1]; if (shipContainer) { //when the container is ready to be worked with shipContainer.x = charX; shipContainer.y = charY; } } private final function getDiagonalChange(angle:Number, distance:Number):Array { var rAngle:Number = angle * Math.PI/180; //convert degrees to radian return [Math.sin(rAngle) * distance, (Math.cos(rAngle) * distance) * -1]; } </code></pre> <p>When the object is no longer moving, the event listener will be removed. The same method is being used for rotation. Everything works almost perfect.</p> <p>I've set the project's target FPS to 100 and created a FPS counter. According to the FPS counter, the average FPS in firefox is around 100, while the top is 1000 and the bottom is 22. I think that the bottom and top FPSs are only happening during the initialization of the client (startup).</p> <p>The problem is that the ship appears to be almost perfectly smooth, while it should be just that without the "almost" part. It's almost as if the ship is "flickering" very very fast, you can't actually see it but it's hard to focus on the object while it's moving with your eyes. Also, every now and then, there seems to be a bit of a framerate spike, as if the client is skipping a couple of frames, you then see it quickly warp.</p> <p>It is very difficult to explain what the real problem is, but in general it's that the movement is not perfectly smooth. So, do you have any suggestions on how to make the movement or transition of objects perfectly smooth?</p> <p><strong>Update 1:</strong></p> <p>I re-created the client to demonstrate my problem. Please check it out.</p> <p><strong>The client:</strong> <a href="http://feedpostal.com/test/MovementTest.html" rel="nofollow">http://feedpostal.com/test/MovementTest.html</a></p> <p><strong>The Actionscript Project (full source):</strong> <a href="http://feedpostal.com/test/MovementTest.rar" rel="nofollow">http://feedpostal.com/test/MovementTest.rar</a></p> <p><strong>An example of a smooth flash game</strong> (not created by me): <a href="http://www.gamesforwork.com/games/swf/Mission%20Racing%5Faugust%5F10th%5F2009.swf" rel="nofollow">http://www.gamesforwork.com/games/swf/Mission%20Racing_august_10th_2009.swf</a></p> <p>It took me a pretty long time to recreate this client side version, I hope this will help with solving the problem.</p> <p>Please note: yes, it is actually pretty smooth. But it is definitely not smooth enough.</p> http://stackoverflow.com/questions/1480942/how-to-reduce-my-flash-games-background-engine-600mb-memory-usage-peaks 3 How to reduce my flash game's background engine 600MB memory usage peaks? Tom 2009-09-26T10:24:27Z 2009-09-27T13:21:57Z <p>I'm creating a flash game in actionscript 3 with an infinite universe. Because the universe is infinite the background is created dynamically using the following background engine:</p> <p><em>BackgroundEngine.as</em></p> <pre><code>package com.tommedema.background { import br.com.stimuli.loading.BulkLoader; import com.tommedema.utils.Settings; import com.tommedema.utils.UtilLib; import flash.display.Bitmap; import flash.display.BitmapData; import flash.display.Sprite; import flash.events.Event; import flash.events.TimerEvent; import flash.utils.Timer; public final class BackgroundEngine extends Sprite { //general private static var isLoaded:Boolean = false; private static var bulkLoader:BulkLoader = new BulkLoader("backgroundEngine"); private static var assetsBitmapData:Array = []; private static var drawTimer:Timer; //objects private static var masterContainer:Sprite; private static var containers:Array = []; //stage private static var stageWidth:uint; private static var stageHeight:uint; private static var stageCenterX:Number; private static var stageCenterY:Number; //moves the background's X and Y coord public static function moveXY(xAmount:Number, yAmount:Number):void { if (!masterContainer) return; if (xAmount != 0) masterContainer.x += xAmount; if (yAmount != 0) masterContainer.y += yAmount; } //returns whether the background engine has been loaded already public static function loaded():Boolean { return isLoaded; } //loads the background engine public final function load():void { if (isLoaded) return; UtilLib.log("BackgroundEngine load."); //set stage width, height and center stageWidth = stage.stageWidth; stageHeight = stage.stageHeight; stageCenterX = stageWidth / 2; stageCenterY = stageHeight / 2; //load drawing timer drawTimer = new Timer(Settings.BG_DRAW_IV); drawTimer.addEventListener(TimerEvent.TIMER, updateBackground, false, 0, true); drawTimer.start(); //retrieve background assets if ((bulkLoader.get("background/4.png")) &amp;&amp; (bulkLoader.get("background/4.png").isLoaded)) { loadAssets(); } else { bulkLoader.add(Settings.ASSETS_PRE_URL + "background/1.gif", {id: "background/1.gif"}); bulkLoader.add(Settings.ASSETS_PRE_URL + "background/2.png", {id: "background/2.png"}); bulkLoader.add(Settings.ASSETS_PRE_URL + "background/3.png", {id: "background/3.png"}); bulkLoader.add(Settings.ASSETS_PRE_URL + "background/4.png", {id: "background/4.png"}); bulkLoader.addEventListener(BulkLoader.COMPLETE, assetsComplete, false, 0, true); bulkLoader.start(); } //set isLoaded to true isLoaded = true; } //unloads the background engine public final function unload():void { if (!isLoaded) return; UtilLib.log("BackgroundEngine unload method has been called."); //unload drawTimer drawTimer.removeEventListener(TimerEvent.TIMER, updateBackground); drawTimer.stop(); drawTimer = null; //clean the asset array assetsBitmapData = []; //remove containers for each (var container:Sprite in containers) { if (container) { masterContainer.removeChild(container); container = null; } } containers = []; //remove master container if (masterContainer) { removeChild(masterContainer); masterContainer = null; } //set isLoaded to false isLoaded = false; } //updates the background private final function updateBackground(event:TimerEvent):void { if (masterContainer) { collectGarbage(); drawNextContainer(); } } //poller function for drawing next background squares private static function drawNextContainer():void { var curContainer:Sprite = hasBackground(stageCenterX, stageCenterY); if (curContainer) { if (!hasBackground(stageCenterX - stageWidth * 0.75, stageCenterY - stageHeight * 0.75)) //top left drawNewSquare(curContainer.x - curContainer.width, curContainer.y - curContainer.height); if (!hasBackground(stageCenterX, stageCenterY - stageHeight * 0.75)) //top drawNewSquare(curContainer.x, curContainer.y - curContainer.height); if (!hasBackground(stageCenterX + stageWidth * 0.75, stageCenterY - stageHeight * 0.75)) //top right drawNewSquare(curContainer.x + curContainer.width, curContainer.y - curContainer.height); if (!hasBackground(stageCenterX - stageWidth * 0.75, stageCenterY)) //center left drawNewSquare(curContainer.x - curContainer.width, curContainer.y); if (!hasBackground(stageCenterX + stageWidth * 0.75, stageCenterY)) //center right drawNewSquare(curContainer.x + curContainer.width, curContainer.y); if (!hasBackground(stageCenterX - stageWidth * 0.75, stageCenterY + stageHeight * 0.75)) //bottom left drawNewSquare(curContainer.x - curContainer.width, curContainer.y + curContainer.height); if (!hasBackground(stageCenterX, stageCenterY + stageHeight * 0.75)) //bottom center drawNewSquare(curContainer.x, curContainer.y + curContainer.height); if (!hasBackground(stageCenterX + stageWidth * 0.75, stageCenterY + stageHeight * 0.75)) //bottom right drawNewSquare(curContainer.x + curContainer.width, curContainer.y + curContainer.height); } } //draws the next square and adds it to the master container private static function drawNewSquare(x:Number, y:Number):void { containers.push(genSquareBg()); var cIndex:uint = containers.length - 1; containers[cIndex].x = x; containers[cIndex].y = y; masterContainer.addChild(containers[cIndex]); } //returns whether the given location has a background and if so returns the corresponding square private static function hasBackground(x:Number, y:Number):Sprite { var stageX:Number; var stageY:Number; for(var i:uint = 0; i &lt; containers.length; i++) { stageX = masterContainer.x + containers[i].x; stageY = masterContainer.y + containers[i].y; if ((containers[i]) &amp;&amp; (stageX &lt; x) &amp;&amp; (stageX + containers[i].width &gt; x) &amp;&amp; (stageY &lt; y) &amp;&amp; (stageY + containers[i].height &gt; y)) return containers[i]; } return null; } //polling function for old background squares garbage collection private static function collectGarbage():void { var stageX:Number; var stageY:Number; for(var i:uint = 0; i &lt; containers.length; i++) { if ((containers[i]) &amp;&amp; (!isRequiredContainer(containers[i]))) { masterContainer.removeChild(containers[i]); containers.splice(i, 1); } } } //returns whether the given container is required for display private static function isRequiredContainer(container:Sprite):Boolean { if (hasBackground(stageCenterX, stageCenterY) == container) //center return true; if (hasBackground(stageCenterX - stageWidth * 0.75, stageCenterY - stageHeight * 0.75) == container) //top left return true; if (hasBackground(stageCenterX, stageCenterY - stageHeight * 0.75) == container) //top return true; if (hasBackground(stageCenterX + stageWidth * 0.75, stageCenterY - stageHeight * 0.75) == container) //top right return true; if (hasBackground(stageCenterX - stageWidth * 0.75, stageCenterY) == container) //center left return true; if (hasBackground(stageCenterX + stageWidth * 0.75, stageCenterY) == container) //center right return true; if (hasBackground(stageCenterX - stageWidth * 0.75, stageCenterY + stageHeight * 0.75) == container) //bottom left return true; if (hasBackground(stageCenterX, stageCenterY + stageHeight * 0.75) == container) //bottom center return true; if (hasBackground(stageCenterX + stageWidth * 0.75, stageCenterY + stageHeight * 0.75) == container) //bottom right return true; return false; } //dispatched when all assets have finished downloading private final function assetsComplete(event:Event):void { loadAssets(); } //loads the assets private final function loadAssets():void { assetsBitmapData.push(bulkLoader.getBitmapData("background/1.gif")); //stars simple assetsBitmapData.push(bulkLoader.getBitmapData("background/2.png")); //star bright assetsBitmapData.push(bulkLoader.getBitmapData("background/3.png")); //cloud white assetsBitmapData.push(bulkLoader.getBitmapData("background/4.png")); //cloud red init(); } //initializes startup background containers private final function init():void { masterContainer = new Sprite(); //create master container //generate default background container containers.push(genSquareBg()); //top left containers[0].x = 0; containers[0].y = 0; masterContainer.addChild(containers[0]); //display the master container masterContainer.x = -(stageWidth / 2); masterContainer.y = -(stageHeight / 2); masterContainer.cacheAsBitmap = true; addChild(masterContainer); } //generates a background square private static function genSquareBg():Sprite { var width:Number = stageWidth * 2; var height:Number = stageHeight * 2; var startX:Number = 0; var startY:Number = 0; var scale:Number; var drawAmount:uint; var tmpBitmap:Bitmap; var i:uint; //create container var container:Sprite = new Sprite(); //show simple stars background tmpBitmap = UtilLib.copyDataToBitmap(assetsBitmapData[0], false, 0x000000); tmpBitmap.x = startX; tmpBitmap.y = startY; container.addChild(tmpBitmap); //draw bright stars drawAmount = UtilLib.getRandomInt(1, 2); for(i = 1; i &lt;= drawAmount; i++) { tmpBitmap = UtilLib.copyDataToBitmap(assetsBitmapData[1], true, 0x000000); tmpBitmap.alpha = UtilLib.getRandomInt(3, 7) / 10; tmpBitmap.rotation = UtilLib.getRandomInt(0, 360); scale = UtilLib.getRandomInt(3, 10) / 10; tmpBitmap.scaleX = scale; tmpBitmap.scaleY = scale; tmpBitmap.x = UtilLib.getRandomInt(startX + tmpBitmap.width, width - tmpBitmap.width); tmpBitmap.y = UtilLib.getRandomInt(startY + tmpBitmap.height, height - tmpBitmap.height); container.addChild(tmpBitmap); } //draw white clouds drawAmount = UtilLib.getRandomInt(2, 4); for(i = 1; i &lt;= drawAmount; i++) { tmpBitmap = UtilLib.copyDataToBitmap(assetsBitmapData[2], true, 0x000000); tmpBitmap.alpha = UtilLib.getRandomInt(3, 10) / 10; scale = UtilLib.getRandomInt(15, 40); tmpBitmap.scaleX = scale / 10; tmpBitmap.scaleY = UtilLib.getRandomInt(scale / 1.5, scale * 1.5) / 10; tmpBitmap.x = UtilLib.getRandomInt(startX, width - tmpBitmap.width); tmpBitmap.y = UtilLib.getRandomInt(startY, height - tmpBitmap.height); container.addChild(tmpBitmap); } //draw red clouds drawAmount = UtilLib.getRandomInt(0, 2); for(i = 1; i &lt;= drawAmount; i++) { tmpBitmap = UtilLib.copyDataToBitmap(assetsBitmapData[3], true, 0x000000); tmpBitmap.alpha = UtilLib.getRandomInt(3, 10) / 10; scale = UtilLib.getRandomInt(5, 40) / 10; tmpBitmap.scaleX = scale; tmpBitmap.scaleY = scale; tmpBitmap.x = UtilLib.getRandomInt(startX, width - tmpBitmap.width); tmpBitmap.y = UtilLib.getRandomInt(startY, height - tmpBitmap.height); container.addChild(tmpBitmap); } //convert all layers to a single bitmap layer and return return container; } } } </code></pre> <p><em>UtilLib.as copyDataToBitmap function:</em></p> <pre><code>//copies bitmap data and returns a new bitmap public static function copyDataToBitmap(bitmapData:BitmapData, transparency:Boolean = false, flatBackground:uint = 0x000000):Bitmap { var width:Number = bitmapData.width; var height:Number = bitmapData.height; var tmpBitmapData:BitmapData = new BitmapData(width, height, transparency, flatBackground); tmpBitmapData.copyPixels(bitmapData, new Rectangle(0, 0, width, height), new Point(0, 0)); return new Bitmap(tmpBitmapData); } </code></pre> <p>The used background images are all around 30 kilobytes small, but some are very large: <img src="http://feedpostal.com/client/assets/background/1.gif" alt="alt text" /> <img src="http://feedpostal.com/client/assets/background/2.png" alt="alt text" /> <img src="http://feedpostal.com/client/assets/background/3.png" alt="alt text" /> <img src="http://feedpostal.com/client/assets/background/4.png" alt="alt text" /></p> <p>I used to convert all container layers into 1 flat bitmap, but that seemed to reduce performance. The memory usage remained the same.</p> <p>The problem is that when I profile the application in Flex 3, the memory usage starts at 20MB (that's 1 container), when I start moving more containers are being loaded and while the old ones are being set to null the garbage collector isn't immediately removing them from memory causing a 600MB memory peak, after which it goes back to 20MB and starts again. Notice though that I have 8GB RAM with a 64bit OS, maybe flash is running the garbage collector on different intervals depending on your memory?</p> <p>If not, I would really appreciate some help on how to reduce the memory it uses. The images are already very optimized (used Photoshop).</p> http://stackoverflow.com/questions/1470443/how-do-you-make-sure-your-code-does-not-get-lost 0 How do you make sure your code does not get lost? Tom 2009-09-24T08:40:41Z 2009-09-24T08:57:01Z <p>So, you're on to a new project and have already invested quite some time in it. Suddenly your hard disk breaks and you have lost all your hard work.</p> <p>Or not? Did you make sure that the code can be recovered in some way? Do you backup frequently, manually or automatically? How do you do this?</p> <p>Personally, I am trying to remind myself to manually backup -- but unfortunately, do this way too seldom.</p> http://stackoverflow.com/questions/1437661/good-way-to-handle-ability-usage-within-a-multiplayer-game 0 Good way to handle ability usage within a multiplayer game? Tom 2009-09-17T09:11:53Z 2009-09-17T11:00:55Z <p>I have written a client&lt;>server based multiplayer game and have finished the basics (it's a flash client written in actionscript 3). The next step will be implementing a system which will allow me to easily add abilities to the game.</p> <p>The problem here is that an ability can do so many things. Eg. player A uses ability "repair" on player B, the following will have to happen:</p> <ul> <li>Player A sends message to server informing about the action</li> <li>Player A is now showing a "repair casted" animation on its own ship</li> <li>The server has to inform all players near that ship A now has the "repair casted" animation</li> <li>The server has to increase the "health" of player B because it has been repaired by player A</li> <li>The server has to inform all nearby players that player B now has a different health value</li> <li>The server has to inform all nearby players that player B should show the "being repaired" animation</li> </ul> <p>That's just an example, a lot of things have to happen for 1 simple ability. I could go into every object and add lines of code just for this spell. However, that would become a mess when I need to add a lot (~50) abilities. Also notice that some abilities do whole other things than others, some will have to show animations, some won't. Some will have to damage, some will have to increase statistics, etc.</p> <p>So, how is such "ability system" usually handled both client and server side?</p> http://stackoverflow.com/questions/1808318/simple-html-css-block-structure-cant-use-headerheight-bottom-margin-for-conten/1918055#1918055 Comment by Tom on Simple html css block structure, can't use -headerHeight bottom-margin for content div to avoid scrollbar? Tom 2009-12-17T07:16:44Z 2009-12-17T07:16:44Z That faux thing seems like a trick or hack to me. Was CSS intended to be worked with like that? http://stackoverflow.com/questions/1808318/simple-html-css-block-structure-cant-use-headerheight-bottom-margin-for-conten/1917825#1917825 Comment by Tom on Simple html css block structure, can't use -headerHeight bottom-margin for content div to avoid scrollbar? Tom 2009-12-17T07:15:52Z 2009-12-17T07:15:52Z Are there even professional websites still in existance with dynamic content where the height is not variable? So you're saying they should all be using tables for their layout? That does seem strange. http://stackoverflow.com/questions/1917687/what-are-some-alternatives-to-css-to-style-your-websites-in-html/1918757#1918757 Comment by Tom on What are some alternatives to CSS to style your websites in HTML? Tom 2009-12-17T07:11:36Z 2009-12-17T07:11:36Z Interesting, thanks a lot. http://stackoverflow.com/questions/1917687/what-are-some-alternatives-to-css-to-style-your-websites-in-html Comment by Tom on What are some alternatives to CSS to style your websites in HTML? Tom 2009-12-16T22:04:55Z 2009-12-16T22:04:55Z That's not what I expected actually. Try substracting the borders from the numbers, it won't fix the problem. If you think it does, I'd appreciate a working version as an answer there. So far, noone managed to do it yet without hacks or tricks. http://stackoverflow.com/questions/1808318/simple-html-css-block-structure-cant-use-headerheight-bottom-margin-for-conten/1853031#1853031 Comment by Tom on Simple html css block structure, can't use -headerHeight bottom-margin for content div to avoid scrollbar? Tom 2009-12-16T22:02:57Z 2009-12-16T22:02:57Z The purpose of a table is not to position content as far as I know, that's why. http://stackoverflow.com/questions/1808318/simple-html-css-block-structure-cant-use-headerheight-bottom-margin-for-conten/1917825#1917825 Comment by Tom on Simple html css block structure, can't use -headerHeight bottom-margin for content div to avoid scrollbar? Tom 2009-12-16T22:00:41Z 2009-12-16T22:00:41Z Elaborate? A header will always have the same content, while the text on certain pages is dynamic. Seems to me that a fixed height for the header and a variable height for the content makes perfect sense. http://stackoverflow.com/questions/1917687/what-are-some-alternatives-to-css-to-style-your-websites-in-html/1917724#1917724 Comment by Tom on What are some alternatives to CSS to style your websites in HTML? Tom 2009-12-16T21:28:33Z 2009-12-16T21:28:33Z Thanks, but when the text box's content exceeds the original height, the box does not dynamically grow with the content while it should (the same applied for other suggestions done earlier). http://stackoverflow.com/questions/1808318/simple-html-css-block-structure-cant-use-headerheight-bottom-margin-for-conten/1917825#1917825 Comment by Tom on Simple html css block structure, can't use -headerHeight bottom-margin for content div to avoid scrollbar? Tom 2009-12-16T21:27:29Z 2009-12-16T21:27:29Z When the text box's content exceeds the original height, the box does not dynamically grow with the content while it should (the same applied for other suggestions done earlier). http://stackoverflow.com/questions/1917687/what-are-some-alternatives-to-css-to-style-your-websites-in-html Comment by Tom on What are some alternatives to CSS to style your websites in HTML? Tom 2009-12-16T21:13:24Z 2009-12-16T21:13:24Z Guns, I am not criticising CSS - it's those people who answered my previous question. Notice the &quot;apparently&quot; in my question. :) http://stackoverflow.com/questions/1917687/what-are-some-alternatives-to-css-to-style-your-websites-in-html Comment by Tom on What are some alternatives to CSS to style your websites in HTML? Tom 2009-12-16T21:12:39Z 2009-12-16T21:12:39Z Thus = This****** http://stackoverflow.com/questions/1917687/what-are-some-alternatives-to-css-to-style-your-websites-in-html Comment by Tom on What are some alternatives to CSS to style your websites in HTML? Tom 2009-12-16T21:12:07Z 2009-12-16T21:12:07Z I'm sorry that's how you see things. I am in fact interested in what people do use. Thus is in no way me ranting, I would do that elsewhere - if at all. http://stackoverflow.com/questions/1917687/what-are-some-alternatives-to-css-to-style-your-websites-in-html/1917710#1917710 Comment by Tom on What are some alternatives to CSS to style your websites in HTML? Tom 2009-12-16T21:10:35Z 2009-12-16T21:10:35Z Do you have any resources explaining how to develop basic structures with pure html while not using tables or frames? For example, a header on top, a menu and content window in the vertical middle and a footer which will always be at the bottom. Of course the height of the content window would be dynamic to the content. http://stackoverflow.com/questions/1917687/what-are-some-alternatives-to-css-to-style-your-websites-in-html/1917724#1917724 Comment by Tom on What are some alternatives to CSS to style your websites in HTML? Tom 2009-12-16T21:07:18Z 2009-12-16T21:07:18Z Those who develop CSS or who use CSS? If the latter, you might want to check out the question posted in the original post. Apparently, noone there managed to solve the problem without using hacks, tricks or different methods for each browser. http://stackoverflow.com/questions/1905804/which-is-the-new-recommended-standard-of-html-javascript Comment by Tom on Which is the new recommended standard of HTML & Javascript? Tom 2009-12-15T07:49:45Z 2009-12-15T07:49:45Z AJAX is pretty much the usage of both HTML and Javascript, so the first two questions pretty much cover that. As for Javascript there are no mayor differences like with HTML as far as I know, so my bet would be the version range supported by the most popular latest stable browsers. http://stackoverflow.com/questions/1887954/free-webstorage-that-is-accessible-via-code Comment by Tom on Free webstorage that is accessible via code. Tom 2009-12-11T13:15:12Z 2009-12-11T13:15:12Z Keep in mind that google docs has a storage limit and a set quote on the amount of documents you can create.