我需要这个依赖于食人魔的头文件(Qgears)的帮助

Posted

技术标签:

【中文标题】我需要这个依赖于食人魔的头文件(Qgears)的帮助【英文标题】:I need help with this ogre dependent header (Qgears) 【发布时间】:2010-03-01 08:46:55 【问题描述】:

我距离编译 Qgears 有 2 个错误。 (最终幻想 VII 引擎的破解版)

我弄乱了预处理器来加载 Ogre 头文件的实际位置。

以下是错误:

||=== qgears, Debug ===|
/home/cj/Desktop/qgears/trunk/project/linux/src/core/TextManager.h|48|error: invalid use of ‘::’|
/home/cj/Desktop/qgears/trunk/project/linux/src/core/TextManager.h|48|error: expected ‘;’ before ‘m_LanguageRoot’|
||=== Build finished: 2 errors, 0 warnings ===|

这是头文件:

// $Id$

#ifndef TEXT_MANAGER_h
#define TEXT_MANAGER_h

#include <OGRE/OgreString.h>
#include <OGRE/OgreUTFString.h>
#include <map>

struct TextData

    TextData():
        text(""),
        width(0),
        height(0)
    
    

    Ogre::String        name;
    Ogre::UTFString     text;
    int                 width;
    int                 height;
;

typedef std::vector<TextData> TextDataVector;



class TextManager

public:
                          TextManager(void);
    virtual              ~TextManager(void);

    void                  SetLanguageRoot(const Ogre::String& root);

    void                  LoadTexts(const Ogre::String& file_name);
    void                  UnloadTexts(const Ogre::String& file_name);
    const TextData        GetText(const Ogre::String& name);

private:
    struct TextBlock
    
        Ogre::String          block_name;
        std::vector<TextData> text;
    

    Ogre::String            m_LanguageRoot;    // Line #48
    std::list<TextBlock>    m_Texts;
;



extern TextManager* g_TextManager;



#endif // TEXT_MANAGER_h

include 中唯一不是 ogre 头文件的头文件是“map”。

如果有帮助,我将在 GNU/Linux 中使用 Code::Blocks IDE/GCC 编译器。 (拱门)

我不确定即使我修复了这个标头,我想我以后也会有构建错误,但值得一试。

编辑:我添加了分号,但头文件中还有一个错误:

error: expected unqualified-id before ‘’ token

【问题讨论】:

【参考方案1】:

TextBlock 结构定义最后缺少;

此外,std::vectorstd::list 使用时没有适当的 #include。如果它们尚未包含在某些标头中,则也可能导致构建错误。

编辑:以下代码同时使用 VC 和 Comeau 编译:

//#include <OGRE/OgreString.h>
//#include <OGRE/OgreUTFString.h>
namespace Ogre 
    struct String  String()  String(const char*)  ;
    struct UTFString  UTFString()  UTFString(const char*)  ;


#include <map>
#include <vector>
#include <list>

struct TextData

    TextData():
        text(""),
        width(0),
        height(0)
    
    

    Ogre::String        name;
    Ogre::UTFString     text;
    int                 width;
    int                 height;
;

typedef std::vector<TextData> TextDataVector;



class TextManager

public:
                          TextManager(void);
    virtual              ~TextManager(void);

    void                  SetLanguageRoot(const Ogre::String& root);

    void                  LoadTexts(const Ogre::String& file_name);
    void                  UnloadTexts(const Ogre::String& file_name);
    const TextData        GetText(const Ogre::String& name);

private:
    struct TextBlock
    
        Ogre::String          block_name;
        std::vector<TextData> text;
    ;

    Ogre::String            m_LanguageRoot;
    std::list<TextBlock>    m_Texts;
;

extern TextManager* g_TextManager;

你在用你的编译器编译这个有问题吗?

【讨论】:

我仍然在同一行收到相同的错误。但数字从 43 变为 45。 该标题出现更多错误。我放弃(现在)这太复杂了,我无法在我的技能水平上解决。

以上是关于我需要这个依赖于食人魔的头文件(Qgears)的帮助的主要内容,如果未能解决你的问题,请参考以下文章

网易极客战记官方攻略-地牢-幽影守卫

网易极客战记官方攻略-地牢-不详的征兆

网易官方极客战记(codecombat)攻略-森林-食人魔营地-ogre-encampment

网易官方极客战记(codecombat)攻略-森林-鹰眼

网易极客战记官方攻略-地牢-逆时针回转

各类任务调整:16日在线hotfix更新汇总