Yesterday was my birthday and it was awesome. Everyone on Steam Friends was congratulating me, but there’s probably no way around that since I tend to be such an attention whore at moments like those :3. I got the game Empire: Total War and the rest of the budget for buying games coming soon like Bioshock 2. I also went to the cinema to see Angels and Demons, which was truly epic. I really like those kind of movies!
Evolve
There’s not a lot to tell about Evolve right now, but I can assure you it’s going as good as I want so far. I’m looking forward to working on the GUI, but for now it’s simple getting all NewAdmin commands back. In the future the Evolve framework will very likely consist of the following ‘classes’:
- Plugin manager
- Settings class – Will save settings like whether to show playernames
CakePhysics
I also rediscovered the free, open source physics engine Box2D. It’s really easy to use, especially when you write a quick little wrapper class for it. Basically, a wrapper class simplifies things
. Now, this is all I need to simulate a box falling to the ground:
#include "stdafx.h" #include "Box2D.h" #include#include "physics.h" int main( ) { phys->createWorld( 640.0f, 480.0f, -9.81f, true ); phys->createGround( 640.0f, 480.0f ); b2Body* box = phys->createBox( 320.0f, 4.0f, 1.0f, 1.0f, 1.0f, 0.3f ); for ( int i = 0; i < 60; i++ ) { phys->simulateWorld( 1.0f / 60.0f, 8, 1 ); b2Vec2 position = box->GetPosition( ); float angle = box->GetAngle( ); bool isSleeping = box->IsSleeping( ); printf("%4.2f %4.2f %4.2f %s\n", position.x, position.y, angle, isSleeping ? "True" : "False"); } getchar(); return 0; }
Finally, I want to make this into a small physics sandbox like Phun! I’m mainly making this as a demonstration project of my skill and for tuning my C++ skills.
Now the less awesome stuff you’ve been waiting for :V. If you’re a regular visitor of Facepunch, you know that Hezzy is all about the moderator team. Well, one of my fellow GMod.com admins, mm3guy, has just been promoted to Super Moderator to replace DaveP. Of course I envy him, but in my eyes he did deserve it the best of all moderators on gmod.com.
What annoys me more, however, is that Hezzy completely ignores me. Mahalis, the Lua forum moderator, recommended me to Hezzy a while ago to join him in moderating the Lua forum, but I had to do with a ‘no’. I just want to know why he hates me so much…
So, that’s my rant for today.

