0

これが私のコードです(簡略化):

//wrapper.h
#include <play3d.h>
class wrapper
{
private:
    soundengine *soundEngine;
public:
    sound *playSound3D(source *source, D3DXVECTOR3 pos, bool loop=false);
};

//wrapper.cpp
sound *wrapper::playSound3D(source *source, D3DXVECTOR3 pos, bool loop)
{
    return soundEngine->play3D(source, pos, loop);
};

そして、これが私の完全なコードです(要求どおり)。irrKlang サウンド エンジンを使用します。

//irrKlang.h
virtual ISound* play3D(ISoundSource* source, vec3df pos,
    bool playLooped = false, 
    bool startPaused = false, 
    bool track = false,
    bool enableSoundEffects = false) = 0;//the version i want

virtual ISound* play3D(const char* soundFileName, vec3df pos,
    bool playLooped = false, 
    bool startPaused = false,
    bool track = false, 
    E_STREAM_MODE streamMode = ESM_AUTO_DETECT,
    bool enableSoundEffects = false) = 0;//the version vc++ finds


//fsCore.h
#include <irrklang.h>
class fsEngine
{
private:
    static fsEngine *instance;
    static fsBool exists;
    irrklang::ISoundEngine *soundEngine;
    fsEngine();
    ~fsEngine();
public:
    static fsEngine *getInstance()
    {
        if (!exists)
        {
            instance = new fsEngine();
            exists = true;
            return instance;
        }
        else
        {
            return instance;
        }
    };
    void release()
    {
        exists = false;
        delete instance;
        soundEngine->drop();
    };
public:
    irrklang::ISoundSource *loadSound(fsString filename);
    irrklang::ISoundSource *cloneSound(irrklang::ISoundSource *source, fsString alias=NULL);
    irrklang::ISound *playSound2D(irrklang::ISoundSource *source, fsBool loop=false);
    irrklang::ISound *playSound3D(irrklang::ISoundSource *source, D3DXVECTOR3 soundpos, fsBool loop=false);
};


//fsCore.cpp
#include "fsCore.h"
irrklang::ISound *fsEngine::playSound3D(irrklang::ISoundSource *source, D3DXVECTOR3 soundpos, bool loop)
{
    return soundEngine->play3D(source, soundpos, loop);
};

どこからともなくC2664エラーが発生します。

1>c:\users\...\documents\visual studio 2008\projects\core\fscore.cpp(20) : error C2664: 'irrklang::ISound *irrklang::ISoundEngine::play3D(const char *,irrklang::vec3df,bool,bool,bool,irrklang::E_STREAM_MODE,bool)' : cannot convert parameter 1 from 'irrklang::ISoundSource *' to 'const char *'
1>        Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast

Play3D() には 2 つの定義があります。'const char *'引数 1 として a を受け入れるものと、引数 1 として受け入れるものです。Intellisense は'source *'両方の定義を指摘しますが、必要なバージョンを VC++ 2008 Express コンパイラに認識させることができません。何を変更すればよいですか?

4

1 に答える 1