User yrp - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T11:53:03Z http://stackoverflow.com/feeds/user/7228 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/244941/monitoring-a-folder-for-new-files-in-windows/245311#245311 0 Answer by yrp for Monitoring a folder for new files in Windows yrp 2008-10-28T23:55:08Z 2008-10-28T23:55:08Z <p>Change notifactions may cause some overhead, if you've NTFS, consider <a href="http://msdn.microsoft.com/en-us/library/aa363798(VS.85).aspx" rel="nofollow">NTFS change journals</a>.</p> http://stackoverflow.com/questions/177437/const-static/177456#177456 0 Answer by yrp for const static yrp 2008-10-07T07:07:16Z 2008-10-07T07:07:16Z <p>Making it private would still mean it appears in the header. I tend to use "the weakest" way that works. See this classic article by Scott Meyers: <a href="http://www.ddj.com/cpp/184401197" rel="nofollow">http://www.ddj.com/cpp/184401197</a> (it's about functions, but can be applied here as well).</p> http://stackoverflow.com/questions/170686/best-open-xml-parser-for-c/170910#170910 1 Answer by yrp for Best open XML parser for C++ yrp 2008-10-04T19:48:09Z 2008-10-04T19:48:09Z <p>Do not use TinyXML if you're concerned about efficiency/memory management (it tends to allocate <em>lots</em> of tiny blocks). My personal favourite is <a href="http://rapidxml.sourceforge.net/" rel="nofollow">RapidXML</a>.</p> http://stackoverflow.com/questions/169404/c-template-destructors-for-both-primitive-and-complex-data-types/169986#169986 1 Answer by yrp for C++ template destructors for both primitive and complex data types yrp 2008-10-04T08:30:42Z 2008-10-04T08:30:42Z <p>You most probably <em>do</em> want to use smart pointers here, it really simplifies the problem. However, just as an excercise, it's quite easy to determine if given type is pointer. Rough implementation (could be more elegant, but I dont want to introduce int2type):</p> <pre><code>typedef char YesType; typedef char NoType[2]; template&lt;typename T&gt; struct IsPointer { typedef NoType Result; }; template&lt;typename T&gt; struct IsPointer&lt;T*&gt; { typedef YesType Result; }; template&lt;typename T&gt; struct MyContainer { ~MyContainer() { IsPointer&lt;T&gt;::Result r; Clear(&amp;r); delete[] data; } void Clear(YesType*) { for (int i = 0; i &lt; numElements; ++i) delete data[i]; } void Clear(NoType*) {} T* data; int numElements; </code></pre> <p>};</p> http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146459#146459 8 Answer by yrp for What is the worst class/variable/function name you have ever encountered yrp 2008-09-28T18:38:57Z 2008-09-28T18:38:57Z <p>IsHardwareSoundPlaying_PleaseDontUseThis(). Called in at least 50 places in the code base, working perfectly.</p> http://stackoverflow.com/questions/125880/can-anyone-recommend-a-c-stdmap-replacement-container/125899#125899 3 Answer by yrp for Can anyone recommend a C++ std::map replacement container? yrp 2008-09-24T07:49:26Z 2008-09-24T07:49:26Z <p>See <a href="http://loki-lib.sourceforge.net/" rel="nofollow">Loki::AssocVector</a> and/or hash_map (most of STL implementations have this one).</p> http://stackoverflow.com/questions/122826/reducing-memory-footprint-of-large-unfamiliar-codebase/123042#123042 3 Answer by yrp for Reducing memory footprint of large unfamiliar codebase. yrp 2008-09-23T18:59:05Z 2008-09-23T18:59:05Z <p><a href="http://msinilo.pl/blog/?cat=7" rel="nofollow">this is description/skeleton</a> of memory tracing application I used to reduce memory consumption of our game by 20%. It helped me to track many allocations done by external modules.</p> http://stackoverflow.com/questions/121787/what-is-the-stl-implementation-with-the-lowest-memory-footprint/121818#121818 1 Answer by yrp for What is the STL implementation with the lowest memory footprint? yrp 2008-09-23T15:39:59Z 2008-09-23T15:39:59Z <p><a href="http://stlport.org/" rel="nofollow">STLPort</a>. Havent measured memory usage differences, but it's definitelly quicker (yes, real world usage).</p> http://stackoverflow.com/questions/121757/how-do-you-implement-coroutines-in-c/121799#121799 1 Answer by yrp for How do you implement Coroutines in C++ yrp 2008-09-23T15:37:26Z 2008-09-23T15:37:26Z <p>I dont think there are many full-blown, clean implementations in C++. One try that I like is <a href="http://www.sics.se/~adam/pt/" rel="nofollow">protothread library</a>.</p> http://stackoverflow.com/questions/114085/what-is-a-performant-string-hashing-function-that-results-in-a-32-bit-integer-wit/114126#114126 7 Answer by yrp for What is a performant string hashing function that results in a 32 bit integer with low collision rates? yrp 2008-09-22T10:17:20Z 2008-09-22T10:17:20Z <p><a href="http://murmurhash.googlepages.com/" rel="nofollow">Murmur Hash</a> is pretty nice.</p> http://stackoverflow.com/questions/113830/performance-penalty-for-working-with-interfaces-in-c/113996#113996 1 Answer by yrp for Performance penalty for working with interfaces in C++? yrp 2008-09-22T09:38:16Z 2008-09-22T09:38:16Z <p>One thing that should be noted is that virtual function call cost can vary from one platform to another. On consoles they may be more noticeable, as usually vtable call means a cache miss and can screw branch prediction.</p> http://stackoverflow.com/questions/101774/what-is-your-bug-task-tracking-tool/101803#101803 4 Answer by yrp for What is your bug/task tracking tool? yrp 2008-09-19T13:28:52Z 2008-09-19T13:28:52Z <p><a href="http://www.seapine.com/ttpro.html" rel="nofollow">TestTrackPro</a> . </p> http://stackoverflow.com/questions/101329/if-classes-with-virtual-functions-are-implemented-with-vtables-how-is-a-class-wi/101341#101341 0 Answer by yrp for If classes with virtual functions are implemented with vtables, how is a class with no virtual functions implemented? yrp 2008-09-19T12:07:44Z 2008-09-19T12:07:44Z <p>There's no need for function pointers as it cant change during the runtime.</p> http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100452#100452 8 Answer by yrp for Hidden Features of Visual Studio (2005-2008)? yrp 2008-09-19T08:17:41Z 2008-09-19T08:17:41Z <p>I'm not sure if it's "hidden", but not many people know about it -- <a href="http://www.codeproject.com/KB/debug/pseudoregister.aspx" rel="nofollow">pseudoregisters</a>. Comes very handy when debugging, I've @ERR, hr in my watch window all the time.</p> http://stackoverflow.com/questions/93958/what-conferences-do-you-attend/97705#97705 0 Answer by yrp for What conferences do you attend? yrp 2008-09-18T22:38:11Z 2008-09-18T22:38:11Z <p><a href="http://gdconf.com/" rel="nofollow">GDC</a>. It's not that amazingly valuable when it comes to lectures (90% of the papers can be later found on the net), but it's great place for industry chats and finding new connections.</p> http://stackoverflow.com/questions/93260/a-free-tool-to-check-c-c-source-code-against-a-set-of-coding-standards/93291#93291 9 Answer by yrp for A free tool to check C/C++ source code against a set of coding standards? yrp 2008-09-18T14:54:15Z 2008-09-18T14:54:15Z <p>The only tool I know is <a href="http://www.inspirel.com/vera/" rel="nofollow">Vera</a>. Havent used it, though, so cant comment how viable it is. <a href="http://www.inspirel.com/vera/ce/demo.html" rel="nofollow">Demo</a> looks promising.</p> http://stackoverflow.com/questions/91849/how-to-get-all-datatype-sizes-and-function-stack-footprint-sizes-in-a-c-c-proje/92319#92319 0 Answer by yrp for How to get all datatype sizes and function stack footprint sizes in a C/C++ project? yrp 2008-09-18T13:01:57Z 2008-09-18T13:01:57Z <p>I'm not aware of any tools, but if you're working under MSVC you can use <a href="http://msdn.microsoft.com/en-us/library/t6tay6cz(VS.80).aspx" rel="nofollow">DIA SDK</a> to extract size information from .PDB files. Sadly, this wont work for stack footprints IIRC.</p> http://stackoverflow.com/questions/91384/unit-testing-for-c-code-tools-and-methodology/91451#91451 3 Answer by yrp for Unit testing for C++ code - Tools and methodology yrp 2008-09-18T10:20:38Z 2008-09-18T10:20:38Z <p><a href="http://unittest-cpp.sourceforge.net/" rel="nofollow">UnitTest++</a>, small &amp; simple.</p> http://stackoverflow.com/questions/91420/export-variable-from-c-static-library/91433#91433 2 Answer by yrp for Export variable from C++ static library yrp 2008-09-18T10:18:04Z 2008-09-18T10:18:04Z <p>Are they defined in .cpp file as well? Roughly, it should look like:</p> <pre><code>struct Format { [...] static Format gFmt128; }; // Format.cpp Format Format::gFmt128 = { 0, 128, 0 } </code></pre> http://stackoverflow.com/questions/87889/game-engine-scripting-languages/88239#88239 1 Answer by yrp for Game Engine Scripting Languages yrp 2008-09-17T22:14:31Z 2008-09-17T22:14:31Z <p>One more vote for Lua. Small, fast, easy to integrate, what's important for modern consoles - you can easily control its memory operations.</p> http://stackoverflow.com/questions/87794/c-unit-testing-framework/87869#87869 4 Answer by yrp for C++ unit testing framework yrp 2008-09-17T21:29:54Z 2008-09-17T21:29:54Z <p>I'm a big fan of <a href="http://unittest-cpp.sourceforge.net/" rel="nofollow">UnitTest++</a>, it's very lightweight, but does the job. You can run single tests there easily.</p> http://stackoverflow.com/questions/87372/is-there-a-technique-in-c-to-know-if-a-class-has-a-member-function-of-a-given-s/87846#87846 16 Answer by yrp for Is there a Technique in C++ to know if a class has a member function of a given signature yrp 2008-09-17T21:27:29Z 2008-09-17T21:27:29Z <p>I'm not sure if I understand you correctly, but you may exploit SFINAE to detect function presence at compile-time. Example from my code (tests if class has member function size_t used_memory() const).</p> <pre><code>template&lt;typename T&gt; struct HasUsedMemoryMethod { template&lt;typename U, size_t (U::*)() const&gt; struct SFINAE {}; template&lt;typename U&gt; static char Test(SFINAE&lt;U, &amp;U::used_memory&gt;*); template&lt;typename U&gt; static int Test(...); static const bool Has = sizeof(Test&lt;T&gt;(0)) == sizeof(char); }; template&lt;typename TMap&gt; void ReportMemUsage(const TMap&amp; m, rde::int_to_type&lt;true&gt;) { // We may call used_memory() on m here. } template&lt;typename TMap&gt; void ReportMemUsage(const TMap&amp;, rde::int_to_type&lt;false&gt;) { } template&lt;typename TMap&gt; void ReportMemUsage(const TMap&amp; m) { ReportMemUsage(m, rde::int_to_type&lt;HasUsedMemoryMethod&lt;TMap&gt;::Has&gt;()); } </code></pre> http://stackoverflow.com/questions/72931/whats-the-best-alternative-to-c-for-real-time-graphics-programming/73244#73244 1 Answer by yrp for What's the best alternative to C++ for real-time graphics programming? yrp 2008-09-16T14:56:14Z 2008-09-16T14:56:14Z <p>There are no true alternatives for big AAA titles, especially on the consoles. For smaller titles C# should do.</p> http://stackoverflow.com/questions/70159/what-is-the-best-source-to-learn-c/70213#70213 10 Answer by yrp for What is the best source to learn C++? yrp 2008-09-16T07:55:14Z 2008-09-16T07:55:14Z <p>I wouldnt say Stroustrup's book is the best for beginners, it's rather terse (still worth reading of course, but maybe not as the first on the subject). Try Bruce Eckel's <a href="http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html" rel="nofollow">"Thinking in C++"</a>, it's free.</p> http://stackoverflow.com/questions/67174/find-memory-leaks-caused-by-smart-pointers/70055#70055 0 Answer by yrp for Find memory leaks caused by smart pointers yrp 2008-09-16T07:24:41Z 2008-09-16T07:24:41Z <p>It's not a matter of finding a leak. In case of smart-pointers it'll most probably direct to some generic place like CreateObject(), which is being called thousands of time. It's a matter of determining what place in the code didnt call Release() on ref-counted object.</p> http://stackoverflow.com/questions/67426/dynamically-sorted-stl-containers/67586#67586 0 Answer by yrp for Dynamically sorted STL containers yrp 2008-09-15T22:21:29Z 2008-09-15T22:21:29Z <p>It's not that simple. In my experience insert/delete is used less often than find. Advantage of sorted vector is that it takes less memory and is more cache-friendly. If happen to have version that is compatible with STL maps (like the one I linked before) it's easy to switch back and forth and use optimal container for every situation.</p> http://stackoverflow.com/questions/67554/whats-the-best-free-c-profiler-for-windows-if-there-are/67577#67577 16 Answer by yrp for What's the best Free C++ Profiler for windows (if there are) yrp 2008-09-15T22:18:51Z 2008-09-15T22:18:51Z <p>AMD Code Analyst is free, but not as advanced as VTune. There's also <a href="http://www.codersnotes.com/sleepy/" rel="nofollow">Sleepy</a>, which is very simple, but does the job in many cases. </p> http://stackoverflow.com/questions/67426/dynamically-sorted-stl-containers/67496#67496 0 Answer by yrp for Dynamically sorted STL containers yrp 2008-09-15T22:05:26Z 2008-09-15T22:05:26Z <p>For "STL compatible" sorted vector see A. Alexandrescu's AssocVector from <a href="http://loki-lib.sourceforge.net/" rel="nofollow">Loki</a>.</p> http://stackoverflow.com/questions/67302/favorite-programming-related-blog/67374#67374 0 Answer by yrp for Favorite programming-related blog yrp 2008-09-15T21:52:50Z 2008-09-15T21:52:50Z <p>I'd say <a href="http://smallcode.weblogs.us/" rel="nofollow">smallcode</a>.</p> http://stackoverflow.com/questions/67174/find-memory-leaks-caused-by-smart-pointers/67317#67317 3 Answer by yrp for Find memory leaks caused by smart pointers yrp 2008-09-15T21:45:53Z 2008-09-15T21:45:53Z <p>The way I do it is simply: - on every AddRef() record call-stack, - matching Release() removes it. This way at the end of the program I'm left with AddRefs() without maching Releases. No need to match pairs,</p> http://stackoverflow.com/questions/138245/difference-in-speed-between-char-and-integer-arrays Comment by yrp on difference in speed between char and integer arrays? yrp 2008-09-26T08:24:29Z 2008-09-26T08:24:29Z Both versions will run at same speed. It's &quot;final&quot; type that matters and it's still int*, and it'll be treated by compiler as such. Plus, in the second version you may have problem with buffer overruns (you allocated 4x less memory than in the first version, is it enough?) http://stackoverflow.com/questions/132241/hidden-features-of-c/132314#132314 Comment by yrp on Hidden features of C yrp 2008-09-25T10:20:42Z 2008-09-25T10:20:42Z It's even better... char c = 2[&quot;Hello&quot;]; (c == 'l' after this). http://stackoverflow.com/questions/117346/c-timing-milliseconds-since-last-whole-second/117564#117564 Comment by yrp on C++ timing, milliseconds since last whole second yrp 2008-09-22T22:00:56Z 2008-09-22T22:00:56Z Those problems apply for QueryPerformanceTimer as well -- <a href="http://www.virtualdub.org/blog/pivot/entry.php?id=106" rel="nofollow">virtualdub.org/blog/pivot/&hellip;</a> http://stackoverflow.com/questions/93073/how-to-implement-thread-safe-reference-counting-in-c/93130#93130 Comment by yrp on How to implement thread safe reference counting in C++ yrp 2008-09-18T14:47:33Z 2008-09-18T14:47:33Z Or simply InterlockedIncrement/Decrement.