The new C++11 standard includes a nice new feature called range-based for. The syntax allows for simple and quick iteration over ranges, such as containers. Usage looks like so: for (int& x : my_container) { do_something_with(i); } Pretty handy. Unfortunately, this new feature is not supported in MSVC 2010. In fact, very few C++11 [...]
Our game SONAR is now available on the Chrome Web Store! SONAR is one of the first commercial WebGL games released (possibly the first one ever to be written from the ground up in pure JavaScript). The gameplay is very similar in spirit to Subsonic, our sophomore DigiPen project. Aside from snazzy new 3D visuals, [...]