User mstrobl - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:22:03Z http://stackoverflow.com/feeds/user/25965 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/435627/how-to-correctly-benchmark-a-templated-c-program/435699#435699 1 Answer by mstrobl for How to correctly benchmark a [templated] C++ program mstrobl 2009-01-12T15:10:03Z 2009-01-12T15:10:03Z <p>Compilers are only allowed to eliminate code-branches that can not happen. As long as it cannot rule out that a branch should be executed, it will not eliminate it. As long as there is some data dependency somewhere, the code will be there and will be run. Compilers are not too smart about estimating which aspects of a program will not be run and don't try to, because that's a NP problem and hardly computable. They have some simple checks such as for <code>if (0)</code>, but that's about it.</p> <p>My humble opinion is that you were possibly hit by some other problem earlier on, such as the way C/C++ evaluates boolean expressions.</p> <p>But anyways, since this is about a test of speed, you can check that things get called for yourself - run it once without, then another time with a test of return values. Or a static variable being incremented. At the end of the test, print out the number generated. The results will be equal.</p> <p>To answer your question about in-vitro testing: Yes, do that. If your app is so time-critical, do that. On the other hand, your description hints at a different problem: if your deltas are in a timeframe of 1e-3 seconds, then that sounds like a problem of computational complexity, since the method in question must be called very, very often (for few runs, 1e-3 seconds is neglectible).</p> <p>The problem domain you are modeling sounds VERY complex and the datasets are probably huge. Such things are always an interesting effort. Make sure that you absolutely have the right data structures and algorithms first, though, and micro-optimize all you want after that. <strong>So, I'd say look at the whole context first.</strong> ;-)</p> <p>Out of curiosity, what is the problem you are calculating?</p> http://stackoverflow.com/questions/428274/displaying-pdfs-within-a-desktop-app/428330#428330 0 Answer by mstrobl for Displaying PDFs within a desktop app mstrobl 2009-01-09T14:51:23Z 2009-01-09T14:51:23Z <p>Replicating full PDF rendering is very probably too complicated to be worthwhile. IIRC the PDF spec has had things like 3D rendering in it since Adobe Reader version 7. Adobe is supplying a PDF toolkit that does what you want, but that requires COM interaction with the reader. </p> <p>You might be able to supply it with your application though, have a look at the EULA. <a href="http://www.adobe.com/devnet/pdf/library/" rel="nofollow">Have a look at the kit</a>. At the <a href="http://www.adobe.com/devnet/acrobat/" rel="nofollow">developer center</a> you should easily be able to find out if it meets your needs.</p> http://stackoverflow.com/questions/426133/recommended-opengl-debuggers-for-windows/428221#428221 0 Answer by mstrobl for Recommended OpenGL debuggers for Windows? mstrobl 2009-01-09T14:28:35Z 2009-01-09T14:41:54Z <p>Not a debugger per se, but I have found this useful: OpenGL output can be flushed using <code>glFlush()</code>. Very handy if you are debugging some more complicated algorithms that can be visualized or that operate on visual data sets.</p> <p>I.e. if you had an algorithm operate on pairs of faces you could just draw a line between their centers. Helps me to visualize the problem domain sometimes. :-)</p> http://stackoverflow.com/questions/428183/is-this-control-of-flow-structure-good-practice/428245#428245 0 Answer by mstrobl for Is this control of flow structure good practice? mstrobl 2009-01-09T14:34:31Z 2009-01-09T14:34:31Z <p>I know I'll probably duplicate a few posts: What's wrong with <code>else</code>? You could also use lazy evaluation (<code>a() &amp;&amp; b()</code>) to link methods - but that relies on status being given as return value, which is more readable anyhow IMHO.</p> <p>I don't agree with posters that you should raise an exception, because exceptions should be raised if program faults occur or the program enters an exceptional state because of operations. Exceptions are not business logic.</p> http://stackoverflow.com/questions/402541/customizable-player-avatar-in-a-2d-game/402554#402554 1 Answer by mstrobl for Customizable player avatar in a 2D Game mstrobl 2008-12-31T08:45:14Z 2008-12-31T12:49:40Z <p>3D will not be necessary for this, but the painter algorithm that is common in the 3D world might IMHO save you some work:</p> <p>The painter algorithm works by drawing the most distant objects first, then overdrawing with objects closer to the camera. In your case, it would boild down to generating the buffer for your sprite, drawing it onto the buffer, finding the next dependant sprite-part (i.e. armour or whatnot), drawing that, finding the next dependant sprite-part (i.e. a special sign that's on the armour), and so on. When there are no more dependant parts, you paint the full generated sprite on to the display the user sees.</p> <p>The combinated parts should have an alpha channel (RGBA instead of RGB) so that you will only combine parts that have an alpha value set to a value of your choice. If you cannot do that for whatever reason, just stick with one RGB combination that you will treat as transparent.</p> <p>Using 3D might make combining the parts easier for you, and you'd not even have to use an offscreen buffer or write the pixel combinating code. The flip-side is that you need to learn a little 3D if you don't know it already. :-) </p> <p><strong>Edit to answer comment:</strong></p> <p>The combination part would work somewhat like this (in C++, Java will be pretty similar - please note that I did not run the code below through a compiler):</p> <pre><code>// // @param dependant_textures is a vector of textures where // texture n+1 depends on texture n. // @param combimed_tex is the output of all textures combined void Sprite::combineTextures (vector&lt;Texture&gt; const&amp; dependant_textures, Texture&amp; combined_tex) { vector&lt; Texture &gt;::iterator iter = dependant_textures.begin(); combined_tex = *iter; if (dependant_textures.size() &gt; 1) for (iter++; iter != dependant_textures.end(); iter++) { Texture&amp; current_tex = *iter; // Go through each pixel, painting: for (unsigned char pixel_index = 0; pixel_index &lt; current_tex.numPixels(); pixel_index++) { // Assuming that Texture had a method to export the raw pixel data // as an array of chars - to illustrate, check Alpha value: int const BYTESPERPIXEL = 4; // RGBA if (!current_tex.getRawData()[pixel_index * BYTESPERPIXEL + 3]) for (int copied_bytes = 0; copied_bytes &lt; 3; copied_bytes++) { int index = pixel_index * BYTESPERPIXEL + copied_bytes; combined_tex.getRawData()[index] = current_tex.getRawData()[index]; } } } } </code></pre> <p>To answer your question for a 3D solution, you would simply draw rectangles with their respective textures (that would have an alpha channel) over each other. You would set the system up to display in an orthogonal mode (for OpenGL: <code>gluOrtho2D()</code>).</p> http://stackoverflow.com/questions/402541/customizable-player-avatar-in-a-2d-game/402687#402687 0 Answer by mstrobl for Customizable player avatar in a 2D Game mstrobl 2008-12-31T10:33:31Z 2008-12-31T10:38:45Z <p>Since I was asked in comments to supply a 3D way aswell, here is some, that is an excerpt of some code I wrote quite some time ago. It's OpenGL and C++. </p> <p>Each sprite would be asked to draw itself. Using the Adapter pattern, I would combine sprites - i.e. there would be sprites that would hold two or more sprites that had a (0,0) relative position and one sprite with a real position having all those "sub-"sprites.</p> <pre><code>void Sprite::display (void) const { glBindTexture(GL_TEXTURE_2D, tex_id_); Display::drawTranspRect(model_-&gt;getPosition().x + draw_dimensions_[0] / 2.0f, model_-&gt;getPosition().y + draw_dimensions_[1] / 2.0f, draw_dimensions_[0] / 2.0f, draw_dimensions_[1] / 2.0f); } void Display::drawTranspRect (float x, float y, float x_len, float y_len) { glPushMatrix(); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glColor4f(1.0, 1.0, 1.0, 1.0); glBegin(GL_QUADS); glTexCoord2f(0.0f, 0.0f); glVertex3f(x - x_len, y - y_len, Z); glTexCoord2f(1.0f, 0.0f); glVertex3f(x + x_len, y - y_len, Z); glTexCoord2f(1.0f, 1.0f); glVertex3f(x + x_len, y + y_len, Z); glTexCoord2f(0.0f, 1.0f); glVertex3f(x - x_len, y + y_len, Z); glEnd(); glDisable(GL_BLEND); glPopMatrix(); } </code></pre> <p>The <code>tex_id_</code> is an integral value that identifies which texture is used to OpenGL. The relevant parts of the texture manager are these. The texture manager actually emulates an alpha channel by checking to see if the color read is pure white (RGB of (ff,ff,ff)) - the loadFile code operates on 24 bits per pixel BMP files:</p> <pre><code>TextureManager::texture_id TextureManager::createNewTexture (Texture const&amp; tex) { texture_id id; glGenTextures(1, &amp;id); glBindTexture(GL_TEXTURE_2D, id); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexImage2D(GL_TEXTURE_2D, 0, 4, tex.width_, tex.height_, 0, GL_BGRA_EXT, GL_UNSIGNED_BYTE, tex.texture_); return id; } void TextureManager::loadImage (FILE* f, Texture&amp; dest) const { fseek(f, 18, SEEK_SET); signed int compression_method; unsigned int const HEADER_SIZE = 54; fread(&amp;dest.width_, sizeof(unsigned int), 1, f); fread(&amp;dest.height_, sizeof(unsigned int), 1, f); fseek(f, 28, SEEK_SET); fread(&amp;dest.bpp_, sizeof (unsigned short), 1, f); fseek(f, 30, SEEK_SET); fread(&amp;compression_method, sizeof(unsigned int), 1, f); // We add 4 channels, because we will manually set an alpha channel // for the color white. dest.size_ = dest.width_ * dest.height_ * dest.bpp_/8 * 4; dest.texture_ = new unsigned char[dest.size_]; unsigned char* buffer = new unsigned char[3 * dest.size_ / 4]; // Slurp in whole file and replace all white colors with green // values and an alpha value of 0: fseek(f, HEADER_SIZE, SEEK_SET); fread (buffer, sizeof(unsigned char), 3 * dest.size_ / 4, f); for (unsigned int count = 0; count &lt; dest.width_ * dest.height_; count++) { dest.texture_[0+count*4] = buffer[0+count*3]; dest.texture_[1+count*4] = buffer[1+count*3]; dest.texture_[2+count*4] = buffer[2+count*3]; dest.texture_[3+count*4] = 0xff; if (dest.texture_[0+count*4] == 0xff &amp;&amp; dest.texture_[1+count*4] == 0xff &amp;&amp; dest.texture_[2+count*4] == 0xff) { dest.texture_[0+count*4] = 0x00; dest.texture_[1+count*4] = 0xff; dest.texture_[2+count*4] = 0x00; dest.texture_[3+count*4] = 0x00; dest.uses_alpha_ = true; } } delete[] buffer; } </code></pre> <p>This was actually a small Jump'nRun that I developed occasionally in my spare time. It used gluOrtho2D() mode aswell, btw. If you leave means to contact you, I will send you the source if you want.</p> http://stackoverflow.com/questions/307410/are-you-using-openbsd-for-anything-other-than-a-firewall-or-router/397856#397856 1 Answer by mstrobl for Are you using OpenBSD for anything other than a firewall or router? mstrobl 2008-12-29T15:01:47Z 2008-12-29T15:01:47Z <p>I used it to serve webpages and a database to other hosts. For some time in the past (but about two years ago), I used it as a development system on a laptop.</p> <p>I did that, because at that time, I mainly developed in emacs and any windowing system would do. :-)</p> <p>OpenBSD is a lovely system to tinker with. It's BSD, it has ports, it's small and the installation procedure was so simple that it was a joy. Oh, and it's rather secure and drives technology in some interesting fields (at that time, pf was such a clean solution and iirc came from OpenBSD).</p> http://stackoverflow.com/questions/397418/when-to-use-a-scripting-language/397463#397463 1 Answer by mstrobl for When to use a scripting language? mstrobl 2008-12-29T10:35:48Z 2008-12-29T10:35:48Z <p>I find scripting languages very useful obviously when there's a specific task that fits the language's strengths (i.e. string processing with perl, web development with ruby, or whatnot). In particular with web-development scripting languages have the property of showing you results of code changes faster.</p> <p>There are some cases where you mix compiled languages with scripted languages - like in some games. It's useful to do that when you can express a smaller amount of behaviour faster, cleaner and simpler in a scripting language than in the compiled language. C++, for example, is a very expressive language - but it's development costs are higher than, say, lua.</p> http://stackoverflow.com/questions/394908/packet-data-structure/394922#394922 2 Answer by mstrobl for Packet data structure? mstrobl 2008-12-27T11:37:42Z 2008-12-27T11:37:42Z <p>Passing the total packet length is a good idea. It might cost two more bytes, but you can peek and wait for the socket to have a full packet ready to sip before receiving. That makes code easier.</p> <p>Overall, I agree with brazzy, a language supplied serialization mechanism is preferrable over any self-made.</p> <p>Other than that (I think you are using a C-ish language without serialization), I would put the packet ID as the first data on the packet data structure. IMHO that's some sort of convention because the first data member of a struct is always at position 0 and any struct can be downcast to that, identifying otherwise anonymous data. </p> <p>Your compiler may or may not produce packed structures, but that way you can allocate a buffer, read the packet in and then either cast the structure depending on the first data member. If you are out of luck and it does not produce packed structures, be sure to have a serialization method for each struct that will construct from the (obviously non-destination) memory.</p> <p>Endiannes is a factor, particularly on C-like languages. Be sure to make clear that packets are of the same endianness always or that you can identify a different endian based on a signature or something. An odd thing that's very cool: C# and .NET seems to always hold data in little-endian convention when you access them using like discussed in this post here. Found that out when porting such an application to Mono on a SUN. Cool, but if you have that setup you should use the serialization means of C# anyways.</p> <p>Other than that, your setup looks very okay!</p> http://stackoverflow.com/questions/393946/what-would-be-the-best-programming-guideline-tip/393958#393958 2 Answer by mstrobl for What would be the best programming guideline/tip mstrobl 2008-12-26T16:37:59Z 2008-12-26T16:37:59Z <p>hmm... without going into anything language specific, I can only think about these few generally sound principles about the process of programming:</p> <ul> <li>always write code with the #1 goal that it can be read easily.</li> <li>fix bugs before adding further behaviour to programs.</li> <li>premature optimization is the root of all evil (Knuth).</li> </ul> http://stackoverflow.com/questions/393885/neatest-fastest-algorithm-for-smallest-positive-number/393923#393923 2 Answer by mstrobl for Neatest / Fastest Algorithm for Smallest Positive Number mstrobl 2008-12-26T16:02:55Z 2008-12-26T16:02:55Z <p>Might get me modded down, but just for kicks, here is the result without any comparisons, because comparisons are for whimps. :-)</p> <pre><code>bool lowestPositive(int u, int v, int&amp; result) { result = (u + v - abs(u - v))/2; return (bool) result - (u + v + abs(u - v)) / 2; } </code></pre> <p>Note: Fails if (u + v) > max_int. At least one number must be positive for the return code to be correct. Also kudos to polythinker's solution :)</p> http://stackoverflow.com/questions/393675/using-return-statements-to-great-effect/393693#393693 3 Answer by mstrobl for Using return statements to great effect! mstrobl 2008-12-26T11:22:35Z 2008-12-26T11:28:35Z <p>In my humble opinion, there are three kinds of return-cases that you should take into consideration:</p> <h2>Object property manipulation</h2> <p>The first is the manipulation of object properties. The pattern you describe here is very often used when manipulating objects. A very typical scenario is using it together with a factory. Consider this hypothetical creation call:</p> <pre><code>// When the object has manipulative methods: Pizza p = PizzaFactory().create().addAnchovies().addTomatoes(); // When the factory has manipulative methods working on the // object, IMHO more elegant from a semantic point of view: Pizza p = PizzaFactory().create().addAnchovies().addTomatoes().getPizza(); </code></pre> <p>It allows for a quick grasp at what exactly is being created or how an object is manipulated, because the methods form one human-readable expression. It's definitely nice, but don't overuse. A rule of thumb is that this might be used with methods whose return value you could also declare as void.</p> <h2>Evaluating object properties</h2> <p>The second might be when a method evaluates something on an object. Consider, for example, the method <code>car.getCurrentSpeed()</code>, that could be interpreted as a message to an object asking for the current speed and returning that. It would simply return the value, not too complicated. :)</p> <h2>Make object do this or that</h2> <p>The third might be when a method makes an perform an operation, returning some sort of value indicating how well the caller's intention was fulfilled - but laying out such a method could be difficult:</p> <pre><code>int new_gear = 20; if (car.gears.changeGear(new_gear)) // does that mean success or fail? </code></pre> <p>This is where you can see a difficulty in designing the method. Should it return 0 upon success or failure? How about -1 if the gear could not be set, because the car only has 5 gears? Does that mean the current gear is at -1 now, too? The method could return the gear it changed to, meaning you would have to compare the argument supplied to the method to the return code. That would work. On the other hand, you could simply return either true or false for failure or false or true for failure. Which one to use could be decided by estimating if you'd expect those method calls to rather fail or succeed. </p> <p>In my humble opinion, there is a way to better express the semantics of such return values, by giving them a semantic description. Future developers interacting with your objects will love you for not having to look up the comments or documentation for your methods:</p> <pre><code>class GearSystem { // (...) public: enum GearChangeResult { GearChangeSuccess, NonExistingGear, MechanicalGearProblem }; GearChangeResult changeGear (int gear); }; </code></pre> <p>That way, it becomes perfectly obvious for any programmer looking at your code, what the return value means (consider: <code>if (gears.changeGear(20) == GearSystem::GearChangeSuccess)</code> - much clearer what that means than the example above)</p> <h2>Antipattern: Failures as return codes.</h2> <p>The fourth possibility for a return value I actually omitted, because in my opinion it isn't any: when there's an error in your program, like a logic error or a failure that needs to be dealt with - you could theoretically return a value indicating so. But today, that's not done so often anymore (or should not be), because for that, there are exceptions.</p> http://stackoverflow.com/questions/392624/good-language-to-develop-a-game-server-in/392911#392911 2 Answer by mstrobl for Good language to develop a game server in? mstrobl 2008-12-25T15:57:19Z 2008-12-25T15:57:19Z <p>I might be going slightly off-topic here, but the topic interests me as I have (hobby-wise) worked on quite a few game servers (MMORPG servers) - on others' code as well as mine. There is literature out there that will be of interest to you, drop me a note if you want some references.</p> <p>One thing that strikes me in your question is the want to serve a thousand users off a multithreaded application. From my humble experience, that does not work too well. :-) </p> <p>When you serve thousands of users you want a design that is as modular as possible, because one of your primary goals will be to keep the service as a whole up and running. Game servers tend to be rather complex, so there will be quite a few show-stopping bugs. Don't make your life miserable with a single point of failure (one application!).</p> <p>Instead, try to build multiple processes that can run on a multitude of hosts. My humble suggestion is the following:</p> <ul> <li>Make them independent, so a failing process will be irrelevant to the service.</li> <li>Make them small, so that the different parts of the service and how they interact are easy to grasp.</li> <li>Don't let users communicate with the gamelogic OR DB directly. Write a proxy - network stacks can and will show odd behaviour on different architectures when you have a multitude of users. Also make sure that you can later "clean"/filter what the proxies forward.</li> <li>Have a process that will only monitor other processes to see if they are still working properly, with the ability to restart parts.</li> <li>Make them distributable. Coordinate processes via TCP from the start or you will run into scalability problems.</li> <li>If you have large landscapes, consider means to dynamically divide load by dividing servers by geography. Don't have every backend process hold all the data in memory.</li> </ul> <p>I have ported a few such engines written in C++ and C# for hosts operating on Linux, FreeBSD and also Solaris (on an old UltraSparc IIi - yes, mono still runs there :). From my experience, C# is well fast enough, considering on what ancient hardware it operates on that sparc machine.</p> <p>The industry (as far as I know) tends to use a lot of C++ for the serving work and embeds scripting languages for the actual game logic. Ah, written too much already - way cool topic.</p> http://stackoverflow.com/questions/379172/to-use-goto-or-not/379284#379284 1 Answer by mstrobl for To Use GOTO or Not? mstrobl 2008-12-18T21:13:06Z 2008-12-18T21:13:06Z <p>Since, this is a classic topic, I will reply with Dijkstra's <a href="http://www.cs.utexas.edu/users/EWD/ewd02xx/EWD215.PDF" rel="nofollow">Go-to statement considered harmful</a> (originally published in ACM).</p> http://stackoverflow.com/questions/236737/language-showdown-how-do-you-make-a-system-call-that-returns-the-stdout-output-a/373080#373080 1 Answer by mstrobl for Language showdown: how do you make a system call that returns the stdout output as a string? mstrobl 2008-12-16T22:59:24Z 2008-12-16T22:59:24Z <p>In C on Posix conformant systems:</p> <pre><code>#include &lt;stdio.h&gt; FILE* stream = popen("/path/to/program", "rw"); fprintf(stream, "foo\n"); /* Use like you would a file stream. */ fclose(stream); </code></pre> http://stackoverflow.com/questions/249500/looking-for-a-better-way-than-virtual-inheritance-in-c/301731#301731 0 Answer by mstrobl for Looking for a better way than virtual inheritance in C++ mstrobl 2008-11-19T12:21:38Z 2008-11-19T17:30:35Z <p>There exists a solution to your problem, as I understood the question. Use the <a href="http://en.wikipedia.org/wiki/Adapter_pattern" rel="nofollow">addapter-pattern</a>. The adapter pattern is used to <strong>add functionality to a specific class or to exchange particular behaviour</strong> (i.e. methods). Considering the scenario you painted:</p> <pre><code>class ShapeWithArea : public Shape { protected: Shape* shape_; public: virtual ~ShapeWithArea(); virtual position GetPosition() const { return shape_-&gt;GetPosition(); } virtual void SetPosition(position) { shape_-&gt;SetPosition(); } virtual double GetPerimeter() const { return shape_-&gt;GetPerimeter(); } ShapeWithArea (Shape* shape) : shape_(shape) {} virtual double getArea (void) const = 0; }; </code></pre> <p>The Adapter-Pattern is meant to adapt the behaviour or functionality of a class. You can use it to</p> <ul> <li><strong>change the behaviour of a class, by not forwarding but reimplementing methods.</strong></li> <li><strong>add behaviour to a class, by adding methods.</strong></li> </ul> <p>How does it change behaviour? When you supply an object of type base to a method, you can also supply the adapted class. The object will behave as you instructed it to, the actor on the object will only care about the interface of the base class. <strong>You can apply this adaptor to any derivate of Shape.</strong></p> http://stackoverflow.com/questions/301676/3d-graphics-for-a-web-based-application/301757#301757 0 Answer by mstrobl for 3d Graphics for a Web Based Application mstrobl 2008-11-19T12:31:45Z 2008-11-19T12:31:45Z <p>There are a number of approaches to this. Some that come to my mind:</p> <ul> <li>consider delivering it as an ActiveX component (fastest, but Win32 only).</li> <li>consider using .NET (Silverlight) (Win32, OSX, *nix in the foreseable future through Moonlight; DirectX/Direct3D only) </li> <li>consider using Java, which can access OpenGL as well.</li> <li>consider using any middlewhere that you come across.. there should be dozens.</li> </ul> <p>A problem will probably be the portability. There are two caveats here: Your code needs to run everywhere and it needs 3D acceleration. That's a problem, because you can not be sure if it will have 3D (you can query your context, of course).</p> <p>You might hence also want to consider to rasterize and render on the CPU (i.e. using MESA3D). If you do not need to allow freeform transformations and want to animate, say, 30 frames and using Mesa you could possibly render 5fps on a typical model on typical hardware, you'd need 6 seconds to calculate the whole scene. That'd be enough.</p> http://stackoverflow.com/questions/269268/how-to-implement-big-int-in-c/270258#270258 2 Answer by mstrobl for How to implement big int in C++ mstrobl 2008-11-06T20:59:34Z 2008-11-06T20:59:34Z <p>A fun challenge. :)</p> <p>I assume that you want integers of arbitrary length. I suggest the following approach:</p> <p>Consider the binary nature of the datatype "int". Think about using simple binary operations to emulate what the circuits in your CPU do when they add things. In case you are interested more in-depth, consider reading <a href="http://en.wikipedia.org/wiki/Half_adder" rel="nofollow">this wikipedia article on half-adders and full-adders</a>. You'll be doing something similar to that, but you can go down as low level as that - but being lazy, I thought I'd just forego and find a even simpler solution. </p> <p>But before going into any algorithmic details about adding, subtracting, multiplying, let's find some data structure. A simple way, is of course, to store things in a std::vector. </p> <pre><code>template&lt; class BaseType &gt; class BigInt { typedef typename BaseType BT; protected: std::vector&lt; BaseType &gt; value_; }; </code></pre> <p>You might want to consider if you want to make the vector of a fixed size and if to preallocate it. Reason being that for diverse operations, you will have to go through each element of the vector - O(n). You might want to know offhand how complex an operation is going to be and a fixed n does just that.</p> <p>But now to some algorithms on operating on the numbers. You could do it on a logic-level, but we'll use that magic CPU power to calculate results. But what we'll take over from the logic-illustration of Half- and FullAdders is the way it deals with carries. As an example, consider how you'd implement the <strong>+= operator</strong>. For each number in BigInt&lt;>::value_, you'd add those and see if the result produces some form of carry. We won't be doing it bit-wise, but rely on the nature of our BaseType (be it long or int or short or whatever): it overflows. </p> <p>Surely, if you add two numbers, the result must be greater than the greater one of those numbers, right? If it's not, then the result overflowed.</p> <pre><code>template&lt; class BaseType &gt; BigInt&lt; BaseType &gt;&amp; BigInt&lt; BaseType &gt;::operator += (BigInt&lt; BaseType &gt; const&amp; operand) { BT count, carry = 0; for (count = 0; count &lt; std::max(value_.size(), operand.value_.size(); count++) { BT op0 = count &lt; value_.size() ? value_.at(count) : 0, op1 = count &lt; operand.value_.size() ? operand.value_.at(count) : 0; BT digits_result = op0 + op1 + carry; if (digits_result-carry &lt; std::max(op0, op1) { BT carry_old = carry; carry = digits_result; digits_result = (op0 + op1 + carry) &gt;&gt; sizeof(BT)*8; // NOTE [1] } else carry = 0; } return *this; } // NOTE 1: I did not test this code. And I am not sure if this will work; if it does // not, then you must restrict BaseType to be the second biggest type // available, i.e. a 32-bit int when you have a 64-bit long. Then use // a temporary or a cast to the mightier type and retrieve the upper bits. // Or you do it bitwise. ;-) </code></pre> <p>The other arithmetic operation go analogous. Heck, you could even use the stl-functors std::plus and std::minus, std::times and std::divides, ..., but mind the carry. :) You can also implement multiplication and division by using your plus and minus operators, but that's very slow, because that would recalculate results you already calculated in prior calls to plus and minus in each iteration. There are a lot of good algorithms out there for this simple task, <a href="http://en.wikipedia.org/wiki/Multiplication_algorithm" rel="nofollow">use</a> <a href="http://en.wikipedia.org/wiki/Division_algorithm" rel="nofollow">wikipedia</a> or the web.</p> <p>And of course, you should implement standard operators such as <code>operator&lt;&lt;</code> (just shift each value in value_ to the left for n bits, starting at the <code>value_.size()-1</code>... oh and remember the carry :), <code>operator&lt;</code> - you can even optimize a little here, checking the rough number of digits with <code>size()</code> first. And so on. Then make your class useful, by befriendig std::ostream <code>operator&lt;&lt;</code>.</p> <p>Hope this approach is helpful!</p> http://stackoverflow.com/questions/258742/change-texture-opacity-in-opengl/258941#258941 1 Answer by mstrobl for Change texture opacity in OpenGL mstrobl 2008-11-03T15:11:10Z 2008-11-03T15:11:10Z <p>The most straightforward way is to change the texture's alpha value on the fly. Since you tell OpenGL about the texture at some point, you will have the bitmap in memory. So just rebind the texture to the same texture id. In case you don't have it in memory, (due to space constraints, since you are on ES), you can retrieve the texture to a buffer again, using <strong>glGetTexImage()</strong>. That's the clean solution.</p> <p>Saving/retrieving operations are a bit costly, though, so you might want another solution. Thinking about it, you might be able to work with geometry behind your the geometry displaying your texture or simply work on the material/colour of the geometry that holds the texture. You will probably want to have some additive blending of the back-geometry. Using a glBlendFunc of</p> <pre><code>glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_DST_ALPHA), </code></pre> <p>you might be able to "easily" and - more important, cheaply - achieve the desired effect.</p> http://stackoverflow.com/questions/248400/finding-non-prime-numbers-in-c/248444#248444 0 Answer by mstrobl for Finding non-prime numbers in C++ mstrobl 2008-10-29T21:15:47Z 2008-10-29T21:15:47Z <p>The idea of the sieve that you try to implement depends on the fact that you start at a prime (2) and cross out multitudes of that number - so all numbers that depend on the prime "2" are ruled out beforehand. </p> <p>That's because all non-primes can be factorized down to primes. Whereas primes are not divisible with modulo 0 unless you divide them by 1 or by themselves.</p> <p>So, if you want to rely on this algorithm, you will need some mean to actually restore this property of the algorithm.</p> http://stackoverflow.com/questions/237899/how-to-draw-a-filled-envelop-like-a-cone-on-opengl-using-glut/246936#246936 2 Answer by mstrobl for How to draw a filled envelop like a cone on OpenGL (using GLUT)? mstrobl 2008-10-29T14:10:23Z 2008-10-29T14:10:23Z <p>On Edit3: The way I understand your question is that you want to have OpenGL draw borders and anything between them should be filled with colors.</p> <p>The idea you had was right, but a line strip is just that - a strip of lines, and it does not have any area.</p> <p>You can, however, have the lines connect to each other to define a polygon. That will fill out the area of the polygon on a per-vertex basis. Adapting your code:</p> <pre><code>glBegin(GL_POLYGON); glColor3f(0.0, 0.0, 1.0); glVertex3f(0.0, 0.0, 0.0); glColor3f(0.0, 0.0, 1.0); glVertex3f(200.0, 0.0, 0.0); glColor3f(0.0, 0.0, 1.0); glVertex3f(200.0, 200.0, 0.0); glColor3f(0.0, 0.0, 1.0); glVertex3f(0.0, 200.0, 0.0); glColor3f(0.0, 0.0, 1.0); glVertex3f(0.0, 0.0, 0.0); glEnd(); </code></pre> <p>Please note however, that drawing a polygon this way has two limitations:</p> <ul> <li>The polygon must be convex.</li> <li>This is a slow operation.</li> </ul> <p>But I assume you just want to get the job done, and this will do it. For the future you might consider just triangulating your polygon.</p> http://stackoverflow.com/questions/237899/how-to-draw-a-filled-envelop-like-a-cone-on-opengl-using-glut/243820#243820 2 Answer by mstrobl for How to draw a filled envelop like a cone on OpenGL (using GLUT)? mstrobl 2008-10-28T15:53:35Z 2008-10-28T17:02:33Z <p>On the edit on colors:</p> <p>OpenGL is actually a state machine. This means that the current material and/or color position is used when drawing. Since you probably won't be using materials, ignore that for now. You want colors.</p> <pre><code>glColor3f(float r, float g, float b) // draw with r/g/b color and alpha of 1 glColor4f(float r, float g, float b, float alpha) </code></pre> <p>This will affect the colors of any vertices you draw, of any geometry you render - be it glu's or your own - after the glColorXX call has been executed. If you draw a face with vertices and change the color inbetween the glVertex3f/glVertex2f calls, the colors are interpolated.</p> <p>Try this:</p> <pre><code>glBegin(GL_TRIANGLES); glColor3f(0.0, 0.0, 1.0); glVertex3f(-3.0, 0.0, 0.0); glColor3f(0.0, 1.0, 0.0); glVertex3f(0.0, 3.0, 0.0); glColor3f(1.0, 0.0, 0.0); glVertex3f(3.0, 0.0, 0.0); glEnd(); </code></pre> <p>But I pointed at glColor4f already, so I assume you want to set the colors on a per-vertex basis. And you want to render using display lists.</p> <p>Just like you can display lists of vertices, you can also make them have a list of colors: all you need to do is enable the color lists and tell opengl where the list resides. Of course, they need to have the same outfit as the vertex list (same order).</p> <p>If you had</p> <pre><code>glEnableClientState(GL_VERTEX_ARRAY); glVertexPointer(3, GL_FLOAT, 0, vertices_); glDisableClientState(GL_VERTEX_ARRAY); </code></pre> <p>you should add colors this way. They need not be float; in fact, you tell it what format it should be. For a color list with 1 byte per channel and 4 channels (R, G, B and A) use this:</p> <pre><code>glEnableClientState(GL_VERTEX_ARRAY); glEnableClientState(GL_COLOR_ARRAY); glVertexPointer(3, GL_FLOAT, 0, vertices_); glColorPointer(4, GL_UNSIGNED_BYTE, 0, colors_); glDisableClientState(GL_COLOR_ARRAY); glDisableClientState(GL_VERTEX_ARRAY); </code></pre> <p>EDIT: Forgot to add that you then have to tell OpenGL which elements to draw by calling <a href="http://www.opengl.org/documentation/specs/man_pages/hardcopy/GL/html/gl/drawelements.html" rel="nofollow">glDrawElements</a>.</p> http://stackoverflow.com/questions/237899/how-to-draw-a-filled-envelop-like-a-cone-on-opengl-using-glut/239749#239749 2 Answer by mstrobl for How to draw a filled envelop like a cone on OpenGL (using GLUT)? mstrobl 2008-10-27T12:43:29Z 2008-10-27T12:43:29Z <p>Since you reclarified your question to ask for a pie: there's an easy way to draw that too using opengl primitives:</p> <p>You'd draw a solid sphere using gluSolidSphere(). However, since you only want to draw part of it, you just clip the unwanted parts away:</p> <pre><code>void glClipPlane(GLenum plane, const GLdouble * equation); </code></pre> <p>With plane being GL_CLIPPLANE0 to GL_CLIPPLANEn and equation being a plane equation in normal form (a*x + b*y + c*z + d = 0 would mean equation would hold the values <code>{ a, b, c, d }</code>. Please note that those are doubles and not floats.</p> http://stackoverflow.com/questions/228320/cs-majors-hardest-concepts-you-learned-in-school/238500#238500 0 Answer by mstrobl for CS Majors: Hardest concept(s) you learned in school? mstrobl 2008-10-26T19:40:50Z 2008-10-26T19:40:50Z <ul> <li>Analysis</li> <li>Machine learning (neural networks et al)</li> <li>Operating systems (much work)</li> </ul> <p>The knowledge I gained in operating systems helped me a lot understanding how programs function actually. I enjoyed that course. Analysis was an eye opener for me, too and helped my understanding a lot.</p> http://stackoverflow.com/questions/237899/how-to-draw-a-filled-envelop-like-a-cone-on-opengl-using-glut/237952#237952 2 Answer by mstrobl for How to draw a filled envelop like a cone on OpenGL (using GLUT)? mstrobl 2008-10-26T12:24:01Z 2008-10-26T12:24:01Z <p>I'm not sure what you mean by "an envelop", but a cone is a primitive that glut has:</p> <pre><code>glutSolidCone(radius, height, number_of_slices, number_of_stacks) </code></pre> <p>The easiest way to fill it with color is to draw it with color. Since you want to make it somewhat transparent, you need an alpha value too:</p> <pre><code>glColor4f(float red, float green, float blue, float alpha) // rgb and alpha run from 0.0f to 1.0f; in the example here alpha of 1.0 will // mean no transparency, 0.0 total transparency. Call before drawing. </code></pre> <p>To render translucently, blending has to be enabled. And you must set the blending function to use. What you want to do will probably be achieved with the following. If you want to learn more, drop me a comment and I will look for some good pointers. But here goes your setup:</p> <pre><code>glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); </code></pre> <p>Call that before doing any drawing operations, possibly at program initialization. :)</p> http://stackoverflow.com/questions/237285/where-do-you-find-templates-useful/237940#237940 1 Answer by mstrobl for Where do you find templates useful? mstrobl 2008-10-26T12:14:18Z 2008-10-26T12:14:18Z <p>The obvious reasons (like preventing code-duplication by operating on different data types) aside, there is this really cool pattern that's called policy based design. I have asked a question about <a href="http://stackoverflow.com/questions/231318/a-strategy-against-policy-and-a-policy-against-strategy">policies vs strategies</a>.</p> <p>Now, what's so nifty about this feature. Consider you are writing an interface for others to use. You know that your interface will be used, because it is a module in its own domain. But you don't know yet how people are going to use it. Policy-based design strengthens your code for future reuse; it makes you independent of data types a particular implementation relies on. The code is just "slurped in". :-)</p> <p>Traits are per se a wonderful idea. They can attach particular behaviour, data and typedata to a model. Traits allow complete parameterization of all of these three fields. And the best of it, it's a very good way to make code reusable.</p> http://stackoverflow.com/questions/237804/user-defined-literals-in-c0x-a-much-needed-addition-or-making-c-even-more-bl/237837#237837 1 Answer by mstrobl for User-defined literals in C++0x, a much needed addition or making C++ even more bloated? mstrobl 2008-10-26T10:31:52Z 2008-10-26T10:31:52Z <p>Hmm... I have not thought about this feature yet. Your sample was well thought out and is certainly interesting. C++ is very powerful as it is now, but unfortunately the syntax used in pieces of code you read is at times overly complex. Readability is, if not all, then at least much. And such a feature would be geared for more readability. If I take your last example</p> <pre><code>assert(1_kg == 2.2_lb); // give or take 0.00462262 pounds </code></pre> <p>... I wonder how you'd express that today. You'd have a KG and a LB class and you'd compare implicit objects:</p> <pre><code>assert(KG(1.0f) == LB(2.2f)); </code></pre> <p>And that would do as well. With types that have longer names or types that you have no hopes of having such a nice constructor for sans writing an adapter, it might be a nice addition for on-the-fly implicit object creation and initialization. On the other hand, you can already create and initialize objects using methods, too.</p> <p>But I agree with Nils on mathematics. C and C++ trigonometry functions for example require input in radians. I think in degrees though, so a very short implicit conversion like Nils posted is very nice.</p> <p>Ultimately, it's going to be syntactic sugar however, but it will have a slight effect on readability. And it will probably be easier to write some expressions too (sin(180.0deg) is easier to write than sin(deg(180.0)). And then there will be people who abuse the concept. But then, language-abusive people should use very restrictive languages rather than something as expressive as C++.</p> <p>Ah, my post says basically nothing except: it's going to be okay, the impact won't be too big. Let's not worry. :-)</p> http://stackoverflow.com/questions/232861/fibonacci-code-golf/233889#233889 0 Answer by mstrobl for Fibonacci Code Golf mstrobl 2008-10-24T14:55:38Z 2008-10-24T14:55:38Z <p>Not the shortest, but the fastest at the time of posting. :-)</p> <pre><code>float f(float n) { return (pow(1+sqrt(5.0))/2.0),n) - pow(1+sqrt(5.0))/2.0),n)/sqrt(n)); } </code></pre> http://stackoverflow.com/questions/228518/palindrome-golf/231685#231685 0 Answer by mstrobl for Palindrome Golf mstrobl 2008-10-23T21:52:36Z 2008-10-23T21:52:36Z <p>Definitely not the smallest, but I still wanted to add a entry:</p> <pre><code>sub p{return @_==reverse split//;} </code></pre> <p>My perl's rusty tho and this is untested.</p> http://stackoverflow.com/questions/231491/how-to-initialize-const-stdvectort-like-a-c-array/231546#231546 0 Answer by mstrobl for how-to initialize 'const std::vector<T>' like a c array mstrobl 2008-10-23T21:10:42Z 2008-10-23T21:10:42Z <p>Not sure if I understood you right. I understand your question like this: you want to initialize a vector to a large number of elements. What's wrong with using push_back() on the vector? :-)</p> <p>If you know the number of elements to be stored (or are sure that it will store less than the next power of 2) you can do this, if you have a vector of pointers of type X (works only with pointers):</p> <pre><code>std::vector&lt; X* &gt; v; v.reserve(num_elems); X* p = v.begin(); for (int count = 0; count &lt; num_elems; count++) p[count] = some_source[count]; </code></pre> <p>Beware of adding more than the next power of 2 elements, even if using push_back(). Pointers to v.begin() will then be invalid.</p> http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/407373#407373 Comment by mstrobl on What is the one programming skill you have always wanted to master but haven't had time? mstrobl 2009-01-25T09:12:47Z 2009-01-25T09:12:47Z I do that. You will find that it's NP complete. http://stackoverflow.com/questions/433965/protected-derived-class Comment by mstrobl on Protected derived class mstrobl 2009-01-11T23:53:09Z 2009-01-11T23:53:09Z why did this question get 3 downvotes? that is a perfectly legitimate question. +1, ridiculous. http://stackoverflow.com/questions/433371/ellipse-bounding-a-rectangle/433426#433426 Comment by mstrobl on Ellipse bounding a rectangle mstrobl 2009-01-11T19:37:22Z 2009-01-11T19:37:22Z Very nice solution, +1. http://stackoverflow.com/questions/423335/what-can-c-do-that-is-too-hard-or-messy-in-any-other-language/423397#423397 Comment by mstrobl on What can C++ do that is too hard or messy in any other language? mstrobl 2009-01-08T16:09:48Z 2009-01-08T16:09:48Z @fizzer The third paragraph refers to the policy pattern: <a href="http://stackoverflow.com/questions/231318/a-strategy-against-policy-and-a-policy-against-strategy" rel="nofollow" title="a strategy against policy and a policy against strategy">stackoverflow.com/questions/231318/&hellip;</a> - C++ has two preprocessor runs actually; templating is the typesafe one, where #macros is the child that nobody likes. :) http://stackoverflow.com/questions/408527/when-can-you-put-c-expert-on-your-cv/408635#408635 Comment by mstrobl on When can you put "C++ Expert" on your CV? mstrobl 2009-01-03T09:30:57Z 2009-01-03T09:30:57Z C++ is a superset of C. The C syntax is much simpler than C++'s, also the standard library is a lot smaller - both by several orders of magnitude. http://stackoverflow.com/questions/386862/finding-integers-with-a-certain-property-project-euler-problem-221/386948#386948 Comment by mstrobl on Finding Integers With A Certain Property - Project Euler Problem 221 mstrobl 2008-12-31T13:54:01Z 2008-12-31T13:54:01Z Still, the list of links seems to be carefully crafted and may be of interest to some. So I don't see why this should be -1, hence I will upvote. People seem too trigger-happy these days. http://stackoverflow.com/questions/402541/customizable-player-avatar-in-a-2d-game/402554#402554 Comment by mstrobl on Customizable player avatar in a 2D Game mstrobl 2008-12-31T10:03:51Z 2008-12-31T10:03:51Z It's for doing it all in 2D, but you can use it in 3D as well - that would save you from drawing multiple rectangles/quads. http://stackoverflow.com/questions/402541/customizable-player-avatar-in-a-2d-game/402554#402554 Comment by mstrobl on Customizable player avatar in a 2D Game mstrobl 2008-12-31T09:31:25Z 2008-12-31T09:31:25Z And for combining 3D and 2D: that certainly is possible, but is more havoc than it's worth. Using a 3D framework in an orthogonal mode is essentially 2D, though. http://stackoverflow.com/questions/397483/c-associative-array-with-arbitrary-types-for-values/397497#397497 Comment by mstrobl on C++ associative array with arbitrary types for values mstrobl 2008-12-29T11:17:15Z 2008-12-29T11:17:15Z You can use an union with std::map, but unions can only hold POD-type objects. http://stackoverflow.com/questions/397418/when-to-use-a-scripting-language Comment by mstrobl on When to use a scripting language? mstrobl 2008-12-29T10:29:48Z 2008-12-29T10:29:48Z I don't get why people vote down questions like this, so I will upvote. Since a few days there seems to be a huge inflation in downvotes on everything - annoying. http://stackoverflow.com/questions/394908/packet-data-structure/394930#394930 Comment by mstrobl on Packet data structure? mstrobl 2008-12-27T11:53:43Z 2008-12-27T11:53:43Z The OP stated different types for parameters. What if one data type is to be an array of values? Your solution is sleeker, but disallows for any containment. http://stackoverflow.com/questions/394908/packet-data-structure Comment by mstrobl on Packet data structure? mstrobl 2008-12-27T11:22:41Z 2008-12-27T11:22:41Z Hey! Could you break the line of bytes with a newline after each bracket? That makes it easier to read. http://stackoverflow.com/questions/393675/using-return-statements-to-great-effect/393693#393693 Comment by mstrobl on Using return statements to great effect! mstrobl 2008-12-27T00:02:38Z 2008-12-27T00:02:38Z Then consider a list of walls with pointers to geometry supplied to a method that does intersection testing. The method would return indicating if there were any intersections. Now, if for example, one of the walls had a NULL pointer as geometry, that's a programmatic error, like in the antipattern. http://stackoverflow.com/questions/393675/using-return-statements-to-great-effect/393693#393693 Comment by mstrobl on Using return statements to great effect! mstrobl 2008-12-26T23:59:22Z 2008-12-26T23:59:22Z Ah, another example that might clarify things: consider a 3D shooter. A user might continuously run against a wall. The result of the program's collision detection would be that there is a collision and the user can't walk further - like in the third block. http://stackoverflow.com/questions/393675/using-return-statements-to-great-effect/393693#393693 Comment by mstrobl on Using return statements to great effect! mstrobl 2008-12-26T23:57:12Z 2008-12-26T23:57:12Z (...) But failure to change to such an arbitrary gear would be something that affects the business model, or the behavior that is modelled by the program. It's not an error in the sense of flaw, but the result of modelled action. Those are my metaphors and work for me, of course, but ymmv. :)