Search found 8 matches

by austech
Wed May 06, 2009 2:14 pm
Forum: Programming Discussion
Topic: Really Usefull Header I made (Window's Key/Mouse Inputs)
Replies: 12
Views: 1830

Re: Really Usefull Header I made (Window's Key/Mouse Inputs)

This would need a loop unless you're really damn fast with hitting a key before the program ends :lol: But here's a better example of how to use this with the good ol' hello world program :mrgreen: #include <iostream> #include <Inputs.hpp> int main() { bool Run = true; while(Run) { if(Input::KeyIsDo...
by austech
Thu Apr 30, 2009 1:54 pm
Forum: Programming Discussion
Topic: SFML
Replies: 14
Views: 1775

Re: SFML

I personally like SFML, but one thing that I hated was that I couldn't get sound to work with my programs using the audio part of it. So I used SDL for audio. So I'm using both at the moment :lol:
by austech
Wed Apr 29, 2009 8:27 pm
Forum: Programming Discussion
Topic: Really Usefull Header I made (Window's Key/Mouse Inputs)
Replies: 12
Views: 1830

Re: Realy Usefull Header I made

eatcomics wrote:Well now we have 2 useful code snippets ;)
Thanks glad you liked it :mrgreen:
by austech
Wed Apr 29, 2009 7:26 pm
Forum: Programming Discussion
Topic: Math++
Replies: 9
Views: 931

Re: Math++

Hmm, this makes me want to make programs to do my geometry homework :P

But it is true that it makes studying a little fun and learn. Maby now I wont fail my math tests :lol:
by austech
Wed Apr 29, 2009 6:14 pm
Forum: Programming Discussion
Topic: Really Usefull Header I made (Window's Key/Mouse Inputs)
Replies: 12
Views: 1830

Re: Realy Usefull Header I made

MarauderIIC wrote:Hmmm... there's definitely a lot of pattern, here. I'm sure it can be reduced somehow...
How? Because it would be nice if it was reduced :S
by austech
Wed Apr 29, 2009 3:17 pm
Forum: Programming Discussion
Topic: Really Usefull Header I made (Window's Key/Mouse Inputs)
Replies: 12
Views: 1830

Really Usefull Header I made (Window's Key/Mouse Inputs)

Hello, Ive been working on a header class that makes using keyboard and mouse inputs easy. (WORKS ONLY ON WINDOWS, SORRY ;) ) #include <Windows.h> #pragma once namespace Input { namespace Key { void Hold_Shift() { keybd_event(VK_SHIFT,0,0,0); } void Undo_Shift() { keybd_event(VK_SHIFT,0,KEYEVENTF_KE...
by austech
Fri Oct 31, 2008 11:44 pm
Forum: General/Off-Topic
Topic: Official "Hello, World! (I'm new!)" thread
Replies: 821
Views: 624284

Re: Official "Hello, World! (I'm new!)" thread

GyroVorbis wrote:Thanks, man. Welcome to the boards.

It looks like at least 3 or 4 of us have been up all night coding instead of getting out and doing anything with our Halloween, haha.
Lol thanks.
by austech
Fri Oct 31, 2008 11:20 pm
Forum: General/Off-Topic
Topic: Official "Hello, World! (I'm new!)" thread
Replies: 821
Views: 624284

Re: Official "Hello, World! (I'm new!)" thread

Hey what's up. Im austech and I just joined about 5 minutes ago right after seeing adventures in game dev 14 part 3. I am I guese a noob C++ programmer. Im learning from cplusplus.com

I guese thats it :lol:

P.S. I love your videos Gyro, your one of my main people that motivate me to program :D