User Jasper Bekkers - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T18:35:46Zhttp://stackoverflow.com/feeds/user/31486http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1855859/curving-from-one-point-to-another/1856075#18560750Answer by Jasper Bekkers for Curving from one point to anotherJasper Bekkers2009-12-06T18:03:18Z2009-12-06T18:03:18Z<p>What you're looking for is a <a href="http://en.wikipedia.org/wiki/Cubic%5FHermite%5Fspline" rel="nofollow">Catmul-Rom spline</a>, it's a type of Hermite spline that passes though the control points. Bezier curves are not the way to go, they are difficult to control in this situation.</p>
http://stackoverflow.com/questions/461356/does-english-hinder-you-to-enhance-your-programming-skills/461510#4615101Answer by Jasper Bekkers for Does "English" hinder you to enhance your programming skills?Jasper Bekkers2009-01-20T14:27:13Z2009-11-19T01:04:42Z<p>I'm not a native speaker myself, but I feel that English has, if anything, enhanced my programming abilities because there are not that as good resources available in my native language (Dutch). There are some for more generic topics (e.g. explaining languages and common data structures) but those tend to be no more than awful translations of the original source. Specialist topics are even worse because research papers hardly ever get translated and the number of people that are proficient in those areas and speak my particular language are very small.</p>
http://stackoverflow.com/questions/1502799/memory-leak-tool-for-c-under-windows/1502953#15029533Answer by Jasper Bekkers for Memory leak tool for C++ under WindowsJasper Bekkers2009-10-01T09:45:17Z2009-10-01T09:45:17Z<p>In combination with Visual Studio I generally use <a href="http://wyw.dcweb.cn/leakage.htm" rel="nofollow">Visual Leak Detector</a> or simply _CrtDumpMemoryLeaks() which is a win32 api call. Both are nothing fancy but they get the job done.</p>
http://stackoverflow.com/questions/1439102/improving-soccer-simulation-algorithm/1468723#14687232Answer by Jasper Bekkers for Improving soccer simulation algorithmJasper Bekkers2009-09-23T21:54:17Z2009-09-23T22:14:17Z<p>I (quickly) read through it and I noticed a couple of things:</p>
<ul>
<li><p>The percentage a red / yellow card is handed out is the same in all thirds of the field, is this intentional? I'm not a soccer guy, but I'd say that offences are more likely to happen on the last third of the field, than on the first. (Because if you're on the first, you're likely defending)</p></li>
<li><p>The percentage to determine that a penalty is scored is the same for each team, however some teams, or rather players, are more likely to score a penalty than others.</p></li>
<li><p>You're not taking into account corner kicks, possible injuries after a foul, or goals scored using the head (which might be worth mentioning in the report).</p></li>
</ul>
<p>Apart from that, you'll just need to run this simulation a <em>lot</em> of times and see if the values you chose are correct; tweak the algorithm. The best thing to do is hand tweak it (eg. read all the constants from a file and run a couple of hundred simulations with different values and different teams), the easiest thing to do is probably to implement a Genetic Algorithm to try and find better values.</p>
<p>Basically what you have here is genuine gameplay / ai code, so you might want to read up on techniques used by game studios to manage this type of code. (One thing is to put the variables in a google spreadsheet which you can then share / tweak more easily, for example).</p>
<p>Also, even though you're missing some things that a real soccer match has, there's no point trying to be as realistic as possible because generally in these cases it's more important to provide nice gameplay than it is to provide an accurate simulation.</p>
http://stackoverflow.com/questions/1417681/simd-programming-languages5SIMD programming languagesJasper Bekkers2009-09-13T12:50:45Z2009-09-23T14:15:28Z
<p>In the last couple of years, I've been doing a lot of SIMD programming and most of the time I've been relying on compiler intrinsic functions (such as the ones for SSE programming) or on programming assembly to get to the really nifty stuff. However, up until now I've hardly been able to find any programming language with built-in support for SIMD.</p>
<p>Now obviously there are the shader languages such as HLSL, Cg and GLSL that have native support for this kind of stuff however, I'm looking for something that's able to at least compile to SSE without autovectorization but with built-in support for vector operations. Does such a language exist?</p>
<p>This is an example of (part of) a Cg shader that does a spotlight and in terms of syntax this is probably the closest to what I'm looking for.</p>
<pre><code>float4 pixelfunction(
output_vs IN,
uniform sampler2D texture : TEX0,
uniform sampler2D normals : TEX1,
uniform float3 light,
uniform float3 eye ) : COLOR
{
float4 color = tex2D( texture, IN.uv );
float4 normal = tex2D( normals, IN.uv ) * 2 - 1;
float3 T = normalize(IN.T);
float3 B = normalize(IN.B);
float3 N =
normal.b * normalize(IN.normal) +
normal.r * T +
normal.g * B;
float3 V = normalize(eye - IN.pos.xyz);
float3 L = normalize(light - IN.pos);
float3 H = normalize(L + V);
float4 diffuse = color * saturate( dot(N, L) );
float4 specular = color * pow(saturate(dot(N, H)), 15);
float falloff = dot(L, normalize(light));
return pow(falloff, 5) * (diffuse + specular);
}
</code></pre>
<p>Stuff that would be a real must in this language is:</p>
<ul>
<li>Built in swizzle operators</li>
<li>Vector operations (dot, cross, normalize, saturate, reflect et cetera)</li>
<li>Support for custom data types (structs)</li>
<li>Dynamic branching would be nice (for loops, if statements)</li>
</ul>
http://stackoverflow.com/questions/1417681/simd-programming-languages/1438622#14386220Answer by Jasper Bekkers for SIMD programming languagesJasper Bekkers2009-09-17T12:40:54Z2009-09-17T12:40:54Z<p>Currently the best solution is to do it myself by creating a back-end for the open-source Cg frontend that Nvidia released, but I'd like to save myself the effort so I'm curious if it's been done before. Preferably I'd start using it right away.</p>
http://stackoverflow.com/questions/1130290/c-coding-practices-for-performance-or-code-size-beyond-what-a-compiler-does/1130363#11303632Answer by Jasper Bekkers for C coding practices for performance or code size - beyond what a compiler doesJasper Bekkers2009-07-15T09:30:40Z2009-07-15T09:30:40Z<p>Compilers these days still aren't very good at vectorizing your code so you'll still want to do the SIMD implementation of most algorithms yourself.</p>
<p>Choosing the right datastructures for your exact problem can dramatically increase performance (I've seen cases where moving from a Kd-tree to a BVH would do that, in that specific case).</p>
<p>Compilers might pad some structs/ variables to fit into the cache but other cache optimizations such as the locality of your data are still up to you.</p>
<p>Compilers still don't automatically make your code multithreaded and using openmp, in my experience, doesn't really help much. (You really have to understand openmp anyway to dramatically increase performance). So currently, you're on your own doing multithreading.</p>
http://stackoverflow.com/questions/1126529/what-is-the-cost-of-an-l1-cache-miss/1130074#11300740Answer by Jasper Bekkers for What is the Cost of an L1 Cache Miss?Jasper Bekkers2009-07-15T08:16:17Z2009-07-15T08:22:10Z<p>The easiest thing to do is to take a scaled photograph of the target cpu and physically measure the distance between the core and the level-1 cache. Multiply that distance by the distance electrons can travel per second in copper. Then figure out how many clock-cycles you can have in that same time. That's the minimum number of cpu cycles you'll waste on a L1 cache miss.</p>
<p>You can also work out the minimum cost of fetching data from RAM in terms of the number of CPU cycles wasted in the same way. You might be amazed.</p>
<p>Notice that what you're seeing here definitely has something to do with cache-misses (be it L1 or both L1 and L2) because normally the cache will pull out data on the same cache line once you access anything on that cache-line requiring less trips to RAM.</p>
<p>However, what you're probably also seeing is the fact that RAM (even though it's calls Random Access Memory) still preferres linear memory access. </p>
http://stackoverflow.com/questions/1124520/why-differ-is-faster-than-equal/1124604#11246046Answer by Jasper Bekkers for Why differ(!=,<>) is faster than equal(=,==) ?Jasper Bekkers2009-07-14T10:37:53Z2009-07-14T10:37:53Z<p>It could have something to do with branch prediction on the CPU. Static branch prediction would predict that a branch simply wouldn't be taken and fetch the next instruction. However, hardly anybody uses that anymore. Other than that, I'd say it's bull because the comparisons should be identical.</p>
http://stackoverflow.com/questions/1117275/should-i-include-a-command-line-mode-in-my-applications/1117362#11173621Answer by Jasper Bekkers for Should I include a command line mode in my applications?Jasper Bekkers2009-07-13T00:58:08Z2009-07-13T00:58:08Z<p>Creating an application on the windows platform that behaves correctly as a console application can be problematic it's an issue with the windows kernel architecture as they're considered two different types of application (they have a different subsystem that you generally specify in the compiler or linker options). You can still manually redirect the IO and open a console from a win32 application by the win32 function AllocConsole() and friends but this also has some issues. See <a href="http://blogs.msdn.com/oldnewthing/archive/2009/01/01/9259142.aspx" rel="nofollow" title="This Old New Thing post">This Old New Thing post</a> for more information.</p>
http://stackoverflow.com/questions/1113919/where-can-i-learn-the-basics-of-game-physics-and-the-math-behind-it/1114176#11141760Answer by Jasper Bekkers for Where can I learn the basics of game physics and the math behind it?Jasper Bekkers2009-07-11T17:11:29Z2009-07-11T17:11:29Z<p>Over the years I read quite a couple of books on the topic, but the one that stuck with me the most (because of it's clarity) is <a href="http://www.procyclone.com/" rel="nofollow">"Game Physics Engine Development"</a>.</p>
<p>It'll teach you most of the things you need to know, like mass-spring systems, rigid body mechanics, collision detection and simple particle systems. Other books, such as <a href="http://www.geometrictools.com/Books/GamePhysics/AboutTheBook.html" rel="nofollow">Game Physics</a> are more comprehensive but are way harder to understand because it dives into the math more deeply.</p>
http://stackoverflow.com/questions/1102692/how-to-do-alpha-blend-fast/1103281#11032812Answer by Jasper Bekkers for How to do alpha blend fast?Jasper Bekkers2009-07-09T11:25:05Z2009-07-09T11:25:05Z<p>You can always calculate the alpha of red and blue at the same time. You can also use this trick with the SIMD implementation mentioned before.</p>
<pre><code>int colora = 0xFFFFFF; // a color
int colorb = 0xFF007F; // other color
int rb = (colora & 0xFF00FF) + (alpha * (colorb & 0xFF00FF));
int g = (colora & 0x00FF00) + (alpha * (colorb & 0x00FF00));
return (rb & 0xFF00FF) + (g & 0x00FF00);
</code></pre>
http://stackoverflow.com/questions/1083879/best-programmers-image-editor-for-osx/1084178#10841780Answer by Jasper Bekkers for Best Programmer's Image Editor for OSXJasper Bekkers2009-07-05T14:32:53Z2009-07-05T14:32:53Z<p>You can always use PHP with GD. Or use image magick from the commandline.</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/238388#2383882Answer by Jasper Bekkers for What is the single most influential book every programmer should read?Jasper Bekkers2008-10-26T18:15:46Z2009-07-04T09:10:59Z<p><a href="http://rads.stackoverflow.com/amzn/click/0812972155" rel="nofollow">Masters of doom.</a> As far as motivation and love for your profession go: it won't get any better than what's been described in this book, truthfully inspiring story!</p>
http://stackoverflow.com/questions/1036504/trie-implementation/1037482#10374820Answer by Jasper Bekkers for Trie implementationJasper Bekkers2009-06-24T10:09:25Z2009-06-24T10:09:25Z<p>Cache optimizations are something you'll probably are going to have to do, because you'll have to fit the data into a single cacheline which generally is something like 64 bytes (which will probably work if you start combining data, such as pointers). But it's tricky :-)</p>
http://stackoverflow.com/questions/1030507/whats-the-absolute-minimum-a-programmer-should-know-about-binary-numbers-and-ari/1030781#10307813Answer by Jasper Bekkers for What's the absolute minimum a programmer should know about binary numbers and arithmetic ?Jasper Bekkers2009-06-23T05:42:32Z2009-06-23T05:42:32Z<p>From the top of my head, here are some examples of where I've used bitwise operators to do useful stuff.</p>
<p>A piece of javascript that needed one of those "check all" boxes was something along these lines:</p>
<pre><code>var check = true;
for(var i = 0; i < elements.length; i++)
check &= elements[i].checked;
checkAll.checked = check;
</code></pre>
<p>Calculate the corner points of a cube.</p>
<pre><code>Vec3f m_Corners[8];
void corners(float a_Size){
for(size_t i = 0; i < 8; i++){
m_Corners[i] = a_Size * Vec3f(axis(i, Vec3f::X), axis(i, Vec3f::Y), axis(i, Vec3f::Z));
}
}
float axis(size_t a_Corner, int a_Axis) const{
return ((a_Corner >> a_Axis) & 1) == 1
? -.5f
: +.5f;
}
</code></pre>
<p>Draw a Sierpinski triangle</p>
<pre><code>for(int y = 0; y < 512; y++)
for(int x = 0; x < 512; x++)
if(x & y) pixels[x + y * w] = someColor;
else pixels[x + y * w] = someOtherColor;
</code></pre>
<p>Finding the next power of two</p>
<pre><code>int next = 1 << ((int)(log(number) / log(2));
</code></pre>
<p>Checking if a number is a power of two</p>
<pre><code>bool powerOfTwo = number & (number - 1);
</code></pre>
<p>The list can go on and on, but for me these are (except for Sierpinksi) everyday examples. Once you'll understand and work with it though, you'll encounter it in more and more places such as the corners of a cube.</p>
http://stackoverflow.com/questions/881143/cubic-spline-extrapolation/881211#8812110Answer by Jasper Bekkers for cubic spline extrapolationJasper Bekkers2009-05-19T06:18:31Z2009-05-19T06:18:31Z<p>Generally for spline interpolation you use a variable t to interpolate over the line. As long as 0 <= t <= 1 you're interpolating. However, when t < 0 or t > 1 you're simply extrapolating the spline. </p>
http://stackoverflow.com/questions/828764/why-do-we-refactor/828842#8288420Answer by Jasper Bekkers for Why do we Refactor?Jasper Bekkers2009-05-06T09:38:31Z2009-05-06T09:38:31Z<p>Refactoring to me is like cleaning my desk; it creates a better working environment because over time it will get messy.</p>
http://stackoverflow.com/questions/794462/posix-threads-experience-or-recommend-better-one/794573#7945730Answer by Jasper Bekkers for POSIX threads experience? (Or recommend better one)Jasper Bekkers2009-04-27T18:03:12Z2009-04-27T18:03:12Z<p>I've found it to be pretty similar to the win32 thread API, the only (real) difference you need to be aware of is that win32 mutexes don't block when used on the same thread while posix do. Apart from that, it's a pretty straight forward API.</p>
http://stackoverflow.com/questions/772709/whats-the-proper-c-way-to-do-global-variables/773087#7730875Answer by Jasper Bekkers for What's the proper "C++ way" to do global variables?Jasper Bekkers2009-04-21T15:11:45Z2009-04-21T15:11:45Z<p>Why not use the system that's already in place? That is, redirect std::clog to output to a file and write to std::clog.</p>
<pre><code>std::fstream *f = new std::fstream("./my_logfile.log")
std::clog.rdbuf(f->rdbuf());
std::clog << "Line of log information" << std::endl;
</code></pre>
http://stackoverflow.com/questions/766172/how-to-make-this-matrix-class-easier-to-use-in-the-debugger/766608#7666083Answer by Jasper Bekkers for How to make this Matrix class easier to use in the debuggerJasper Bekkers2009-04-20T02:08:48Z2009-04-20T02:08:48Z<p>XCode allows you to create <a href="http://developer.apple.com/documentation/DeveloperTools/Conceptual/XcodeDebugging/600-Viewing%5FVariables%5Fand%5FMemory/variables%5Fand%5Fmemory.html#//apple%5Fref/doc/uid/TP40007057-CH9-SW24" rel="nofollow">custom data formatters</a> to format the data in the debugger in any way you'd want.</p>
http://stackoverflow.com/questions/346659/what-are-the-most-common-sql-anti-patterns/764805#7648052Answer by Jasper Bekkers for What are the most common SQL anti-patterns?Jasper Bekkers2009-04-19T03:53:16Z2009-04-19T03:53:16Z<pre><code>SELECT FirstName + ' ' + LastName as "Full Name", case UserRole when 2 then "Admin" when 1 then "Moderator" else "User" end as "User's Role", case SignedIn when 0 then "Logged in" else "Logged out" end as "User signed in?", Convert(varchar(100), LastSignOn, 101) as "Last Sign On", DateDiff('d', LastSignOn, getDate()) as "Days since last sign on", AddrLine1 + ' ' + AddrLine2 + ' ' + AddrLine3 + ' ' + City + ', ' + State + ' ' + Zip as "Address", 'XXX-XX-' + Substring(Convert(varchar(9), SSN), 6, 4) as "Social Security #" FROM Users
</code></pre>
<p>Or, cramming everything into one line.</p>
http://stackoverflow.com/questions/764190/how-to-not-lose-ones-will-to-code/764335#7643353Answer by Jasper Bekkers for How to Not Lose One's Will to CodeJasper Bekkers2009-04-18T22:14:06Z2009-04-18T22:14:06Z<p>The day you'll get bored with coding a private project, is that day you've lost your imagination. So find a private project :-)</p>
http://stackoverflow.com/questions/764247/why-are-regular-expressions-considered-so-controversial/764321#76432116Answer by Jasper Bekkers for Why are regular expressions considered so controversial?Jasper Bekkers2009-04-18T22:06:03Z2009-04-18T22:06:03Z<p>People tend to think regular expressions are hard; but that's because they're using them wrong. Writing complex one-liners without any comments, indenting or named captures. (You don't cram your complex SQL expression in one line, without comments, indenting or aliases, do you?). So yes, for a lot of people, they don't make sense.</p>
<p>However, if your job has <em>anything</em> to do with parsing text (roughly any web-application out there...) and you don't know regular expression, you suck at your job and you're wasting your own time and that of your employer. There are <a href="http://www.regular-expressions.info/" rel="nofollow">excellent resources</a> out there to teach you everything about them that you'll ever need to know, and more.</p>
http://stackoverflow.com/questions/762580/optimizing-a-non-tail-recursive-function/762687#7626873Answer by Jasper Bekkers for Optimizing a non-tail-recursive function.Jasper Bekkers2009-04-18T00:59:20Z2009-04-18T01:22:48Z<p>This code is untested, but from the top of my head, the iterative function should look something like this:</p>
<pre><code>function render($index){
$stack = array();
array_push($index);
$pre = '';
$post = '';
while(!empty($stack)){
$idx = array_pop($stack);
foreach($things[$idx] as $key => $value){
$pre .= '<1>';
$spost = '';
if(isset($data['id'])){
$pre .= '<2 class="wrap">';
$spost .= '</2>';
$stack[] = $things[$data['id']];
}
$spost .= '</1>';
$post .= $spost;
}
}
return $pre . $post;
}
</code></pre>
http://stackoverflow.com/questions/755878/any-hard-data-on-gc-vs-explicit-memory-management-performance/755973#75597311Answer by Jasper Bekkers for Any hard data on GC vs explicit memory management performance?Jasper Bekkers2009-04-16T12:48:09Z2009-04-16T14:04:57Z<p>The cost of memory allocation is generally much lower in a garbage collected memory model, then when just using new or malloc explicitly because garbage collectors generally pre-allocate this memory. However, explicit memory models may also do this (using memory pools or memory areas); making the cost of memory allocation equivalent to a pointer addition.</p>
<p>As <a href="http://blogs.msdn.com/oldnewthing/archive/2005/05/10/415991.aspx" rel="nofollow">Raymond Chen</a> and <a href="http://blogs.msdn.com/ricom/archive/2005/05/10/416151.aspx" rel="nofollow">Rico Mariani</a> pointed out, managed languages tend to out perform unmanaged languages in the general case. However, after pushing it, the unmanaged language can and will eventually beat the GC/Jitted language.</p>
<p>The same thing is also evident in the <a href="http://shootout.alioth.debian.org/u32q/benchmark.php?test=all&lang=all#faster" rel="nofollow">Computer Language Shootout</a> because even though C++ tends to rank higher than Java most of the time, you'll often see C++ implementations jumping trough various hoops (such as object pools) to achieve optimal performance. Garbage collected languages, however, tend to have easier to follow and more straight forward implementations because the GC is better at allocating (small chunks of) memory.</p>
<p>However, performance isn't the biggest difference when it comes to GC vs non-GC; arguably it's the deterministic finalization (or RIIA) of non-GC (and reference counted) languages that is the biggest argument for explicit memory management because this is generally used for purposes other than memory management (such as releasing locks, closing file or window handles et cetera). 'Recently' however C# introduced the using / IDisposable construct to do exactly this.</p>
<p>Another problem with garbage collection is that the systems they use tend to be rather complex to prevent memory leaks. However, this also makes it way more difficult to debug and track down once you do have a memory leak (yes, even garbage collected languages can have memory leaks).</p>
<p>On the flip side, the garbage collected language can do the most optimal thing at the most optimal time (or approximately) without having to burden the developer with that task. This means that developing for a GC language might be more natural, so you can focus more on the <em>real</em> problem.</p>
http://stackoverflow.com/questions/745819/how-can-i-implement-metaclasses-in-c/745859#7458592Answer by Jasper Bekkers for How can I implement metaclasses in C++?Jasper Bekkers2009-04-14T00:02:39Z2009-04-14T00:02:39Z<p>C++ Doesn't have built-in support for meta-classes (not in the Python/Objective-C way), however you can manually mimic the behavior of meta-classes. The basics are pretty simple, you create an extra class with a longer lifespan (Singleton, static object or the <a href="http://en.wikibooks.org/wiki/More%5FC%2B%2B%5FIdioms/Construct%5FOn%5FFirst%5FUse" rel="nofollow">Construct On First Use Idiom</a>) that is able to create and manipulate it's corresponding class. (In Objective-C the meta-class generally contains 'static' member variables, the memory allocation/deallocation routines et cetera).</p>
<p>What Qt has done is, they took the concept of meta-classes and modified it so that they can support some form of Reflection (and RTTI on systems that don't support it). Implementing this will require either a lot of macro magic or a custom compiler (such as they've chosen to use).</p>
<p>Generally though, most of the features a regular meta-class provides are already provided by the C++ language; just in a different form. And really, the only reason you'd want meta-objects would be for reflection purposes, there are different ways to implement reflection in C++ as outlined in <a href="http://www.garret.ru/cppreflection/docs/reflect.html" rel="nofollow">this document</a>.</p>
<p>Besides that, if you're really set on a Objective-C-style meta-class system, I'm not aware of any libraries that do that but there might very well be. On the other hand, rolling your own shouldn't be that difficult either.</p>
http://stackoverflow.com/questions/745152/what-is-the-maximum-size-of-buffers-memcpy-memset-etc-can-handle/745166#7451660Answer by Jasper Bekkers for What is the maximum size of buffers memcpy/memset etc. can handle?Jasper Bekkers2009-04-13T20:00:49Z2009-04-13T20:00:49Z<p>They take a size_t argument; so the it's platform dependent.</p>
http://stackoverflow.com/questions/743191/how-to-parse-lines-with-differing-number-of-fields-in-c/743848#7438482Answer by Jasper Bekkers for How to Parse Lines With Differing Number of Fields in C++Jasper Bekkers2009-04-13T13:07:23Z2009-04-13T13:17:06Z<p>Another C++ only version that just uses the fact that istream must set the failbit if operator>> fails to parse.</p>
<pre><code>while(getline(ss, line))
{
stringstream sl(line);
sl >> tag >> v1 >> v2 >> v3 >> v4;
if(sl.rdstate() == ios::failbit) // failed to parse 5 arguments?
{
sl.clear();
sl.seekg(ios::beg);
sl >> tag >> v1 >> v2 >> v4; // do it again with 4
v3 = "EMPTY"; // just a default value
}
cout << "tag: " << tag <<std::endl
<< "v1: " << v1 << std::endl
<< "v2: " << v2 << std::endl
<< "v3: " << v3 << std::endl
<< "v4: " << v4 << std::endl << std::endl;
}
</code></pre>
http://stackoverflow.com/questions/743191/how-to-parse-lines-with-differing-number-of-fields-in-c/743633#7436331Answer by Jasper Bekkers for How to Parse Lines With Differing Number of Fields in C++Jasper Bekkers2009-04-13T11:21:09Z2009-04-13T11:27:59Z<p>The simplest thing is just to use two calls to fscanf, scanf or sscanf like so:</p>
<pre><code>std::string line = /* some line */;
if(sscanf(line.c_str(), "%s %f %f %s", &str1, &float1, &float2, &str2) == 4){
// 4 parameters
}else if(sscanf(line.c_str(), ...) == 5){
// 5 parameters
}
</code></pre>
<p>Using boost::Spirit seems like overkill, though this isn't the most C++-ish way of doing things.</p>
http://stackoverflow.com/questions/723324/php-and-the-goto-statement-to-be-added-in-php-5-3/723343#723343Comment by Jasper Bekkers on PHP and the goto statement to be added in PHP 5.3Jasper Bekkers2009-12-14T10:36:48Z2009-12-14T10:36:48ZBecause PHP is a reference counted (instead of garbage collected) language you can use RAII to do the cleanup at the end of the function.http://stackoverflow.com/questions/1885912/which-is-optimal/1885996#1885996Comment by Jasper Bekkers on Which is optimal ?Jasper Bekkers2009-12-11T05:43:19Z2009-12-11T05:43:19ZIt could make a difference because the register allocation could be different; depending on the register allocation algorithm that's being used variables with a longer 'live range' will generally be spilled to memory while variables with a shorter live range will be stored in the registers.http://stackoverflow.com/questions/1881468/c-what-is-compile-time-polymorphism-and-why-does-it-only-apply-to-functions/1881964#1881964Comment by Jasper Bekkers on C++ What is compile-time polymorphism and why does it only apply to functions?Jasper Bekkers2009-12-10T16:26:08Z2009-12-10T16:26:08ZI think it's useful according to the standard committee, because they chose to work around this specific problem with the implementation of std::mem_fun / std::mem_fun_t. Basically what they did was:
template<typename _Tx>
std::mem_fun_t<_Tx> mem_fun(const _Tx &t)
{
return std::mem_fun_t<_Tx>(t);
}http://stackoverflow.com/questions/356068/viability-of-c-net-as-the-new-standard-game-dev-platform/356097#356097Comment by Jasper Bekkers on Viability of C#/.NET as the new standard game dev platform?Jasper Bekkers2009-12-10T13:53:04Z2009-12-10T13:53:04ZLearning OpenGL is a Good Thing, since every console (PS3, Wii, iPhone, PSP, DS) are using OpenGL based rendering architectures.http://stackoverflow.com/questions/356068/viability-of-c-net-as-the-new-standard-game-dev-platform/374145#374145Comment by Jasper Bekkers on Viability of C#/.NET as the new standard game dev platform?Jasper Bekkers2009-12-10T13:51:11Z2009-12-10T13:51:11ZI think the future of C++ in games will largely depend on how C++0x will get adopted by the industry. http://stackoverflow.com/questions/61401/hidden-features-of-php/163857#163857Comment by Jasper Bekkers on Hidden Features of PHP?Jasper Bekkers2009-12-10T11:25:55Z2009-12-10T11:25:55Z@Cory: Just have __autoload keep a list of classes loaded and the files it has loaded them from.http://stackoverflow.com/questions/61401/hidden-features-of-php/62525#62525Comment by Jasper Bekkers on Hidden Features of PHP?Jasper Bekkers2009-12-10T11:24:01Z2009-12-10T11:24:01Z9 Out of 10 times variable variables are better replaced with arrays so you have all the data in one place, you can iterate over it et cetera. Only in some very specific circumstances might they be useful.http://stackoverflow.com/questions/61401/hidden-features-of-php/61482#61482Comment by Jasper Bekkers on Hidden Features of PHP?Jasper Bekkers2009-12-10T11:22:19Z2009-12-10T11:22:19ZUseful for view-level logic and implementing Mixins as known in Ruby, for example.http://stackoverflow.com/questions/61401/hidden-features-of-php/61489#61489Comment by Jasper Bekkers on Hidden Features of PHP?Jasper Bekkers2009-12-10T11:21:28Z2009-12-10T11:21:28ZI've used this to create a simple DSL for my view layer by just reading the PHP file, doing some string replacement and passing it trough eval(). Eg, I made it such that I can use short-tags whenever I choose to and do @->someVar so I can access view-level data.http://stackoverflow.com/questions/1862287/optimizing-a-pinhole-camera-rendering-systemComment by Jasper Bekkers on Optimizing a pinhole camera rendering systemJasper Bekkers2009-12-08T01:00:16Z2009-12-08T01:00:16ZNice to see fellow IGAD students over here as well :-)http://stackoverflow.com/questions/1439102/improving-soccer-simulation-algorithm/1468723#1468723Comment by Jasper Bekkers on Improving soccer simulation algorithmJasper Bekkers2009-09-25T17:59:50Z2009-09-25T17:59:50ZNow obviously, you don't really need a perfect implementation, or the perfect algorithm. The only real mission is that the results that the algorithm provide comply with the expectations of your users and are fun to play with.http://stackoverflow.com/questions/1439102/improving-soccer-simulation-algorithm/1468723#1468723Comment by Jasper Bekkers on Improving soccer simulation algorithmJasper Bekkers2009-09-25T17:51:12Z2009-09-25T17:51:12ZFor the Genetic algorithm, what I'd do is try to mimic an actual soccer competition eg. run the algorithm until the result of the algorithm matches the correct positions in the competition. Base the fitness score, for example, on the Levenshtein distance between the generated competition and the actual competition. Now obviously the values you've assigned to the teams will be subjective; but those values will yield roughly the desired results. There would also be a problem with with the random numbers, but you could probably just mock the PNRG away.http://stackoverflow.com/questions/1439102/improving-soccer-simulation-algorithm/1468723#1468723Comment by Jasper Bekkers on Improving soccer simulation algorithmJasper Bekkers2009-09-25T17:47:51Z2009-09-25T17:47:51ZWhat you do is find some values for some set of well known teams (or rather, teams that win most of the time and teams that you'd expect lose all the time). And then you decide which results you like most. Now the problem with this is, of course, that your interpretation of the results can be very subjectively.http://stackoverflow.com/questions/1471353/whats-the-c-equivalent-of-uint32max/1471373#1471373Comment by Jasper Bekkers on What's the C++ equivalent of UINT32_MAX?Jasper Bekkers2009-09-24T12:38:55Z2009-09-24T12:38:55Zstd::numeric_limits<T>::max() :-)http://stackoverflow.com/questions/1439102/improving-soccer-simulation-algorithm/1439207#1439207Comment by Jasper Bekkers on Improving soccer simulation algorithmJasper Bekkers2009-09-23T21:36:25Z2009-09-23T21:36:25ZWhy consider optimizing? He asked for improvements for his algorithm.