Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for Haxifix

So, I wrote this snake game in C++ using SFML 2.0 RC and everything was working perfectly until I tried to implement frame independent movement. I understand how to do it, but I can't seem to make it work with my snake game. If the SCALE define is set to …

Member Avatar for Haxifix
0
252
Member Avatar for Haxifix

I am attempting to learn Assembly (x86 Assembly on Windows using NASM) but am having trouble understanding what this is doing. Can someone please explain line by line what this code is doing? I have commented the lines that I think I know what they do, but I'm not sure. …

Member Avatar for Ancient Dragon
0
179
Member Avatar for Haxifix

My friend and I were making a pac man console game in C++, and we can't seem to get the AI we wrote for our ghosts to work properly [code] #include <iostream> #include <Windows.h> using namespace std; struct Player { int x, y; Player() { x = -1; y = …

Member Avatar for Haxifix
0
919
Member Avatar for darkangel07

a1x1 + b1x2 + c1x3 = d1 a2x1 + b2x2 + c2x3 = d2 a3x1 + b3x2 + c3x3 = d3 create a c++ program that will accept the values for a,b,c,d and determine the values for x1, x2, x3. Display the values for x1, x2, x3... need help now!!!! …

Member Avatar for tesuji
0
143
Member Avatar for Haxifix

Hey guys, I wrote a TicTacToe program at my friends house in like 10 minutes, so I am sure I can improve some things. Can someone please give me some idea's on either stuff to add or stuff I can improve on (make more efficient). [code]#include <iostream> using namespace std; …

Member Avatar for mrnutty
0
148