Search found 8 matches
- Wed May 06, 2009 2:14 pm
- Forum: Programming Discussion
- Topic: Really Usefull Header I made (Window's Key/Mouse Inputs)
- Replies: 12
- Views: 1926
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...
- Thu Apr 30, 2009 1:54 pm
- Forum: Programming Discussion
- Topic: SFML
- Replies: 14
- Views: 1843
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
- Wed Apr 29, 2009 8:27 pm
- Forum: Programming Discussion
- Topic: Really Usefull Header I made (Window's Key/Mouse Inputs)
- Replies: 12
- Views: 1926
Re: Realy Usefull Header I made
Thanks glad you liked iteatcomics wrote:Well now we have 2 useful code snippets
- Wed Apr 29, 2009 7:26 pm
- Forum: Programming Discussion
- Topic: Math++
- Replies: 9
- Views: 982
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
But it is true that it makes studying a little fun and learn. Maby now I wont fail my math tests
- Wed Apr 29, 2009 6:14 pm
- Forum: Programming Discussion
- Topic: Really Usefull Header I made (Window's Key/Mouse Inputs)
- Replies: 12
- Views: 1926
Re: Realy Usefull Header I made
How? Because it would be nice if it was reduced :SMarauderIIC wrote:Hmmm... there's definitely a lot of pattern, here. I'm sure it can be reduced somehow...
- Wed Apr 29, 2009 3:17 pm
- Forum: Programming Discussion
- Topic: Really Usefull Header I made (Window's Key/Mouse Inputs)
- Replies: 12
- Views: 1926
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...
- Fri Oct 31, 2008 11:44 pm
- Forum: General/Off-Topic
- Topic: Official "Hello, World! (I'm new!)" thread
- Replies: 821
- Views: 630140
Re: Official "Hello, World! (I'm new!)" thread
Lol thanks.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.
- Fri Oct 31, 2008 11:20 pm
- Forum: General/Off-Topic
- Topic: Official "Hello, World! (I'm new!)" thread
- Replies: 821
- Views: 630140
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
P.S. I love your videos Gyro, your one of my main people that motivate me to program :D
I guese thats it
P.S. I love your videos Gyro, your one of my main people that motivate me to program :D