Search found 16 matches

by Jokeboxproductions
Sat Feb 20, 2010 3:32 pm
Forum: Programming Discussion
Topic: SDL TFF problem
Replies: 3
Views: 628

Re: SDL TFF problem

Thank you kindly :D
by Jokeboxproductions
Sat Feb 20, 2010 3:21 pm
Forum: Programming Discussion
Topic: SDL TFF problem
Replies: 3
Views: 628

SDL TFF problem

I recently got back in the mood to program so I'm running through Lazyfoo's Tuts and I got stuck at Lesson 7&8 Using TTF files. When I run my program with out TTF it builds and show the screen until I click X to exit out, but lately when I used TTF functions I get the program build and run and t...
by Jokeboxproductions
Wed Nov 12, 2008 6:01 pm
Forum: Programming Discussion
Topic: Life bar (WIP)
Replies: 15
Views: 1612

Re: Life bar (WIP)

I mostly edit your code to fit around mine. I got ride of my dead variable and replaced it with your live variable. I got rid of your functions but here it is before i did. #include <iostream> using namespace std; int main() { int x; x = 100; double y = 0.0; double i = 0.0; int Dead; Dead = 0; int l...
by Jokeboxproductions
Tue Nov 11, 2008 5:02 pm
Forum: Programming Discussion
Topic: Life bar (WIP)
Replies: 15
Views: 1612

Re: my text life bar(WIP)

Just thought I'd point out: if (y - x) This code will always be true, it's not really a condition. if ( x == Dead) This code will always be false, x is 100 and Dead is 0 and neither of those are changed regardless of input. Here's something that's maybe similar to what you were trying to do? #inclu...
by Jokeboxproductions
Mon Nov 10, 2008 11:32 pm
Forum: Programming Discussion
Topic: Life bar (WIP)
Replies: 15
Views: 1612

Re: my text life bar(WIP)

I kind of thought I put this in the wrong place so I put it in the other forum.
by Jokeboxproductions
Mon Nov 10, 2008 10:00 pm
Forum: Programming Discussion
Topic: Life bar (WIP)
Replies: 15
Views: 1612

Re: Life bar (WIP)

Here it before I add your functions Some reason even when it post to equal 0 and say "game over" it says heal up. #include <iostream> using namespace std; int main() { int x; x = 100; double y = 0.0; double i = 0.0; int Dead; Dead = 0; cin >> y; if (y - x) cout << "Hit \n"; cin >...
by Jokeboxproductions
Mon Nov 10, 2008 9:23 pm
Forum: Programming Discussion
Topic: Life bar (WIP)
Replies: 15
Views: 1612

Life bar (WIP)

I wasn't paying attention when I was posting. I made a text life bar still need work because I'm still learning C++. I just made this when i was tried of reading. Have to find away to implement a continue feature instead of putting in one number and the program ending. Have Any pointer shoot for it....
by Jokeboxproductions
Mon Nov 10, 2008 9:01 pm
Forum: Programming Discussion
Topic: Life bar (WIP)
Replies: 15
Views: 1612

my text life bar(WIP)

I made a text life bar still need work because I'm still learning C++. I just made this when i was tried of reading. Have to find away to implement a continue feature instead of putting in one number and the program ending. Have Any pointer shoot for it. #include <iostream> using namespace std; int ...
by Jokeboxproductions
Sat Nov 08, 2008 3:31 pm
Forum: General Gaming
Topic: Gaming just not the same
Replies: 25
Views: 2654

Re: Gaming just not the same

There a couple I want to add to my list

the
Street fighter series
Marvel Vs Capcom 2
Snk
king of fighter
All the fighting games
(Accept Mortal combat)
by Jokeboxproductions
Fri Nov 07, 2008 6:33 am
Forum: Programming Discussion
Topic: OMFG n00b!
Replies: 13
Views: 1756

Re: OMFG n00b!

Now why would you not recommend that book my friend?
by Jokeboxproductions
Thu Nov 06, 2008 9:36 pm
Forum: General Gaming
Topic: Gaming just not the same
Replies: 25
Views: 2654

Re: Gaming just not the same

Hahaha. Wow. You complain about how game devs focus on graphics and then put Halo in your list? It's obvious the second two halos were marketing ploys, and totally uninspired. The insane development costs were from marketing and graphics production, not from bungie needing more developers to flesh ...
by Jokeboxproductions
Thu Nov 06, 2008 9:30 pm
Forum: Programming Discussion
Topic: Hey JB again
Replies: 4
Views: 969

Re: Hey JB again

Pretty much a reference chart. So I'll never have a problem remembering int,char,etc.
by Jokeboxproductions
Thu Nov 06, 2008 7:02 pm
Forum: Programming Discussion
Topic: Hey JB again
Replies: 4
Views: 969

Hey JB again

So I made some purchases today, I picked up sams Teach your self C++ in one hour a day, but at the top it says 21days. So I'll assume it the same as the other book I addressed in my other topic. And I picked up a cool little gift a C++ Chart with all the Declarations. So(I use "so" alot) d...
by Jokeboxproductions
Mon Nov 03, 2008 6:38 pm
Forum: General Gaming
Topic: Gaming just not the same
Replies: 25
Views: 2654

Gaming just not the same

You remember when you could walk in to a gamestore and buy a game and you knew it was going to be fun. I've notice that my Game buying has went down in the past years one from the rise of the price,but real reason is that game developers spend to much time on the graphics then the game play. There i...
by Jokeboxproductions
Mon Nov 03, 2008 3:22 pm
Forum: Programming Discussion
Topic: Hello
Replies: 5
Views: 822

Re: Hello

Never reallly got to a good start with it do, but I had a old sams book called Beginning game programming. Didn't really teach C++ just told you how to build a engine in C++ language. Scary!, I got the 2002 edition of that book(because i'm an old timer :P), but it used to just be called 'sams teach...