User michael - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T03:32:19Zhttp://stackoverflow.com/feeds/user/18856http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1789743/mysql-number-of-people-assigned-to-a-task0mysql number of people assigned to a taskmichael2009-11-24T12:21:12Z2009-11-24T12:31:27Z
<p>I have the following tables...</p>
<p>Tasks
<img src="http://img260.imageshack.us/img260/3695/screenshotbg.png" alt="alt text"></p>
<p>People
<img src="http://img685.imageshack.us/img685/6445/screenshot1f.png" alt="alt text"></p>
<p>tasks_people
<img src="http://img260.imageshack.us/img260/1061/screenshot2r.png" alt="alt text"></p>
<p>... and I want to get a list of tasks, with a count of people assigned to them. Note that a person can be assigned to a task more than once (on different dates). For some reason I dont seem to be able to manage it.</p>
<p>Thanks for any help!</p>
http://stackoverflow.com/questions/1607953/c-opengl-coordinate-transformation0c++ OpenGL coordinate transformationmichael2009-10-22T15:16:49Z2009-10-22T15:45:02Z
<p>Hi</p>
<p>I just don't seem to be able to figure this out in my head. I'm trying to move an object in 3D space.</p>
<p>If I have a point at 5,15,5 and use opengl functions to change the model view....</p>
<pre><code>glTranslatef( 10.0f, 4.0f, 4.0f );
glRotatef( 33.0f, 1.0f, 0.0f, 0.0f );
glTranslatef( 10.0f, 4.0f, 4.0f );
</code></pre>
<p>Is there a way I can find out where that point ends up (in world / global coordinates)?
Can I do some kind of matrix calculations that will give me back 20,26,23 (or what every the new coordinate position is)?</p>
<p>Please help, I've been stuck on this for so long!</p>
http://stackoverflow.com/questions/1550904/stuck-building-a-game-engine1Stuck building a game enginemichael2009-10-11T15:06:04Z2009-10-12T09:35:44Z
<p>I'm trying to build a (simple) game engine using c++, SDL and OpenGL but I can't seem to figure out the next step. This is what I have so far...</p>
<p>An engine object which controls the main game loop</p>
<p>A scene renderer which will render the scene</p>
<p>A stack of game states that can be pushed and popped</p>
<p>Each state has a collection of actors and each actor has a collection of triangles.
The scene renderer successfully sets up the view projection matrix</p>
<p>I'm not sure if the problem I am having relates to how to store an actors position or how to create a rendering queue.</p>
<p>I have read that it is efficient to create a rendering queue that will draw opaque polygons front to back and then draw transparent polygons from back to front. Because of this my actors make calls to the "queueTriangle" method of the scene renderer object. The scene renderer object then stores a pointer to each of the actors triangles, then sorts them based on their position and then renders them.</p>
<p>The problem I am facing is that for this to happen the triangle needs to know its position in world coordinates, but if I'm using glTranslatef and glRotatef I don't know these coordinates!</p>
<p>Could someone please, please, please offer me a solution or perhaps link me to a (simple) guide on how to solve this.</p>
<p>Thankyou!</p>
http://stackoverflow.com/questions/1543790/simple-c-opengl-game-engine-for-linux2simple c++, opengl game engine for linux?michael2009-10-09T13:35:46Z2009-10-09T20:05:59Z
<p>I was wondering if anyone knew of a simple opengl game engine for linux where the source is available to read.</p>
<p>I basically want to read the source to get a better idea of how things are put together without worrying about the code being cross platform or having fancy particle effects or anything.</p>
http://stackoverflow.com/questions/1531023/moving-a-point-in-3d-space0moving a point in 3d spacemichael2009-10-07T11:21:41Z2009-10-07T11:57:54Z
<p>I have a point at 0,0,0
I rotate the point 30 deg around the Y axis, then 30 deg around the X axis.
I then want to move the point 10 units forward.</p>
<p>I know how to work out the new X and Y position</p>
<pre><code>MovementX = cos(angle) * MoveDistance;
MovementY = sin(angle) * MoveDistance;
</code></pre>
<p>But then I realised that these values will change because of Z, won't they?</p>
<p>How do I work out Z and have I worked out X and Y correctly?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1525535/delete-all-items-from-a-c-stdvector2Delete all items from a c++ std::vectormichael2009-10-06T13:19:00Z2009-10-06T20:58:35Z
<p>I'm trying to delete everything from a std::vector by using the following code</p>
<pre><code>vector.erase( vector.begin(), vector.end() );
</code></pre>
<p>but it doesn't work, help!</p>
<p><hr /></p>
<p>Update: Doesn't clear destruct the elements held by the vector? I don't want that, as I'm still using the objects, I just want to empty the container</p>
http://stackoverflow.com/questions/1432724/opengl-absolute-coordinates0OpenGL absolute coordinatesmichael2009-09-16T12:43:31Z2009-09-18T18:36:21Z
<p>I'm very new to creating games (and working in OpenGL in general). I'm trying to make a 2D game but have come upon a stumbling point when trying to get my head around collision detection.</p>
<p>Lets say for example I translate the current matrix, the rotate and translate again and then draw a point. How do I know where that point is in relation to anything else I might have drawn?</p>
<p>Is there a way of calculating "absolute" coordinates from the current matrix?</p>
<p>Please explain as simply as possible! thanks :)</p>
http://stackoverflow.com/questions/1436018/many-to-many-query/1438544#14385440Answer by michael for Many to many querymichael2009-09-17T12:25:38Z2009-09-17T12:25:38Z<pre><code>select
`p`.`id`,
`p`.`name`
from `Sections` as `s`
join `Products_sections` as `ps` on `ps`.`section_id` = `s`.`id`
join `Products` as `p` on `p`.`id` = `ps`.`product_id`
where `s`.`id` in ( 1,2 )
having count( distinct `s`.`name` = 2 )
</code></pre>
<p>will return...</p>
<pre><code>id name
-----------------
1 something
</code></pre>
<p>Is that what you were looking for?</p>
http://stackoverflow.com/questions/1404422/php-arraysum-on-multi-dimensional-array0PHP Array_Sum on multi dimensional arraymichael2009-09-10T10:08:22Z2009-09-10T10:15:31Z
<p>If I have a multi dimensional array in PHP like so...</p>
<pre><code> [0] => Array
(
[url] => http://domain1.com
[domain] => domain1.com
[values] => Array
(
[character_length] => 25
[word_count] => 7
)
)
[1] => Array
(
[url] => http://domain2.com
[domain] => domain2.com
[values] => Array
(
[character_length] => 30
[word_count] => 7
)
</code></pre>
<p>How can I merge them to produce....</p>
<pre><code> [0] => Array
(
[url] => *can be anything*
[domain] => *can be anything*
[values] => Array
(
[character_length] => 55
[word_count] => 14
)
)
</code></pre>
http://stackoverflow.com/questions/848635/domdocument-failing-to-add-a-link-element-for-rss-feed0DomDocument failing to add a "link" element for RSS feedmichael2009-05-11T15:26:33Z2009-07-30T11:22:49Z
<p>I am trying to create an RSS feed in PHP using DomDocument but every time I try to make a node like http://domain.com the script fails</p>
<pre><code>$oDomDocument = new DOMDocument( "1.0", "iso-8859-1" );
// Create the root now
$oRootNode = $oDomDocument->createElement( "rss" );
$oRootNode->setAttribute( "version", "2.0" );
$oDomDocument->appendChild( $oRootNode );
// Create the channel node
$oChannelNode = $oDomDocument->createElement( "channel" );
$oRootNode->appendChild( $oChannelNode );
// Add site details
$oChannelNode->appendChild( $oDomDocument->createElement( "title", "Site Title" ) );
$oChannelNode->appendChild( $oDomDocument->createElement( "link", "http://google.com" ) );
$oChannelNode->appendChild( $oDomDocument->createElement( "description", "This is a description" ) );
$oChannelNode->appendChild( $oDomDocument->createElement( "language", "en-us" ) );
</code></pre>
<p>I get the following error..</p>
<p>XML Parsing Error: mismatched tag. Expected: .
Location: <a href="http://daddydonkey/feed.rss" rel="nofollow">http://daddydonkey/feed.rss</a>
Line Number 4, Column 58:This is a description
---------------------------------------------------------^</p>
http://stackoverflow.com/questions/101935/validate-xml-using-a-custom-dtd-in-php1Validate XML using a custom DTD in PHPmichael2008-09-19T13:46:04Z2009-04-20T06:59:22Z
<p>Is there a way (without installing any libraries) of validating XML using a custom DTD in PHP?</p>
http://stackoverflow.com/questions/157459/problem-joining-on-the-highest-value-in-mysql-table3Problem joining on the highest value in mysql tablemichael2008-10-01T12:59:45Z2009-03-01T03:27:33Z
<p>I have a products table...</p>
<p><img src="http://img357.imageshack.us/img357/6393/productscx5.gif" alt="alt text" /></p>
<p>and a revisions table, which is supposed to track changes to product info</p>
<p><img src="http://img124.imageshack.us/img124/1139/revisionslz5.gif" alt="alt text" /></p>
<p>I try to query the database for all products, with their most recent revision...</p>
<pre><code>select
*
from `products` as `p`
left join `revisions` as `r` on `r`.`product_id` = `p`.`product_id`
group by `p`.`product_id`
order by `r`.`modified` desc
</code></pre>
<p>but I always just get the first revision. I need to do this in <strong>one</strong> select (ie no sub queries). I can manage it in mssql, is this even possible in mysql?</p>
http://stackoverflow.com/questions/565764/modrewrite-help0mod_rewrite helpmichael2009-02-19T15:14:54Z2009-02-19T16:13:54Z
<p>Im trying to set up a simple rewrite rule but I dont seem to be able to get it to work. Basically I want to route any address that starts with "restaurants" to a certain place and all other addresses to my bootstrap.</p>
<p>RewriteRule ^/restaurants <a href="http://www.google.com" rel="nofollow">http://www.google.com</a>
RewriteRule !^/restaurants index.php</p>
<p>is what I have so far.
ie.</p>
<ul>
<li>mysite.com/restaurants</li>
<li>mysite.com/restaurants/blabla</li>
<li>mysite.com/restaurants/beep/boop</li>
</ul>
<p>would all go to google, all other requests would go to index.php</p>
http://stackoverflow.com/questions/385732/best-way-to-stream-movies1Best way to stream moviesmichael2008-12-22T07:35:18Z2008-12-23T12:40:58Z
<p>I'm trying to make a front end for all my music and video files on a spare PC I have but have come up against a bit of a road block. I originally wanted to stream the movies (avi, mpeg, flv etc) using a flash media player but after a bit of searching it seems that flash can only stream flv's. Obviously, I don't want to convert my whole hard drive into flv#s.</p>
<p>The only other option I've been able to find is the following code...</p>
<pre><code><object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="195" width="340" name="CRUNKCinema" align="left">
<param name="src" value="/path/to/video.avi">
<param name="autoplay" value="true">
<param name="controller" value="true">
<embed height="195" width="340" align="left" src="/path/to/video.avi" autoplay="true" controller="true"></embed>
</object>
</code></pre>
<p>But this seems very intermittent, sometimes the video doesn't load at all. Also there doesn't seem to be any buffering using this option.</p>
<p>Could someone suggest a better solution to my problem? Thanks!</p>
http://stackoverflow.com/questions/381098/what-naming-convention-do-you-use-for-member-variables/385711#3857110Answer by michael for What naming convention do you use for member variables?michael2008-12-22T07:20:28Z2008-12-22T22:18:02Z<p>I use quite a long winded convention. I always prefix member variables with "this" and they are also always prefixed with "m_". Then I use Hungarian Notation to type hint.</p>
<p>this.m_sValue</p>
<p>Similarly, arguments passed into a function are always prefixed with "a_", eg.</p>
<p>a_sArgumentOne, a_iArgumentTwo</p>
http://stackoverflow.com/questions/308149/possible-to-import-an-image-into-as3-without-php1Possible to import an image into AS3 without PHP?michael2008-11-21T07:50:33Z2008-11-21T19:21:51Z
<p>In actionscript 3 is it possible to allow a user to upload an image into a flash movie at runtime without POSTing to a PHP script? I dont want to export the image or save it anywhere I just want to be able to display the image in the flash movie</p>
<p><em>fingers crossed</em></p>
http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/157627#1576271Answer by michael for Do you have a hobby development project?michael2008-10-01T13:35:10Z2008-10-01T13:35:10Z<p>Yes, Im currently rewriting the coldfusion MachII framework into my own PHP framework (its so heavily modified that it scarcely resembles MachII anymore).
It has helped me professionally because a couple of websites that I've launched at work run on my framework.
My project is not closed source but its no available to download anywhere at the moment since its undergoing major changes.</p>
http://stackoverflow.com/questions/1607953/c-opengl-coordinate-transformation/1608028#1608028Comment by michael on c++ OpenGL coordinate transformationmichael2009-10-22T15:52:00Z2009-10-22T15:52:00ZI think I get it now :) something along these lines...
<a href="http://www.gamedev.net/reference/articles/article877.asp" rel="nofollow">gamedev.net/reference/articles/…</a>http://stackoverflow.com/questions/1607953/c-opengl-coordinate-transformation/1608089#1608089Comment by michael on c++ OpenGL coordinate transformationmichael2009-10-22T15:51:22Z2009-10-22T15:51:22ZThankyou for your answer, when I get a little more comfortable with all of this I think I'll delve deeper into matrix maths http://stackoverflow.com/questions/1550904/stuck-building-a-game-engine/1550964#1550964Comment by michael on Stuck building a game enginemichael2009-10-11T17:40:24Z2009-10-11T17:40:24ZIf my actors should know their own coordinates then does that mean I have to move them manually (using quaternions or something similar)?
I don't know how it would work with glTranslate, I'm not sure I know how this works at all :)http://stackoverflow.com/questions/1531023/moving-a-point-in-3d-spaceComment by michael on moving a point in 3d spacemichael2009-10-07T12:45:56Z2009-10-07T12:45:56ZOk I guess the equivalent in OpenGL would be...
glRotatef( 30.0f, 0.0f, 1.0f, 0.0f );
glRotatef( 30.0f, 1.0f, 0.0f, 0.0f );
glTranslate( 0.0f, 0.0f, 10.0f );
But I want to do it manually so that I know the world coordinates of the point (so that I can compare it to other coordinates)http://stackoverflow.com/questions/1525535/delete-all-items-from-a-c-stdvector/1525546#1525546Comment by michael on Delete all items from a c++ std::vectormichael2009-10-06T13:32:17Z2009-10-06T13:32:17ZIt was to do with how I was getting the vector
this->getVector().clear() didnt work
this->m_vector.clear() worked
thankshttp://stackoverflow.com/questions/1525535/delete-all-items-from-a-c-stdvector/1525551#1525551Comment by michael on Delete all items from a c++ std::vectormichael2009-10-06T13:28:08Z2009-10-06T13:28:08ZDoesn't clear destruct the elements held by the vector? I don't want that, as I'm still using the objects, I just want to empty the containerhttp://stackoverflow.com/questions/1525535/delete-all-items-from-a-c-stdvector/1525543#1525543Comment by michael on Delete all items from a c++ std::vectormichael2009-10-06T13:24:50Z2009-10-06T13:24:50ZSo just create a new vector in the same variable to overwrite it?http://stackoverflow.com/questions/1432724/opengl-absolute-coordinates/1446103#1446103Comment by michael on OpenGL absolute coordinatesmichael2009-10-04T10:19:40Z2009-10-04T10:19:40ZI guess I need to look into a suitable way to maintain the positions manually thenhttp://stackoverflow.com/questions/1432724/opengl-absolute-coordinates/1432864#1432864Comment by michael on OpenGL absolute coordinatesmichael2009-09-17T07:47:31Z2009-09-17T07:47:31ZThis was my first though but there must be a more graceful way of handling this?!http://stackoverflow.com/questions/1432724/opengl-absolute-coordinates/1433774#1433774Comment by michael on OpenGL absolute coordinatesmichael2009-09-17T07:46:56Z2009-09-17T07:46:56ZBut what happens when both my points have been translated?
By absolute, I mean axis aligned coordinates which have had no transforms or rotations.http://stackoverflow.com/questions/157459/problem-joining-on-the-highest-value-in-mysql-table/157523#157523Comment by michael on Problem joining on the highest value in mysql tablemichael2008-10-01T13:23:48Z2008-10-01T13:23:48ZCould you give me an example of how the MAX function helps me in this situation?