User Adam - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T14:53:51Zhttp://stackoverflow.com/feeds/user/1366http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1168525/c-gcc4-4-warning-array-subscript-is-above-array-bounds1C++ GCC4.4 warning: array subscript is above array boundsAdam2009-07-22T21:56:49Z2009-12-01T17:55:13Z
<p>I recently upgraded to GCC 4.4 (MinGW TDM build) and now the follow code produces these warning:</p>
<blockquote>
<p>In member function 'void Console::print(const std::string&)':</p>
<p>warning: array subscript is above array bounds</p>
</blockquote>
<p>Here's the code:</p>
<pre><code>void Console::print( const std::string& str ) {
std::string newLine( str );
if( newLine.size() > MAX_LINE_LENGTH ) {
sf::Uint32 stringSize = newLine.size();
for( sf::Uint32 insertPos = MAX_LINE_LENGTH;
insertPos < stringSize; insertPos += MAX_LINE_LENGTH ) {
newLine.insert( insertPos, "\n" );
}
}
StringList tokens;
boost::split( tokens, newLine, boost::is_any_of("\n") );
for( StringList::iterator it = tokens.begin();
it != tokens.end(); ++it ) {
addLine( *it );
}
}
</code></pre>
<p>Any ideas?</p>
<p><hr /></p>
<p>It is the optimizations that are doing it...</p>
<p>Also it appears to be this line which is causing it:</p>
<pre><code>boost::split( tokens, newLine, boost::is_any_of("\n") );
</code></pre>
<p><hr /></p>
<p>Ah yes, I found it, it is the argument for boost::is_any_of(), by wrapping it in a string() constructor the warning goes away, thank you all for your help :)</p>
<pre><code>boost::split( tokens, newLine, boost::is_any_of( string( "\n" ) ) );
</code></pre>
http://stackoverflow.com/questions/11491/string-to-lower-upper-in-c6String To Lower/Upper in C++Adam2008-08-14T18:49:47Z2009-11-12T19:02:13Z
<p>What is the best way people have found to do String to Lower case / Upper case in C++?</p>
<p>The issue is complicated by the fact that C++ isn't an English only programming language. Is there a good multilingual method?</p>
http://stackoverflow.com/questions/161053/c-which-is-faster-stack-allocation-or-heap-allocation39C++ Which is faster: Stack allocation or Heap allocationAdam2008-10-02T06:06:28Z2009-10-26T17:36:00Z
<p>This question may sound fairly noobish, but this is a debate I had with another coder I work with.</p>
<p>I was taking care to stack allocate things where I could, instead of heap allocating them. He was talking to me and watching over my shoulder and commented that it wasn't necessary because they are the same performance wise.</p>
<p>I was always under the impression that growing the stack was constant time, and heap allocation's performance depended on the current complexity of the heap for both allocation (finding a hole of the proper size) and de-allocating (collapsing holes to reduce fragmentation, as many std library implementations take time to do this during deletes if I am not mistaken).</p>
<p>This strikes me as something that would probably be very compiler dependent. For this project in particular I am using a Metrowerks compiler for the PPC architecture. Insight on this combination would be most helpful, but in general, for GCC, and MSVC++, what is the case? Is heap allocation not as performant as stack allocation? Is there no difference? Or are the differences so minute it becomes pointless micro-optimization.</p>
http://stackoverflow.com/questions/11831/singletons-good-design-or-a-crutch25Singletons: good design or a crutch?Adam2008-08-15T00:39:01Z2009-10-22T05:18:53Z
<p>Singletons are a hotly debated design pattern, so I am interested in what the Stackoverflow community thought about them.</p>
<p>Please provide reasons for your opinions, not just "Singletons are for lazy programmers!"</p>
<p>Here is a fairly good article on the issue, all though it is against the use of Singletons:
<a href="http://scientificninja.com/advice/performant-singletons" rel="nofollow" title="excanvas">scientificninja.com: performant-singletons</a></p>
<p>Does anyone have any other good articles on them? Maybe in support of Singletons?</p>
http://stackoverflow.com/questions/17483/c-anyway-to-prevent-a-method-from-being-over-ridden-in-sub-classes3C++ Anyway to prevent a method from being over ridden in sub classes?Adam2008-08-20T06:50:32Z2009-10-13T18:09:02Z
<p>Is anyone aware of a language feature or technique in C++ to prevent a child class from over riding a particular method in the parent class?</p>
<pre><code>class Base {
public:
bool someGuaranteedResult() { return true; }
};
class Child : public Base {
public:
bool someGuaranteedResult() { return false; /* Haha I broke things! */ }
};
</code></pre>
<p>Even though it's not virtual, this is still allowed (at least in the Metrowerks compiler I'm using), all you get is a compile time warning about hiding non-virtual inherited function X.</p>
http://stackoverflow.com/questions/1406375/finding-intersection-points-between-3-spheres2Finding intersection points between 3 spheresAdam2009-09-10T16:36:48Z2009-09-15T22:07:53Z
<p>I'm looking for an algorithm to find the common intersection points between 3 spheres.</p>
<p>Baring a complete algorithm, a thorough/detailed description of the math would be greatly helpful.</p>
<p>This is the only helpful resource I have found so far:
<a href="http://mathforum.org/library/drmath/view/63138.html" rel="nofollow">http://mathforum.org/library/drmath/view/63138.html</a></p>
<p>But neither method described there is detailed enough for me to write an algorithm on.</p>
<p>I would prefer the purely algebraic method described in the second post, but what ever works.</p>
http://stackoverflow.com/questions/16795/phps-htmlspecialcharacters-equivalent-in-net6PHPs htmlspecialcharacters equivalent in .NET?Adam2008-08-19T19:35:30Z2009-08-11T15:20:57Z
<p>PHP has a great function called <a href="http://us2.php.net/manual/en/function.htmlspecialchars.php" rel="nofollow">htmlspecialcharacters()</a> where you pass it a string and it replaces all of HTML's special characters with their safe equivalents, it's <em>almost</em> a one stop shop for sanitizing input. Very nice right?</p>
<p>Well is there an equivalent in any of the .NET libraries?</p>
<p>If not, can anyone link to any code samples or libraries that do this well?</p>
http://stackoverflow.com/questions/421860/c-c-capture-characters-from-standard-input-without-waiting-for-enter-to-be-pre7C/C++: Capture characters from standard input without waiting for enter to be pressedAdam2009-01-07T20:04:16Z2009-05-26T21:14:31Z
<p>I can never remember how I do this because it comes up so infrequently for me. But in C or C++, what is the best way to read a character from standard input without waiting for a newline (press enter).</p>
<p>Also ideally it wouldn't echo the input character to the screen. I just want to capture keystrokes with out effecting the console screen.</p>
http://stackoverflow.com/questions/17411/how-do-you-separate-game-logic-from-display/17417#1741715Answer by Adam for How do you separate game logic from display?Adam2008-08-20T04:41:16Z2009-05-12T08:38:53Z<p>I think the question reveals a bit of misunderstanding of how game engines should be designed. Which is perfectly ok, because they are damn complex things that are difficult to get right ;)</p>
<p>You are under the correct impression that you want what is called Frame Rate Independence. But this does not only refer to Rendering Frames.</p>
<p>A Frame in single threaded game engines is commonly referred to as a Tick. Every Tick you process input, process game logic, and render a frame based off of the results of the processing.</p>
<p>What you want to do is be able to process your game logic at any FPS (Frames Per Second) and have a deterministic result.</p>
<p>This becomes a problem in the following case:</p>
<p>Check input:
- Input is key: 'W' which means we move the player character forward 10 units:</p>
<blockquote>
<p>playerPosition += 10;</p>
</blockquote>
<p>Now since you are doing this every frame, if you are running at 30 FPS you will move 300 units per second.</p>
<p>But if you are instead running at 10 FPS, you will only move 100 units per second. And thus your game logic is <em>not</em> Frame Rate Independent.</p>
<p>Happily, to solve this problem and make your game play logic Frame Rate Independent is a rather simple task.</p>
<p>First, you need a timer which will count the time each frame takes to render. This number in terms of seconds (so 0.001 seconds to complete a Tick) is then multiplied by what ever it is that you want to be Frame Rate Independent. So in this case:</p>
<p>When holding 'W'</p>
<blockquote>
<p>playerPosition += 10 * frameTimeDelta;</p>
</blockquote>
<p><em>(Delta is a fancy word for "Change In Something")</em></p>
<p>So your player will move some fraction of 10 in a single Tick, and after a full second of Ticks, you will have moved the full 10 units.</p>
<p>However, this will fall down when it comes to properties where the rate of change also changes over time, for example an accelerating vehicle. This can be resolved by using a more advanced integrator, such as "Verlet".</p>
<h2><strong>Multithreaded Approach</strong></h2>
<p>If you are still interested in an answer to your question (since I didn't answer it but presented an alternative), here it is. Separating Game Logic and Rendering into different threads. It has it's draw backs though. Enough so that the vast majority of Game Engines remain single threaded.</p>
<p>That's not to say there is only ever one thread running in so called single threaded engines. But all significant tasks are usually in one central thread. Some things like Collision Detection may be multithreaded, but generally the Collision phase of a Tick blocks until all the threads have returned, and the engine is back to a single thread of execution.</p>
<p>Multithreading presents a whole, very large class of issues, even some performance ones since everything, even containers, must be thread safe. And Game Engines are very complex programs to begin with, so it is rarely worth the added complication of multithreading them.</p>
<h2><strong>Fixed Time Step Approach</strong></h2>
<p>Lastly, as another commenter noted, having a Fixed size time step, and controlling how often you "step" the game logic can also be a very effective way of handling this with many benefits.</p>
<p>Linked here for completeness, but the other commenter also links to it:
<a href="http://www.gaffer.org/game-physics/fix-your-timestep" rel="nofollow">Fix Your Time Step</a></p>
http://stackoverflow.com/questions/11635/case-insensitive-string-comparison-in-c/11679#116792Answer by Adam for Case insensitive string comparison in C++Adam2008-08-14T20:35:17Z2009-04-28T16:23:01Z<p>I'm trying to cobble together a good answer from all the posts, so help me edit this:</p>
<p>Here is a method of doing this but it will NOT be Unicode friendly. Although it does transforming the strings, and is not Unicode friendly, it should be portable which is a plus:</p>
<pre><code>bool caseInsensitiveStringCompare( const std::string& str1, const std::string& str2 ) {
std::string str1Cpy( str1 );
std::string str2Cpy( str2 );
std::transform( str1Cpy.begin(), str1Cpy.end(), str1Cpy.begin(), ::tolower );
std::transform( str2Cpy.begin(), str2Cpy.end(), str2Cpy.begin(), ::tolower );
return ( str1Cpy == str2Cpy );
}
</code></pre>
<p>From what I have read this is more portable than stricmp() because stricmp() is not in fact part of the std library, but only implemented by most compiler vendors.</p>
<p>To get a truly Unicode friendly implementation it appears you must go outside the std library. One good 3rd party library is the <a href="http://www.icu-project.org/" rel="nofollow">IBM ICU (International Components for Unicode)</a></p>
<p>Also <strong>boost::iequals</strong> provides a fairly good utility for doing this sort of comparison.</p>
http://stackoverflow.com/questions/11635/case-insensitive-string-comparison-in-c14Case insensitive string comparison in C++Adam2008-08-14T20:01:28Z2009-04-28T16:23:01Z
<p>What is the best way of doing case insensitive string comparison in C++ with out transforming a string to all upper or lower case?</p>
<p>Also, what ever methods you present, are they Unicode friendly? Are they portable?</p>
http://stackoverflow.com/questions/11562/how-to-overload-stdswap8How to overload std::swap()Adam2008-08-14T19:24:17Z2009-03-12T22:33:00Z
<p>std::swap() is used by many std containers (such as std::list and std::vector) during sorting and even assignment.</p>
<p>But the std implementation of swap() is very generalized and rather inefficient for custom types.</p>
<p>Thus efficiency can be gained by overloading std::swap() with a custom type specific implementation. But how can you implement it so it will be used by the std containers?</p>
http://stackoverflow.com/questions/608097/c-circular-array-with-lower-upper-bounds/608107#6081071Answer by Adam for C++ - Circular array with lower/upper bounds ?Adam2009-03-03T20:47:02Z2009-03-03T20:52:32Z<p>Boost has a <a href="http://www.boost.org/doc/libs/1%5F38%5F0/libs/circular%5Fbuffer/doc/circular%5Fbuffer.html" rel="nofollow">Circular container</a> that I believe you can set bounds on as well.</p>
<p>In fact the Example on that page looks very similar to what you are saying here.</p>
<p>But anyway, you could accomplish the math portion of it easily using a modulus:</p>
<p>So say you max was 3:</p>
<pre><code>int MAX = 3;
someArray[ 0 % MAX ]; // This would return element 0
someArray[ 3 % MAX ]; // This would return element 0
someArray[ 4 % MAX ]; // This would return element 1
</code></pre>
http://stackoverflow.com/questions/573557/audible-audio-aa-file-spec0Audible Audio (.aa) file spec?Adam2009-02-21T18:58:14Z2009-02-21T18:58:14Z
<p>Does anyone know of a good resource on the Audible Audio (.aa) file spec?</p>
<p>I'm trying to write a program that can use them, if no one knows of a resource, any tips on reverse engineering the spec my self? I opened it up in a Hex editor and poked around, looks like an MP3 but with a ton more header info.</p>
http://stackoverflow.com/questions/494629/building-boost-for-static-linking-mingw2Building Boost for static linking (MinGW)Adam2009-01-30T06:12:33Z2009-01-30T12:59:47Z
<p>I'm building Boost (I'm using System and FileSystem) for MinGW using bjam:</p>
<pre><code>bjam --toolset=gcc stage
</code></pre>
<p>And it builds fine, but I want to be able to statically link to it (I have to have a single file for the final product) so I tried:</p>
<pre><code>bjam --link=static --toolset=gcc stage
</code></pre>
<p>But I get the same output. Any ideas?</p>
<p><em>edit</em> second question in a row I've answered moments after posting :p guess I'll leave this up here for others though.</p>
<pre><code>bjam --build-type=complete --toolset=gcc stage
</code></pre>
<p>Will build both dynamic and static for sure.</p>
http://stackoverflow.com/questions/490720/including-boostfilesystem-produces-linking-errors0Including boost::filesystem produces linking errorsAdam2009-01-29T06:57:52Z2009-01-29T07:54:50Z
<p>Ok first off, I am linking to boost_system and boost_filesystem.</p>
<p>My compiler is a <a href="http://nuwen.net/mingw.html" rel="nofollow">custom build of MinGW with GCC 4.3.2</a></p>
<p>So when I include:</p>
<pre><code>#include "boost/filesystem.hpp"
</code></pre>
<p>I get linking errors such as:</p>
<pre><code>..\..\libraries\boost\libs\libboost_system.a(error_code.o):error_code.cpp:
(.text+0xe35)||undefined reference to `_Unwind_Resume'|
..\..\libraries\boost\libs\libboost_system.a(error_code.o):error_code.cpp:
(.eh_frame+0x12)||undefined reference to `__gxx_personality_v0'|
</code></pre>
<p>Which after a little searching I found is most commonly when you try to link a C++ program with gcc, the GNU C compiler. But I printed out the exact build command that <a href="http://www.codeblocks.org/" rel="nofollow">Code::Blocks</a> is running, and it is definitely linking with g++.</p>
<p>If I comment out this include, everything works fine.</p>
<p>Any ideas? Also, as a side, anyone know of a good place to get windows binaries for boost? The build system is giving me issues, so I'm using some binaries that came with this <a href="http://nuwen.net/mingw.html#contents" rel="nofollow">custom MinGW package</a></p>
http://stackoverflow.com/questions/490720/including-boostfilesystem-produces-linking-errors/490809#4908091Answer by Adam for Including boost::filesystem produces linking errorsAdam2009-01-29T07:54:50Z2009-01-29T07:54:50Z<p>Ok, I found the problem. It's a bit convoluted.</p>
<p>GCC is gradually becoming more IS 14882 compliant in the 4.x branch. As they go on, they are removing deprecated non-standards complaint features.</p>
<p>While 4.1.x seem to only have them deprecated and not removed, 4.3.x seems to actually have them removed. What this means is 4.3.x and greater have some backwards compatibility issues with things compiled in the 3.x branch (which used the deprecated and now removed features)</p>
<p>I was using a mix and match combination of binaries that had been compiled with GCC 3.x, 4.1.x and 4.3.x so no matter which one I used, I got a similar error, because at least one binary I was linking to was incompatible with the compiler I was trying at the moment.</p>
<p>I'm now using GCC 4.1.2 and most of my binaries have been compiled with it. I am still how ever using a few binaries from 3.x, which is why I am not upgrading to 4.3.x just yet.</p>
<p>Hope that was less confusing to read than it was to write...</p>
<p><a href="http://archives.devshed.com/forums/development-94/what-is-the-preferred-gcc-version-3-x-or-4t-2287902.html" rel="nofollow">This</a> seems to be a good post addressing some of the issues as they were with 4.1.x</p>
http://stackoverflow.com/questions/476461/programming-style-of-method-declaration-of-get-set-method-variables-in-c/476470#4764701Answer by Adam for Programming style of method declaration of get/set method variables in C++?Adam2009-01-24T18:44:07Z2009-01-24T18:44:07Z<p>I pretty much always follow the division of declaring them in the header, and defining in the source. Every time I don't, I end up having to go back and do it any way later.</p>
http://stackoverflow.com/questions/432713/serving-large-files-with-php1Serving large files with PHPAdam2009-01-11T10:28:09Z2009-01-11T12:11:57Z
<p>So I am trying to serve large files via a PHP script, they are not in a web accessible directory, so this is the best way I can figure to provide access to them.</p>
<p>The only way I could think of off the bat to serve this file is by loading it into memory (fopen, fread, ect.), setting the header data to the proper MIME type, and then just echoing the entire contents of the file.</p>
<p>The problem with this is, I have to load these ~700MB files into memory all at once, and keep the entire thing there till the download is finished. It would be nice if I could stream in the parts that I need as they are downloading.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool/430411#4304110Answer by Adam for What is your single favorite development tool?Adam2009-01-10T02:22:13Z2009-01-10T02:22:13Z<p><img src="http://upload.wikimedia.org/wikipedia/en/thumb/9/90/Code_Blocks_logo.jpg/150px-Code_Blocks_logo.jpg" alt="alt text" /></p>
<p><a href="http://www.codeblocks.org/" rel="nofollow">Code::Blocks</a></p>
http://stackoverflow.com/questions/409645/currently-the-best-ide-for-c/409690#4096901Answer by Adam for Currently the best IDE for C++? Adam2009-01-03T19:42:40Z2009-01-03T19:51:28Z<p><a href="http://www.codeblocks.org/" rel="nofollow">Code::Blocks</a> is the best! It's got the most number of features of any free IDE. It's loads better then Eclipse C++.</p>
<p>Light weight, cross platform, it's just a total joy to use. Works on Windows, Linux and Mac and supports tons of compilers.</p>
<p>It's still under active development, and the latest SVN build has some very nice additions.</p>
<p>Still, all that being said, MS Visual Studio is far and away the best IDE. Period. If you have the cash, and are on windows.</p>
http://stackoverflow.com/questions/319189/should-quaternion-based-3d-cameras-accumulate-quaternions-or-euler-angles2Should Quaternion based 3D Cameras accumulate Quaternions or Euler angles?Adam2008-11-25T22:57:09Z2008-12-27T00:05:59Z
<p>So I have written a Quaternion based 3D Camera oriented toward new programmers so it is ultra easy for them to integrate and begin using.</p>
<p>While I was developing it, at first I would take user input as Euler angles, then generate a Quaternion based off of the input for that frame. I would then take the Camera's Quaternion and multiply it by the one we generated for the input, and in theory that should simply add the input rotation to the current state of the camera's rotation, and things would be all fat and happy. Lets call this: Accumulating Quaternions, because we are storing and adding Quaternions only.</p>
<p>But I noticed that there was a problem with this method. The more I used it, even if I was only rotating on one Euler angle, say Yaw, it would, over some iterations, begin bleeding over into another, say Pitch. It was slight, but fairly unacceptable.</p>
<p>So I did some more research and found an article stating it was better to accumulate Euler angles, so the camera stores it's current rotation as Euler angles, and input is simply added to them each frame. Then I generate a Quaternion from them each frame, which is in turn used to generate my rotation matrix. And this fixed the issue of rotation bleeding into improper axes.</p>
<p>So do any Stackoverflow members have any insight into this problem? Is that a proper way of doing things?</p>
http://stackoverflow.com/questions/351197/getting-absolute-position-and-rotation-from-inside-a-scene-graph1Getting absolute position and rotation from inside a scene graph?Adam2008-12-08T22:35:32Z2008-12-27T00:05:34Z
<p>So I have run up against this problem a few times:</p>
<p>I have some object in my 3D Scene Graph which is a child of some other object. Lets call them c (Child) and p (Parent).</p>
<p>c's position is defined relative to p. Thus c may have a position (1,0,0) but of course, due to p having some other position, say (1,2,3), it is not actually rendered at the original of our world, but at (2,2,3).</p>
<p>Now lets say for some reason we want to know c's absolute position in world coordinates (or rotation, the problem is the same), how is this commonly done?</p>
<p>Should c know about it's parent and be able to query for that position and add it to it's own finally returning an absolute position?</p>
http://stackoverflow.com/questions/378650/can-software-i-write-for-a-blackberry-be-decompiled/378721#37872112Answer by Adam for Can software I write for a blackberry be decompiled?Adam2008-12-18T18:17:11Z2008-12-18T18:17:11Z<p>Software you write for any language, any platform, can be decompiled. It doesn't matter what code mangling (obfuscation) tools you use, it can be decompiled.</p>
<p>Any attempt to worry about this is going to be a waste of time. Just like DRM ;p</p>
<p>But the real point is, and I wish I had the link to the discussion I am thinking of because it was very good. But the point is this. Some one can decompile it, and if they just straight recompile it and try and resell it, what has been the point? It's still easy peasy to take them to court and win.</p>
<p>But you say "They can look at my code and figure out how I did it and redo it!". And to this I say: Don't flatter your self.</p>
<p>Think if you could get your hands on the source code to Windows. There would be a lot of "WTF are they doing here"? And "boy I would have done things differently". A few moments where you scratch your chin and go "Wow, nice". But over all, it's nothing you wouldn't have come to on your own. The real value is the time they spent to truly wrap their heads around the issue and come up with a solution.</p>
<p>Anyone who rips off your code won't be doing that. What is harder? writing new software or maintaining software? I think most developers would prefer the former.</p>
<p>So someone decompiles your software and either sells it in such an obvious way that you can easily prosecute, or they take the time to fully wrap their mind around the problems and design their own which in the end (years later?) will probably be completely different from yours.</p>
<p>It's just such a ridiculous scenario, I really wounder if anyone has ripped off a product by decompiling a competing product.</p>
<p>Don't worry about some one "stealing" your code. It CAN be done and there is nothing you can do to prevent it, but it won't be done, because it's ridiculous.</p>
http://stackoverflow.com/questions/372862/c-programming-style/372948#37294816Answer by Adam for C++ programming styleAdam2008-12-16T22:12:42Z2008-12-17T07:10:34Z<p>In addition to what others have said here, there are even more important problems:</p>
<p>1) Large translation units lead to longer compile times and larger object file sizes.</p>
<p>2) Circular dependencies! And this is the big one. And it can almost always be fixed by splitting up headers and source:</p>
<pre><code>// Vehicle.h
class Wheel {
private:
Car& m_parent;
public:
Wheel( Car& p ) : m_parent( p ) {
std::cout << "Car has " << m_parent.numWheels() << " wheels." << std::endl;
}
};
class Car {
private:
std::vector< Wheel > m_wheels;
public:
Car() {
for( int i=0; i<4; ++i )
m_wheels.push_back( Wheel( *this ) );
}
int numWheels() {
return m_wheels.size();
}
}
</code></pre>
<p>No matter what order you put these in, one will always be lacking the definition of the other, even using forward declarations it won't work, since in the function bodies we are using specifics about each Class's symbol (which is why forward declarations won't help us here).</p>
<p>But if you split them up into proper .h and .cpp files and use forward declarations it will satisfy the compiler:</p>
<pre><code>//Wheel.h
//-------
class Car;
class Wheel {
private:
Car& m_parent;
public:
Wheel( Car& p );
};
//Wheel.cpp
//---------
#include "Wheel.h"
#include "Car.h"
Wheel::Wheel( Car& p ) : m_parent( p ) {
std::cout << "Car has " << m_parent.numWheels() << " wheels." << std::endl;
}
//Car.h
//-----
class Wheel;
class Car {
private:
std::vector< Wheel > m_wheels;
public:
Car();
int numWheels();
}
//Car.cpp
//-------
#include "Car.h"
#include "Wheel.h"
Car::Car() {
for( int i=0; i<4; ++i )
m_wheels.push_back( Wheel( *this ) );
}
int Car::numWheels() {
return m_wheels.size();
}
</code></pre>
<p>Now the code that actually has to know specifics about the second class can just include the header file which doesn't need to know specifics about the first class.</p>
<p>Headers just provide the <em>declarations</em> while Source files provide the <em>defintions</em>. Or another way to say it: Headers tell you what is there (what symbols are valid to use) and Source tells the compiler what the symbols actually do. In C++ you don't need anything more than a valid symbol to begin using what ever it is.</p>
<p>Trust that C++ has a reason for this idiom, b/c if you don't you will make a lot of head aches for your self down the line. I know :/</p>
http://stackoverflow.com/questions/357629/how-do-you-find-the-range-of-values-that-integer-types-can-represent-in-c/357638#35763823Answer by Adam for How do you find the range of values that integer types can represent in C++?Adam2008-12-10T21:15:32Z2008-12-10T22:15:02Z<h2>C Style</h2>
<p>limits.h contains the min and max values for ints as well as other data types which should be exactly what you need:</p>
<pre><code>#include <limits.h> // C header
#include <climits> // C++ header
// Constant containing the minimum value of a signed integer (–2,147,483,648)
INT_MIN;
// Constant containing the maximum value of a signed integer (+2,147,483,647)
INT_MAX;
</code></pre>
<p>For a complete list of constants and their common values check out: <a href="http://en.wikipedia.org/wiki/Limits.h" rel="nofollow">Wikipedia - limits.h</a></p>
<p><hr /></p>
<h2>C++ Style</h2>
<p>There is a template based C++ method as other commenters have mentioned using:</p>
<pre><code> #include <limits>
std::numeric_limits
</code></pre>
<p>which looks like:</p>
<pre><code> std::numeric_limits<int>::max();
</code></pre>
<p>and it can even do craftier things like determine the number of digits possible or whether the data type is signed or not:</p>
<pre><code> // Number of digits for decimal (base 10)
std::numeric_limits<char>::digits10;
// Number of digits for binary
std::numeric_limits<char>::digits;
std::numeric_limits<unsigned int>::is_signed;
</code></pre>
http://stackoverflow.com/questions/357734/conways-game-of-life/357748#3577480Answer by Adam for conway's game of lifeAdam2008-12-10T21:52:55Z2008-12-10T21:52:55Z<p>What exactly is your question?</p>
<p>And please format your post a bit better, using new lines and code blocks where appropriate.</p>
<p>If you are interesting in looking at other resources, I wrote 2 versions of the Game of Life, one simple 2D one and a fancy looking 3D one, both of which how ever pare based off a simple Game of Life Simulation library which may be of help to you.</p>
<p>You can get more information as well as the source code here:
<a href="http://darkrockstudios.com/public/project.php?prj=9" rel="nofollow">John Conway's Game of Life: Redux</a></p>
<p><img src="http://darkrockstudios.com/public/projectImages/prj_gameoflife_01_tn.jpg" alt="Game of Life 2D" />
<img src="http://darkrockstudios.com/public/projectImages/prj_golredux_01_tn.png" alt="Game of Life 3D" /></p>
http://stackoverflow.com/questions/348863/developers-do-you-have-a-home-server-cluster-running-24x7/350154#3501541Answer by Adam for Developers, do you have a home server (cluster) running 24x7?Adam2008-12-08T16:57:04Z2008-12-10T07:19:43Z<p>I have a Server running 24/7:</p>
<p>OS: Ubuntu 8.10 Server</p>
<p>CPU: AMD 2.0GHz Quad core</p>
<p>RAM: 4GB DDR2</p>
<p>HDD: 1TB x4 (in a kernel driven RAID10 configuration providing just under 2TB of usable space)</p>
<p>I use it to host a private SVN server for all my code projects as well as a easy place to FTP things to my self. And it hosts all the media files for my media center, so any computer on the network as well as my media center can all access the content equally.</p>
<p>It runs a LAMP stack to server simple pages, mostly directory listings for files.</p>
<p>SVN for code versioning.</p>
<p>SMB for content sharing.</p>
<p>HLDS for dedicated game servers.</p>
<p>It has made many parts of my life so very easy and convenient :)</p>
http://stackoverflow.com/questions/17228/what-tools-do-you-use-to-develop-c-applications-on-linux/17256#1725611Answer by Adam for What tools do you use to develop C++ applications on Linux?Adam2008-08-20T00:25:06Z2008-12-08T23:33:28Z<p>g++ of course, but also <a href="http://www.codeblocks.org/" rel="nofollow">Code::Blocks</a> which is an absolutely fantastic cross platform IDE (Win32, *nix, Mac).</p>
<p>I use the nightly (more like weekly lately) builds from the SVN. It has almsot all the bells and whistles you would expect from a modern IDE. It's really a truly fantastic Open Source project.</p>
<p>Also, on Linux you get the joy of using <a href="http://valgrind.org/" rel="nofollow">Valgrind</a> which is probably the best memory tracker (it does other things as well) tool that money can buy. And it's free :) Track down memory leaks and more with ease.</p>
<p>And there is just so much more! Linux is such a great dev platform :)</p>
<p>(edit) Just realized you mentioned Valgrind in your question, silly me for reading it too fast.</p>
http://stackoverflow.com/questions/339262/best-algorithm-for-this-interview-problem/350373#3503732Answer by Adam for Best algorithm for this interview problemAdam2008-12-08T18:22:07Z2008-12-08T18:50:21Z<p>I've got a solution here, it runs in a single pass, and does all processing "in place" with no extra memory (save for growing the stack).</p>
<p>It uses recursion to delay the writing of zeros which of course would destroy the matrix for the other rows and cols:</p>
<pre><code>#include <iostream>
/**
* The idea with my algorithm is to delay the writing of zeros
* till all rows and cols can be processed. I do this using
* recursion:
* 1) Enter Recursive Function:
* 2) Check the row and col of this "corner" for zeros and store the results in bools
* 3) Send recursive function to the next corner
* 4) When the recursive function returns, use the data we stored in step 2
* to zero the the row and col conditionally
*
* The corners I talk about are just how I ensure I hit all the row's a cols,
* I progress through the matrix from (0,0) to (1,1) to (2,2) and on to (n,n).
*
* For simplicities sake, I use ints instead of individual bits. But I never store
* anything but 0 or 1 so it's still fair ;)
*/
// ================================
// Using globals just to keep function
// call syntax as straight forward as possible
int n = 5;
int m[5][5] = {
{ 1, 0, 1, 1, 0 },
{ 0, 1, 1, 1, 0 },
{ 1, 1, 1, 1, 1 },
{ 1, 0, 1, 1, 1 },
{ 1, 1, 1, 1, 1 }
};
// ================================
// Just declaring the function prototypes
void processMatrix();
void processCorner( int cornerIndex );
bool checkRow( int rowIndex );
bool checkCol( int colIndex );
void zeroRow( int rowIndex );
void zeroCol( int colIndex );
void printMatrix();
// This function primes the pump
void processMatrix() {
processCorner( 0 );
}
// Step 1) This is the heart of my recursive algorithm
void processCorner( int cornerIndex ) {
// Step 2) Do the logic processing here and store the results
bool rowZero = checkRow( cornerIndex );
bool colZero = checkCol( cornerIndex );
// Step 3) Now progress through the matrix
int nextCorner = cornerIndex + 1;
if( nextCorner < n )
processCorner( nextCorner );
// Step 4) Finially apply the changes determined earlier
if( colZero )
zeroCol( cornerIndex );
if( rowZero )
zeroRow( cornerIndex );
}
// This function returns whether or not the row contains a zero
bool checkRow( int rowIndex ) {
bool zero = false;
for( int i=0; i<n && !zero; ++i ) {
if( m[ rowIndex ][ i ] == 0 )
zero = true;
}
return zero;
}
// This is just a helper function for zeroing a row
void zeroRow( int rowIndex ) {
for( int i=0; i<n; ++i ) {
m[ rowIndex ][ i ] = 0;
}
}
// This function returns whether or not the col contains a zero
bool checkCol( int colIndex ) {
bool zero = false;
for( int i=0; i<n && !zero; ++i ) {
if( m[ i ][ colIndex ] == 0 )
zero = true;
}
return zero;
}
// This is just a helper function for zeroing a col
void zeroCol( int colIndex ) {
for( int i=0; i<n; ++i ) {
m[ i ][ colIndex ] = 0;
}
}
// Just a helper function for printing our matrix to std::out
void printMatrix() {
std::cout << std::endl;
for( int y=0; y<n; ++y ) {
for( int x=0; x<n; ++x ) {
std::cout << m[y][x] << " ";
}
std::cout << std::endl;
}
std::cout << std::endl;
}
// Execute!
int main() {
printMatrix();
processMatrix();
printMatrix();
}
</code></pre>
http://stackoverflow.com/questions/1406375/finding-intersection-points-between-3-spheresComment by Adam on Finding intersection points between 3 spheresAdam2009-09-10T16:49:42Z2009-09-10T16:49:42ZWell I want a C++ algorithm to do this, but I first need to understand the math behind it.
As for the other part of your question, yes, just the surface of the sphere.http://stackoverflow.com/questions/1406375/finding-intersection-points-between-3-spheres/1406415#1406415Comment by Adam on Finding intersection points between 3 spheresAdam2009-09-10T16:48:34Z2009-09-10T16:48:34ZThanks for the reply, I'm looking into this now...http://stackoverflow.com/questions/1168525/c-gcc4-4-warning-array-subscript-is-above-array-boundsComment by Adam on C++ GCC4.4 warning: array subscript is above array boundsAdam2009-07-24T01:18:20Z2009-07-24T01:18:20Z@Andy J Buchanan: Yes I saw that too, instead of "stringSize" I now just use "newLine.size()" right in the loop. Also, I init "insertPos = MAX_LINE_LENGTH - 1" now as well.http://stackoverflow.com/questions/1168525/c-gcc4-4-warning-array-subscript-is-above-array-boundsComment by Adam on C++ GCC4.4 warning: array subscript is above array boundsAdam2009-07-22T22:19:25Z2009-07-22T22:19:25ZIt does not give the line #, the warning i posted there is the exact text from the compiler.http://stackoverflow.com/questions/421860/c-c-capture-characters-from-standard-input-without-waiting-for-enter-to-be-preComment by Adam on C/C++: Capture characters from standard input without waiting for enter to be pressedAdam2009-05-28T04:52:54Z2009-05-28T04:52:54Z@Roddy - I want a function which will always wait for a single keystroke.http://stackoverflow.com/questions/842520/free-c-language-ides/842546#842546Comment by Adam on Free C Language IDEs?Adam2009-05-09T02:47:59Z2009-05-09T02:47:59ZI can't believe Code::Blocks isn't at the top of every one of these IDE topics. It really is the best one besides MS Visual Studio.http://stackoverflow.com/questions/587128/what-exactly-vaend-is-for/587139#587139Comment by Adam on What exactly va_end is for?Adam2009-02-25T18:16:04Z2009-02-25T18:16:04ZNo one is really explaining the nitty gritty of a va_end() implementation, which is, I think, what the question was getting at.http://stackoverflow.com/questions/573557/audible-audio-aa-file-specComment by Adam on Audible Audio (.aa) file spec?Adam2009-02-21T19:45:20Z2009-02-21T19:45:20Zoohh... hhmmmm that sucks...http://stackoverflow.com/questions/97948/what-is-stdpair/573434#573434Comment by Adam on What is std::pair?Adam2009-02-21T17:49:58Z2009-02-21T17:49:58ZI agree with you about the naming convention. Makes maintenance harder.http://stackoverflow.com/questions/17228/what-tools-do-you-use-to-develop-c-applications-on-linux/17256#17256Comment by Adam on What tools do you use to develop C++ applications on Linux?Adam2009-02-20T23:55:57Z2009-02-20T23:55:57ZI think Eclipse is too heavy weight. I love being able to compile a source file with out it HAVING to be in a project. I like that project files are light weight and unintrusive, unlike Eclipse where they are draconian dictators. I do like Eclipse's Source control, but C::B is getting that :)http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/236315#236315Comment by Adam on What is your best programmer joke?Adam2009-02-15T17:16:19Z2009-02-15T17:16:19ZHA ha this is great, wish I could vote twice!http://stackoverflow.com/questions/161053/c-which-is-faster-stack-allocation-or-heap-allocation/163553#163553Comment by Adam on C++ Which is faster: Stack allocation or Heap allocationAdam2009-02-04T23:21:44Z2009-02-04T23:21:44ZMy allocation habits usually pertain to the expected lifetime of an object. How it is intended to be used and such.http://stackoverflow.com/questions/494629/building-boost-for-static-linking-mingw/494647#494647Comment by Adam on Building Boost for static linking (MinGW)Adam2009-01-30T06:23:38Z2009-01-30T06:23:38Zthanks for the reply, what I meant by "I have to have a single file..." is that I must have my executable, and no DLLs shipped with it.http://stackoverflow.com/questions/490720/including-boostfilesystem-produces-linking-errors/490809#490809Comment by Adam on Including boost::filesystem produces linking errorsAdam2009-01-30T01:37:42Z2009-01-30T01:37:42Zgreat, i didn't know this, thanks for the infohttp://stackoverflow.com/questions/490720/including-boostfilesystem-produces-linking-errorsComment by Adam on Including boost::filesystem produces linking errorsAdam2009-01-30T01:37:07Z2009-01-30T01:37:07Zgreat, i didn't know this, thanks for the info