1

我正在尝试制作一个非常简单的基于文本的游戏,当我尝试从外部函数访问动态结构时遇到错误。我在头文件中初始化了所有变量和结构,并在主函数中声明了一个动态分配。但我仍然有错误。我错过了什么吗?这是我的代码。

==================主函数“new.cpp”====================

#include <stdlib.h>
#include <iostream>
#include <string>
#include "game.h"
using namespace std;

difficulty _df_1;
player* player_1 = new player[3];
int main()
    {
        //initialize player stats
        player_1->hp = 100;
        player_1->life = 3;
        player_1->mana = 50;
        player_1->player_id = 1;
        player_1->level = 1;
        player_1->player_name= "emmet";
        //..end
        int turn=1;
        cout << "What is your name? <<<";
        getline(cin,player_1->player_name,'\n');
        cout << "Choose a difficulty level: [0]Easy [1]Normal [2]Godlike" << endl;
        int ch;
        cin >> ch;
        switch(ch)
            {
                case 0:
                    cout << "Scardy Cat chose EASY." << endl;
                    break;
                case 1:
                    cout << "A really nice way to start. NORMAL" << endl;
                    break;
                case 2:
                    cout << "Overly Manly Man is playing GODLIKE." << endl;
                    break;
                default:        cout << "I wonder how you can play this game if you can even read simple instructions."<< endl;return 0; break; 
            }
        while(turn == 1)
            {
                char ch;
                cout << "What do you want to do now? \n <<<<"; 
                cin >> ch;
                cin.ignore(5,'\n');
                switch(ch)
                    {
                        case 'a': case 'A':
                            player_stat();
                            break;
                        case 'v': case 'V':
                            cheat_menu();
                            break;
                        case 'x': case 'X':
                            return 0;
                            break;
                        case '`':

                            break;
                        default:    cout << "We were unable to process your request. Please try again" << endl; break;
                    }
            }
        delete player_1;
        return 0;
    }


void cheat_menu()
    {
        cout << "CHEATERS WILL ROT IN THE DEEPEST DEPTHS OF TARTARUS." << endl;
        cout << "Enter Code:" << endl;
        string cheat;
        getline(cin,cheat,'\n');
            if(cheat == "poo")
                {
                    system("sleep 3");
                    cout << "Cheat Activated.." << endl;
                    player_1->hp += 1000;
                    player_1->level += 10;
                    player_1->mana += 1000;
                    player_stat();
                }
            else
                {
                    cout << "Wrong cheat code.." << endl;
                }
        //system("sleep 3");
        //system("clear");
    }

==================结束主函数==============

=======外部函数“player_stat.cpp”===========

#include <iostream>
#include "game.h"
using namespace std;
void player_stat()
    {
        cout << "Name: " << player_1->player_name  << endl
        << "Hp: " << player_1->hp << endl
        << "Life: " << player_1->life << "\t Mana: " << player_1->mana << endl
        << "Level: " << player_1->level << "\t XP: " << player_1->xp
        << endl;
        //system("sleep 3");
        //system("clear");
}

==================结束外部函数==============

==========头文件“game.h”===================

#ifndef _GAME_
#define _GAME_

#include "player_stat.cpp"
using namespace std;

//function prototypes...
void player_stat();
void cheat_menu();


//structs for player and NPC
struct player
    {
        string player_name;
        int life;
        double atk;
        double hp;
        double mana;
        int player_id;
        int level;
        long int xp;
        string weapon_name;
        double weapon_damage;
    };
enum difficulty {EASY,NORMAL,GODLIKE};

#endif

===========结束头文件=======================

这些是我得到的错误。请不要介意 int main() 中的其他遗漏函数。:P

In file included from game.h:4
from new.cpp
in function `void player_stat()':
`player_1' undeclared (first use in this function)
(Each undeclared identifier is reported only once for each function it appears in.)
At global scope:
`player*player_1' used prior to declaration
4

2 回答 2

0

添加

外部玩家* player_1;

到游戏.h

这将使 player_1 变量在所有模块中都可用。

也删除

#include "player_stat.cpp"

您不应该在头文件中包含任何 cpp 文件

于 2013-04-25T05:33:42.390 回答
0

extern您使用存储说明符声明变量:

extern player* player_1;

这告诉编译器该player_1变量是在其他地方定义的,链接器稍后会解析它。


另外,正如我所指出的,您实际上分配了三个播放器对象。如果您只需要一个,则不要分配三个:

player* player_1 = new player;

但是,这也不是必需的,声明一个普通的非指针变量也可以正常工作:

player player_1;

然后在您extern用来告诉编译器该变量在其他地方定义的其他文件中:

extern player player_1;
于 2013-04-25T05:35:20.947 回答