User Andrei Krotkov - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T23:06:41Zhttp://stackoverflow.com/feeds/user/54648http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/441388/most-common-3d-model-format6Most Common 3D Model Format?Andrei Krotkov2009-01-13T23:59:14Z2009-10-19T11:26:44Z
<p>It's been about two years since I last developed games, and I am interested in starting a new project. What is the most common open-source 3D model format? </p>
<p>I am looking for a format that would preferably have a lot of either public domain or open-licensed models existing. Last I checked, MD5 was the most common animated model format, and 3DS was the most common static model format. Is this still true?</p>
<p>On a similar note, are there any free libraries that can be used for that purpose?</p>
http://stackoverflow.com/questions/1089192/c-stl-range-container1C++ STL Range ContainerAndrei Krotkov2009-07-06T20:59:19Z2009-08-26T00:21:53Z
<p>I'm looking for a container that maps from a double to object pointers. However, each key is simply a range of doubles that would correspond to that object.</p>
<p>For example, there could be a key/value pair that's <(0.0 3.0), ptr>, or <(3.5 10.0), ptr2></p>
<p>container[1.0] should return ptr, container[3.0] should also return ptr, and container[-1.0] should be undefined.</p>
<p>Is there any object with similar behaviour by default or will I have to implement it myself?</p>
<p><strong>Edit</strong></p>
<p>Here's the actual code that I've written, it might be easier to debug/offer advice on it. </p>
<pre><code>// Behavior: A range is defined mathematically as (min, max]
class dblRange
{
public:
double min;
double max;
dblRange(double min, double max)
{
this->min = min;
this->max = max;
};
dblRange(double val)
{
this->min = val;
this->max = val;
};
int compare(const dblRange rhs)
{
// 1 if this > rhs
// 0 if this == rhs
//-1 if this < rhs
if (rhs.min == rhs.max && min == max)
{
/*if (min > rhs.min)
return 1;
else if (min == rhs.min)
return 0;
else
return -1;*/
throw "You should not be comparing values like this. :(\n";
}
else if (rhs.max == rhs.min)
{
if (min > rhs.min)
return 1;
else if (min <= rhs.min && max > rhs.min)
return 0;
else // (max <= rhs.min)
return -1;
}
else if (min == max)
{
if (min >= rhs.max)
return 1;
else if (min < rhs.max && min >= rhs.min)
return 0;
else // if (min < rhs.min
return -1;
}
// Check if the two ranges are equal:
if (rhs.min == min && rhs.max == max)
{
return 0;
}
else if (rhs.min < min && rhs.max <= min)
{
// This is what happens if rhs is fully lower than this one.
return 1;
}
else if (rhs.min > min && rhs.min >= max)
{
return -1;
}
else
{
// This means there's an undefined case. Ranges are overlapping,
// so comparisons don't work quite nicely.
throw "Ranges are overlapping weirdly. :(\n";
}
};
int compare(const dblRange rhs) const
{
// 1 if this > rhs
// 0 if this == rhs
//-1 if this < rhs
if (rhs.min == rhs.max && min == max)
{
/*if (min > rhs.min)
return 1;
else if (min == rhs.min)
return 0;
else
return -1;*/
throw "You should not be comparing values like this. :(\n";
}
else if (rhs.max == rhs.min)
{
if (min > rhs.min)
return 1;
else if (min <= rhs.min && max > rhs.min)
return 0;
else // (max <= rhs.min)
return -1;
}
else if (min == max)
{
if (min >= rhs.max)
return 1;
else if (min < rhs.max && min >= rhs.min)
return 0;
else // if (min < rhs.min
return -1;
}
// Check if the two ranges are equal:
if (rhs.min == min && rhs.max == max)
{
return 0;
}
else if (rhs.min < min && rhs.max <= min)
{
// This is what happens if rhs is fully lower than this one.
return 1;
}
else if (rhs.min > min && rhs.min >= max)
{
return -1;
}
else
{
// This means there's an undefined case. Ranges are overlapping,
// so comparisons don't work quite nicely.
throw "Ranges are overlapping weirdly. :(\n";
}
};
bool operator== (const dblRange rhs ) {return (*this).compare(rhs)==0;};
bool operator== (const dblRange rhs ) const {return (*this).compare(rhs)==0;};
bool operator!= (const dblRange rhs ) {return (*this).compare(rhs)!=0;};
bool operator!= (const dblRange rhs ) const {return (*this).compare(rhs)!=0;};
bool operator< (const dblRange rhs ) {return (*this).compare(rhs)<0;};
bool operator< (const dblRange rhs ) const {return (*this).compare(rhs)<0;};
bool operator> (const dblRange rhs ) {return (*this).compare(rhs)>0;};
bool operator> (const dblRange rhs ) const {return (*this).compare(rhs)>0;};
bool operator<= (const dblRange rhs ) {return (*this).compare(rhs)<=0;};
bool operator<= (const dblRange rhs ) const {return (*this).compare(rhs)<=0;};
bool operator>= (const dblRange rhs ) {return (*this).compare(rhs)>=0;};
bool operator>= (const dblRange rhs ) const {return (*this).compare(rhs)>=0;};
};
</code></pre>
<p>Right now I'm having trouble having the map accept a double as a key, even though the comparison operators are defined.</p>
<p>Here's some driving code that I'm using to test if it would work:</p>
<pre><code>std::map<dblRange, int> map;
map[dblRange(0,1)] = 1;
map[dblRange(1,4)] = 2;
map[dblRange(4,5)] = 3;
map[3.0] = 4;
</code></pre>
http://stackoverflow.com/questions/1014472/http-inputstream-class-c0HTTP inputstream class (C++)Andrei Krotkov2009-06-18T18:43:26Z2009-08-10T03:09:46Z
<p>I'm currently working on a project that does a lot of HTTP requests for data that it needs. It works by writing all the data into a buffer, then returning that buffer to the caller. It seems that waiting for the entire file to download data that can essentially streamed is a bad idea.</p>
<p>Question 1: Is there already a library / public code that can make HTTP and Authenticated HTTP requests that works as a stream?</p>
<p>Question 2: If there is no such library, why not? Is there a reason such a thing was never needed?</p>
http://stackoverflow.com/questions/1189891/opengl-selection-with-alpha-test0Opengl Selection with Alpha TestAndrei Krotkov2009-07-27T18:43:28Z2009-07-28T13:29:40Z
<p>From what I've been seeing around the internet, this problem can't really be solved with my approach.</p>
<p>I am currently writing a program that uses a selection buffer pass over all the objects in the scene. However, one of the objects is a texture in which a large part of it has alpha 0. It works fine when rendering, the alpha values are not displayed, but when in selection mode, the alpha test is skipped, and hovering the mouse over the transparent areas selects the object instead of whatever is behind it.</p>
<p>Is there any way to enable alpha testing in selection mode? </p>
http://stackoverflow.com/questions/1180849/signed-angle-in-3d-vectors1Signed Angle in 3D VectorsAndrei Krotkov2009-07-25T01:00:38Z2009-07-25T03:09:42Z
<p>This is a purely math question, I believe.</p>
<p>I have a camera object in an arbitrary coordinate system. I have the direction vector of the camera, and I have a vector that points in the direction of north along the surface of the sphere.</p>
<p>I wish to calculate the angle of the camera in regards to the north vector. Is there a simple way to calculate the final sign of the angle? I'm aware than angle = acos(dir dot north), but when I implement it, the angle is clamped to [0,180] degrees. Is there a way to figure out whether the camera is painting eastward or not?</p>
http://stackoverflow.com/questions/999056/ethics-of-robots-txt/999073#999073-4Answer by Andrei Krotkov for Ethics of Robots.txtAndrei Krotkov2009-06-16T00:08:38Z2009-06-16T00:08:38Z<p>If people make it available to public access, they shouldn't try to put limits on it. Adding a robots.txt file to your site is the equivalent to putting a sign on your lawn that says "Please don't look at me."</p>
http://stackoverflow.com/questions/980007/opengl-fastest-way-to-draw-a-mixture-of-triangles-and-quads/988739#9887392Answer by Andrei Krotkov for OpenGL: Fastest way to draw a mixture of triangles and quads?Andrei Krotkov2009-06-12T19:56:30Z2009-06-12T19:56:30Z<p>You can always convert them all to triangles, quite easily, too.</p>
<p>Basically the pseudocode would look something like this:</p>
<pre><code>glBegin(GL_TRIANGLES);
for each (object *a in objectList)
if (a->type == TRIANGLE)
glVertex3fv(a->vertices);
if (a->type == QUAD)
{
glVertex3f(a->vertices[0]);
glVertex3f(a->vertices[1]);
glVertex3f(a->vertices[2]);
glVertex3f(a->vertices[2]);
glVertex3f(a->vertices[1]);
glVertex3f(a->vertices[3]);
}
glEnd();
</code></pre>
<p>You'd have to be careful about keeping them oriented the same way (clockwise or counterclockwise), but it should work!</p>
http://stackoverflow.com/questions/966605/program-deployment-failing0Program Deployment FailingAndrei Krotkov2009-06-08T19:42:44Z2009-06-09T08:08:03Z
<p>The project my team has been working on has reached a point where we need to deploy it to computers without the development environment (Visual Studio 2005) installed on them. We fixed the dependency issues we had at first, but we're still having issues.</p>
<p>Now, once the installer is finished, our project gets stuck somewhere before entering WinMain. It only takes up 13MB of RAM, but takes up 50% of the cpu cycles.</p>
<p>Are there any suggestions as to how debug this problem?</p>
<p>Edit: Clarification - this is a C++ project.</p>
http://stackoverflow.com/questions/949064/cheating-in-online-games-is-it-possible-to-prevent-one-win32-process-from-inspec/953864#9538642Answer by Andrei Krotkov for Cheating in online games: Is it possible to prevent one Win32 process from inspecting/manipulating another's memory?Andrei Krotkov2009-06-05T01:19:22Z2009-06-05T01:19:22Z<p>The game Runescape - a browser-based MMO - was fighting a (losing) battle against botters for the longest time. Their first attempt was a CAPTCHA that would have to be entered every few minutes while playing. Their second attempt was various graphical tests that would have to be passed by the player. Their last attempt was teleporting the player from what they are doing every once in a while, and forcing them to solve a puzzle. </p>
<p>Each of those worked for a small while, but eventually every one was cracked and was solvable by a machine.</p>
http://stackoverflow.com/questions/939874/is-there-a-java-library-with-3d-spline-functions/939896#9398960Answer by Andrei Krotkov for Is there a Java library with 3D spline functions?Andrei Krotkov2009-06-02T14:31:00Z2009-06-02T14:31:00Z<p>There's no built-in library that I'm aware of. <a href="http://www.mail-archive.com/java3d-interest@java.sun.com/msg13136.html" rel="nofollow">Source</a></p>
http://stackoverflow.com/questions/936320/assignments-failing-vc-20051Assignments Failing (VC++ 2005)Andrei Krotkov2009-06-01T19:23:27Z2009-06-01T19:43:30Z
<p>I'm debugging a part of a large project in Visual Studio 2005, and stepping through the code line by line. </p>
<pre><code>int speed = this->values.speed;
int ref = this->values.ref_speed;
</code></pre>
<p>After stepping past the first line, values.speed has a value of 61, but for some reason, speed is getting assigned the value 58. After the second line, values.ref_speed has a value of 58, but ref gets assigned the value 30.</p>
<p>When paused, you can see that the original values are in fact 61 and 58 respectively, but the values getting stored are different.</p>
<p>Is there <em>anything</em> that can cause this type of behaviour?</p>
http://stackoverflow.com/questions/934049/infinite-canvas-within-opengl/935319#9353190Answer by Andrei Krotkov for 'infinite' canvas within openglAndrei Krotkov2009-06-01T15:32:29Z2009-06-01T15:32:29Z<p>Shrinking the canvas like you suggest would not be helpful to artists. Frequently they expand the area they're working just to have area to work with. There's also spritesheets which have blank area around the models that are required to work in the target program.</p>
<p>My suggestion is to grow as needed, but allow the artists to tweak the sizes manually when they wish to do it.</p>
http://stackoverflow.com/questions/924418/real-time-process-communication-in-game-development/924643#9246431Answer by Andrei Krotkov for Real time process communication in game developmentAndrei Krotkov2009-05-29T06:19:38Z2009-05-29T06:19:38Z<p>Typically the rendering thread is the only one to ever draw things to the screen. However, since threads can communicate, it's possible for say the scripting thread to tell the rendering thread "Hey, I want to draw a box next frame." </p>
<p>The way our project handles thread communication is in one of two ways. For something that is dynamically edited - lists of objects, moving vehicles, et cetera, we create a mutex that locks the data when it is being changed. If the renderer wants to draw it, but the update thread is deleting that object, the renderer will have to wait. For other things, like the ui, we just have global flags that are written by the ui thread, and read by the renderer, so no mutex is required.</p>
http://stackoverflow.com/questions/922368/removing-map-element-by-value0Removing map element by valueAndrei Krotkov2009-05-28T18:05:41Z2009-05-28T18:40:38Z
<p>I'll keep this brief.</p>
<p>I am trying to keep a map between strings and object pointers, and as such, I use std::map. I have a manager that's a global class that keeps track of the map, and whenever an object's destructor is called, it tells the manager that it has been deleted.</p>
<p>The only way I can think of is to search through the map for the object. Is there an efficient STL solution to this problem? Does a map that is efficient at searching by key as well exist?</p>
http://stackoverflow.com/questions/880569/help-with-velocity-vectors/890761#8907611Answer by Andrei Krotkov for Help with velocity vectorsAndrei Krotkov2009-05-20T23:40:02Z2009-05-20T23:40:02Z<p>The difference between (233,188) and (294,55) is not that much, in the grand scheme of things. To verify your code is working, try a vector such as (200,-200). That will cause it to actually bounce off the point in the y-direction.</p>
<p>If that code works, then it's just your values that aren't working.</p>
http://stackoverflow.com/questions/875686/advice-for-c-gui-programming/875694#8756942Answer by Andrei Krotkov for Advice for C++ GUI programming.Andrei Krotkov2009-05-17T22:59:25Z2009-05-17T22:59:25Z<p>Well, for the Windows GUI, get used to referencing the MSDN a lot, assuming you want to deal with the API directly. </p>
<p>My favorite resource for learning the basics was <a href="http://www.winprog.org/tutorial/" rel="nofollow">theForger's tutorial</a>, but there are hundreds of books and other sites out there.</p>
http://stackoverflow.com/questions/873984/how-to-save-the-frame-buffer-and-then-retrieve-it-back/874045#8740450Answer by Andrei Krotkov for How to save the frame buffer and then retrieve it back..Andrei Krotkov2009-05-17T06:56:17Z2009-05-17T06:56:17Z<p>If you wish to save all your objects to a file and load them back in, I do not believe you should be using OpenGL to do so. Once you send objects into OpenGL, you frequently don't modify them again. If you are writing some kind of application to draw many objects on screen, it would be easiest to just keep track of the objects yourself.</p>
<p>If you are looking to retrieve the final image, you can either use glReadPixels - to get the raw pixel data, or glCopyTexImage2D - to save what is on the screen into a texture for further use within OpenGL.</p>
http://stackoverflow.com/questions/870695/c-pointer-names/870707#8707070Answer by Andrei Krotkov for C++ pointer namesAndrei Krotkov2009-05-15T20:23:57Z2009-05-15T20:23:57Z<p>Well pointers are most often used for things that are allocated dynamically, and/or functions. </p>
<p>In the case of dynamic allocation, you can just precede it with ptr, if you're insistent on using this notation. In the case of functions, fun works just as well.</p>
http://stackoverflow.com/questions/812475/lightweight-cross-platform-input-library2Lightweight, cross-platform input libraryAndrei Krotkov2009-05-01T17:59:53Z2009-05-12T23:10:53Z
<p>I'm trying to write a game with support for Joypads as well as mouse/keyboard. I've tried finding information about that, but it's either outdated or not portable enough.</p>
<p>Does anybody know of any good, lightweight libraries that can abstract Joypad reading? I want to use the 360 controller, but I would like support for more than that.</p>
<p>I'm primarily going to be writing on Windows, but I really don't want to use DirectInput/XInput, in case I ever wish to port my code.</p>
http://stackoverflow.com/questions/837203/using-hash-maps-to-represent-an-extremely-large-data-source1Using Hash Maps to represent an extremely large data sourceAndrei Krotkov2009-05-07T21:46:12Z2009-05-08T13:48:19Z
<p>I have a very large possible data set that I am trying to visualize at once. The set itself consists of hundreds of thousands of segments, each of which is mapped to an id.</p>
<p>I have received a second data source that gives more real-time information for each segment, but the id's do not correspond to the id's I have. </p>
<p>I have a 1:1 mapping of the data id's (9-character strings) to the current id's (long integers). The problem is that there are a lot of id's, and the data that is coming in is in no specific order.</p>
<p>The solution I came up with is to have a hash-map that maps the strings to the road id's. The problem is that I don't know if the hash-map will be efficient enough to have all 166k data entries.</p>
<p>Does anyone have any suggestions and/or hashing algorithms that I can use for this?</p>
http://stackoverflow.com/questions/836493/cheaper-alternative-to-fogbugz/836522#8365221Answer by Andrei Krotkov for Cheaper alternative to FogBugzAndrei Krotkov2009-05-07T19:22:29Z2009-05-07T19:22:29Z<p>Not sure how well it works, but I saw <a href="http://ifdefined.com/bugtrackernet.html" rel="nofollow">Bugtracker.NET</a> when looking for alternatives. </p>
<p>My own workplace uses <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a> for this, so you have two alternatives.</p>
http://stackoverflow.com/questions/827774/refactoring-of-a-large-c-function/827796#8277960Answer by Andrei Krotkov for Refactoring of a large C++ functionAndrei Krotkov2009-05-06T02:38:15Z2009-05-06T02:38:15Z<p>I know <a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a> emphasizes refactoring as a feature. There's a listing of all the useful features on <a href="http://www.ibm.com/developerworks/library/os-ecref/" rel="nofollow">IBM's website</a>, but particularly the "new method from selection" tool seems applicable in your case.</p>
http://stackoverflow.com/questions/826000/how-do-i-save-export-an-opengl-surface-into-quicktime-in-cocoa-objective-c/826489#8264890Answer by Andrei Krotkov for How do I save/export an OpenGL surface into Quicktime in Cocoa/Objective C?Andrei Krotkov2009-05-05T19:18:37Z2009-05-05T19:18:37Z<p>I don't believe Cocoa supports rendering to QuickTime video directly, and I know for a fact that OpenGL itself does not.</p>
<p>From what I found, Apple recommends you use Quartz Composer for rendering. Here's <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/CocoaDrawingGuide/QuartzOpenGL/QuartzOpenGL.html#//apple%5Fref/doc/uid/TP40003290-CH211-SW11" rel="nofollow">a link</a> to a breakdown.</p>
http://stackoverflow.com/questions/812475/lightweight-cross-platform-input-library/822254#8222540Answer by Andrei Krotkov for Lightweight, cross-platform input libraryAndrei Krotkov2009-05-04T21:51:30Z2009-05-04T21:51:30Z<p>I wanted to accept the answer given, but unfortunately it's not exactly correct.</p>
<p><a href="http://www.talula.demon.co.uk/allegro/" rel="nofollow">Allegro</a> is a great library that I found after that post.</p>
<p>GarageGames and XNA, however, were exactly the types of libraries that I wanted to avoid.</p>
http://stackoverflow.com/questions/822182/what-is-the-most-random-function-in-c/822196#822196-1Answer by Andrei Krotkov for What is the most random function in C++?Andrei Krotkov2009-05-04T21:40:00Z2009-05-04T21:49:39Z<p>Time is usually the most random operation that is also cheap to perform, but it's still possible to predict. </p>
<p>If you want true randomness, using some kind of external input is your only solution. </p>
<p><a href="http://random.irb.hr/" rel="nofollow">Quantum Random Bit Generator</a> is one service that provides such data.</p>
http://stackoverflow.com/questions/822155/is-there-a-better-way-than-string-replace-to-remove-backspaces-from-a-string/822208#8222085Answer by Andrei Krotkov for Is there a better way than String.Replace to remove backspaces from a string?Andrei Krotkov2009-05-04T21:41:44Z2009-05-04T21:41:44Z<p>The way I would do it is low-tech, but easy to understand.</p>
<p>Create a stack of characters. Then iterate through the string from beginning to end. If the character is a normal character (non-slash), push it onto the stack. If it is a slash, and the next character is a 'b', pop the top of the stack. If the stack is empty, ignore it.</p>
<p>At the end, pop each character in turn, add it to a StringBuilder, and reverse the result.</p>
http://stackoverflow.com/questions/822150/modify-a-txt-file-in-java/822166#8221665Answer by Andrei Krotkov for Modify a .txt file in JavaAndrei Krotkov2009-05-04T21:33:13Z2009-05-04T21:33:13Z<p>I haven't done this in Java recently, but writing an entire file into memory seems like a bad idea.</p>
<p>The best idea that I can come up with is open a temporary file in writing mode at the same time, and for each line, read it, modify if necessary, then write into the temporary file. At the end, delete the original and rename the temporary file.</p>
<p>If you have modify permissions on the file system, you probably also have deleting and renaming permissions.</p>
http://stackoverflow.com/questions/821924/guides-on-3d-programming-concepts/822127#8221270Answer by Andrei Krotkov for Guides on 3D Programming Concepts?Andrei Krotkov2009-05-04T21:22:25Z2009-05-04T21:22:25Z<p><a href="http://www.opengl.org/documentation/red%5Fbook/" rel="nofollow">The Red Book</a> - it's pretty much the one source that teaches everything (beginner-intermediate) that you need to know about OpenGL. Those concepts can be moved to any other 3D library pretty easily. And this has a free online version, too!</p>
http://stackoverflow.com/questions/822092/what-are-good-on-line-communities-for-finding-experienced-net-developers/822114#8221142Answer by Andrei Krotkov for What are good on-line communities for finding experienced .NET developers?Andrei Krotkov2009-05-04T21:18:02Z2009-05-04T21:18:02Z<p>Not sure how popular it is, but there's a job listing search on The Daily WTF - <a href="http://jobs.thedailywtf.com/" rel="nofollow">http://jobs.thedailywtf.com/</a>. I'd assume that people reading that blog would likely be the more experienced ones, and you can still weed out the ones that aren't.</p>
http://stackoverflow.com/questions/822062/does-there-exist-a-communication-tool-thatd-be-better-suited-for-programming-rel/822075#8220751Answer by Andrei Krotkov for Does there exist a communication tool that'd be better suited for programming-related discussion?Andrei Krotkov2009-05-04T21:09:54Z2009-05-04T21:09:54Z<p>What you're looking for is a community of people to talk to, not a tool. If people wish to discuss what they love, they will - no matter what tool they're forced to use to do it.</p>
http://stackoverflow.com/questions/1189891/opengl-selection-with-alpha-test/1190127#1190127Comment by Andrei Krotkov on Opengl Selection with Alpha TestAndrei Krotkov2009-07-27T19:35:06Z2009-07-27T19:35:06ZHow does this help? I don't want to figure out what's in the buffer, I just want the picking code to not return anything if it's a blank area that's under the mouse.http://stackoverflow.com/questions/1180849/signed-angle-in-3d-vectors/1180869#1180869Comment by Andrei Krotkov on Signed Angle in 3D VectorsAndrei Krotkov2009-07-25T01:15:56Z2009-07-25T01:15:56Z(The up-vector is arbitrary as well)http://stackoverflow.com/questions/1180849/signed-angle-in-3d-vectors/1180869#1180869Comment by Andrei Krotkov on Signed Angle in 3D VectorsAndrei Krotkov2009-07-25T01:11:47Z2009-07-25T01:11:47ZI wish it were that simple. It's an <i>arbitrary</i> coordinate system for a reason. The camera is oriented on a giant sphere, and all I can assume is that the both the direction and the north vector are unit vectors.http://stackoverflow.com/questions/1089192/c-stl-range-container/1089554#1089554Comment by Andrei Krotkov on C++ STL Range ContainerAndrei Krotkov2009-07-06T23:30:51Z2009-07-06T23:30:51ZVery elegant answer!http://stackoverflow.com/questions/1089192/c-stl-range-containerComment by Andrei Krotkov on C++ STL Range ContainerAndrei Krotkov2009-07-06T23:09:48Z2009-07-06T23:09:48ZThanks, dribeas. Comparing as references is a good point. Floating points are loaded from a file in this case, and are never explicitly calculated, so == should be fine. I personally prefer assignments over initialization lists, and debugging is taken care of by the IDE.http://stackoverflow.com/questions/1089192/c-stl-range-containerComment by Andrei Krotkov on C++ STL Range ContainerAndrei Krotkov2009-07-06T22:40:15Z2009-07-06T22:40:15ZI believe my code works correctly now - can anyone verify?http://stackoverflow.com/questions/1089192/c-stl-range-containerComment by Andrei Krotkov on C++ STL Range ContainerAndrei Krotkov2009-07-06T22:36:03Z2009-07-06T22:36:03ZI have two sets, but rather than duplicate code here, I chose one of them.http://stackoverflow.com/questions/1089192/c-stl-range-container/1089463#1089463Comment by Andrei Krotkov on C++ STL Range ContainerAndrei Krotkov2009-07-06T22:21:41Z2009-07-06T22:21:41ZI considered this approach, but I'd like to make a much more intuitive approach, as seen by my driving code. If I can get that to work correctly, I'd prefer it.http://stackoverflow.com/questions/1089192/c-stl-range-container/1089206#1089206Comment by Andrei Krotkov on C++ STL Range ContainerAndrei Krotkov2009-07-06T22:13:50Z2009-07-06T22:13:50ZI've posted the code as an edit instead of an answer.http://stackoverflow.com/questions/1089192/c-stl-range-container/1089401#1089401Comment by Andrei Krotkov on C++ STL Range ContainerAndrei Krotkov2009-07-06T22:12:44Z2009-07-06T22:12:44ZAh, that's how you're supposed to do it.http://stackoverflow.com/questions/1089192/c-stl-range-container/1089206#1089206Comment by Andrei Krotkov on C++ STL Range ContainerAndrei Krotkov2009-07-06T21:56:18Z2009-07-06T21:56:18ZVery good point. Is there a way to force the program to use the comparison against double instead of having a special case of min==max?http://stackoverflow.com/questions/1089192/c-stl-range-container/1089206#1089206Comment by Andrei Krotkov on C++ STL Range ContainerAndrei Krotkov2009-07-06T21:48:02Z2009-07-06T21:48:02ZThat's clever. I was trying to compare against a double, but it didn't seem to want to work.http://stackoverflow.com/questions/1089192/c-stl-range-container/1089206#1089206Comment by Andrei Krotkov on C++ STL Range ContainerAndrei Krotkov2009-07-06T21:24:05Z2009-07-06T21:24:05ZHow would you access the map based on a single double then?http://stackoverflow.com/questions/1089192/c-stl-range-container/1089206#1089206Comment by Andrei Krotkov on C++ STL Range ContainerAndrei Krotkov2009-07-06T21:04:08Z2009-07-06T21:04:08ZSo, more specifically, what would each comparison mean? Would operator== with a single double check whether the double is in the range?http://stackoverflow.com/questions/1021021/c-element-beyond-the-end-of-an-array/1021030#1021030Comment by Andrei Krotkov on C - element beyond the end of an arrayAndrei Krotkov2009-06-20T06:07:13Z2009-06-20T06:07:13ZWell, just reading from the memory location is unlikely to format your hard drive or cause demons to fly out of your nose. Writing to it, however...