
When would you even use pointers? I cant think of any reason, but then again, i am a noob at c++.
Also, anyone ever use DarkGDK?
Moderator: Coders of Rage
ATLEAST OOP and a basic understanding of pointers. Most API's use one or both of them to high extent. Then you can learn the rest while making basic fun games =]mv2112 wrote:How much c++ should i know? I just started learning about Objects and im getting the hang of it, pointers on the other hand...
When would you even use pointers? I cant think of any reason, but then again, i am a noob at c++.
Also, anyone ever use DarkGDK?
You should know about object oriented methods of programming (encapsulation, inheritance and polymorphism), pointers and what there used for, referencing to data, and of course you should also already know the basics (input, output, statements, strings, etc...).mv2112 wrote:How much c++ should i know? I just started learning about Objects and im getting the hang of it, pointers on the other hand...
When would you even use pointers? I cant think of any reason, but then again, i am a noob at c++.
Also, anyone ever use DarkGDK?
There are all sorts of occasions when you might want to use a pointer, consider:mv2112 wrote:...When would you even use pointers? I cant think of any reason...
You probably aren't going to be anywhere near ready until you can answer that question yourself.When would you even use pointers?
Now I understand pointers a little better, I just ran into a problem where I wanted a member function to access another object's variable and it worked when i used pointers!mv2112 wrote:Ok, i get it, i think i'v got a lot more to learn about c++ before i master it lol.
Code: Select all
while(createSimpleGame() != done)
{
++brain;
}
Well, i'v been working on learning about objects lately and this is what i have. Its basicly a text-based attack game. Nothing special. However, i did manage to get ONE pointer into the code lol (its used for a cheat code function). Im starting out small with text-based games before i start learning an API. Here is the main.cppK-Bal wrote:I would just try to create a Pong, Pickin' Sticks or an other extremely simple game. The worst thing that can happen is that you fail. In this case, read some articles/books about it and try again.
Edit: And show us your resultsCode: Select all
while(createSimpleGame() != done) { ++brain; }
Edit2: One more thing I wanted to add: there will always be something that you have not understood yet. It does not really matter if your first Pong has memory corruptions and wrong OOP all over the place. Your mistakes will help you to understand these concepts more quickly.
Code: Select all
#include "main.h"
//Player Object Defenition//
class Player{
public:
bool a_check();
int Attack();
void Defend(int attack);
void Heal();
int Special();
void Recharge();
Player();
bool alive;
void stats();
bool quit();
void win(bool* al);
private:
int health;
int heal;
int attack;
int defend;
int sattack;
int recharge;
};
bool Player::a_check(){
if(health<=0){
alive=FALSE;
return FALSE;
}
else{
return TRUE;
}
}
Player::Player(){
health=20;
heal=5;
alive=TRUE;
recharge=100;
cout<<"Get Ready to FIGHT!"<<endl;
}
int Player::Attack(){
attack=(rand()%5);
return attack;
}
void Player::Defend(int attack){
defend=(rand()%5);
if(defend>=attack){
cout<<"No damage has been done to you!"<<endl;
return;
}
else{
health-=attack-defend;
if(health<=0){
cout<<"You are dead"<<endl;
return;
}
cout<<"The enemy did "<<attack-defend<<" damage to you!"<<endl<<"You have "<<health<<" HP left!"<<endl;
return;
}
}
void Player::Heal(){
if(heal>0){
--heal;
health+=10;
}
if(heal==0){
cout<<"You are out of health packs!"<<endl;
return;
}
}
int Player::Special(){
if(recharge==100){
sattack=(rand()%10)+1;
recharge=0;
return sattack;
}
else{
cout<<"You arn't recharged yet!"<<endl;
cout<<"Recharged:"<<recharge<<"/100"<<endl;
attack=(rand()%5);
cout<<"You regular attack the enemy..."<<endl;
pause();
cls();
return attack;
}
}
void Player::Recharge(){
if(recharge<100){
recharge+=25;
return;
}
else{
return;
}
}
void Player::stats(){
cout<<health<<"/20 HP"<<endl;
cout<<heal<<"/5 Health Packs"<<endl;
cout<<recharge<<"% Recharged"<<endl;
}
bool Player::quit(){
alive=FALSE;
return alive;
}
void Player::win(bool* al){
*al=FALSE;
}
//End Player Object Defenition//
//Enemy Object Defenition//
class Enemy{
public:
Enemy();
int Attack();
void Defend(int attack);
bool a_check();
bool alive;
void debug();
private:
int health;
int attack;
int defend;
};
Enemy::Enemy(){
health=20;
alive=TRUE;
cout<<"Im going to kill you..."<<endl;
}
int Enemy::Attack(){
attack=(rand()%5);
return attack;
}
void Enemy::Defend(int attack){
defend=(rand()%5);
if(defend>=attack){
cout<<"HA! You have done no damage to me!"<<endl;
return;
}
else{
health-=attack-defend;
if(health<=0){
cout<<"The enemy is dead"<<endl;
return;
}
cout<<"You have done "<<attack-defend<<" damage to the enemy!"<<endl<<"The enemy has "<<health<<" HP left!"<<endl;
return;
}
}
bool Enemy::a_check(){
if(health<=0){
alive=FALSE;
return FALSE;
}
else{
return TRUE;
}
}
void Enemy::debug(){
cout<<attack<<endl<<defend<<endl<<health<<endl;
}
//End Enemy Object Defenition//
int main(){
set_title("AttackSimulator V2.0");
text_color('a');
char input;
Enemy bad;
Player good;
space();
pause();
bool* cheat;
while(bad.alive==TRUE&&good.alive==TRUE){
cheat=&bad.alive;
good.Recharge();
a:
srand(time(NULL));
cls();
cout<<"1. Attack"<<endl;
cout<<"2. Special Attack"<<endl;
cout<<"3. Heal"<<endl;
cout<<"4. View Stats"<<endl;
cout<<"5. Run away"<<endl;
cin>>input;
cls();
switch(input){
case '1':
bad.Defend(good.Attack());
if(bad.a_check()==FALSE){
break;
}
space();
good.Defend(bad.Attack());
if(good.a_check()==FALSE){
break;
}
space();
pause();
break;
case '2':
bad.Defend(good.Special());
if(bad.a_check()){
break;
}
good.Defend(bad.Attack());
if(good.a_check()){
break;
}
space();
pause();
break;
case '3':
good.Heal();
space();
pause();
break;
case '4':
good.stats();
space();
pause();
goto a;
break;
case '5':
good.quit();
break;
case '~':
good.win(cheat);
break;
default:
continue;
break;
}
}
end:
if(good.alive==FALSE){
cout<<"You loose"<<endl;
space();
pause();
}
if(bad.alive==FALSE){
cout<<"You Win!!!"<<endl;
space();
pause();
}
}
Code: Select all
#include <conio.h>
#include <windows.h>
#include <string>
#include <iostream>
#include <fstream>
#include <vector>
#include <algorithm>
#include <time.h>
using namespace std;
void pause(){
system("pause");
}
void cls(){
system("cls");
}
void exit(){
system("exit");
}
void text_color(char color){
switch(color){
case 'a':
system("color a");
break;
case 'b':
system("color b");
break;
case 'c':
system("color c");
break;
case 'd':
system("color d");
break;
case 'e':
system("color e");
break;
case 'f':
system("color f");
break;
}
cls();
}
void set_title(string title){
string t;
t="title "+title;
system(t.c_str());
return;
}
void space(){
cout<<endl;
}
I did notice that they had some things in common, ill have to try making a base class.K-Bal wrote:Not too badDid you notice that Player and Enemy have many things in common? They are both some kind of entity that can attack, defend, etc. A base class for both would fit perfectly