Erreur LNK2005 déjà définie - Erreur du compilateur lors de la construction après l'exécution

StackOverflow https://stackoverflow.com/questions/5890123

  •  28-10-2019
  •  | 
  •  

Question

J'essaye de suivre Riemer's DirectX with C ++ tutoriel.

J'ai apporté quelques modifications, par exemple ici, j'ai fait mon InitializeDevice() fonction dans un fichier séparé (tdirect.cpp / tdirect.h).

Lorsque j'appuie F5 pour compiler et exécuter, le programme fonctionne parfaitement. Mais quand je fais un changement à une valeur (par exemple 0xff00ffff à 0xff0000ff - cyan à bleu) sans pour autant Choisir l'option "Rebuild", j'obtiens un flux d'erreurs dans ma console qui m'empêche de compiler le programme. C'est assez ennuyeux comme vous pouvez l'imaginer. C'est comme s'il compilait tdirect.cpp deux fois.

Voici le code source de tdirect.cpp, tdirect.h, et la partie pertinente de main.cpp (tdirect.h est seulement de main.cpp, et basicvertex.h n'est inclus que de tdirect.cpp)

tdirect.cpp:

#include "tdirect.h"
#include "basicvertex.h"

IDirect3D9 *pD3D;
D3DPRESENT_PARAMETERS D3DParams; 

LPDIRECT3DDEVICE9 InitializeDevice(HWND Wnd)
{
    pD3D = Direct3DCreate9(D3D_SDK_VERSION);
    if (pD3D == NULL)
    {
        MessageBox(Wnd, "DirectX is not installed.", "No DirectX!", MB_OK);
        return NULL;
    }

    ZeroMemory(&D3DParams, sizeof(D3DPRESENT_PARAMETERS));

    D3DParams.Windowed = TRUE;
    D3DParams.SwapEffect = D3DSWAPEFFECT_DISCARD;
    D3DParams.BackBufferFormat = D3DFMT_UNKNOWN;

    LPDIRECT3DDEVICE9 pDevice;
    if (FAILED(pD3D->CreateDevice(D3DADAPTER_DEFAULT, D3DDEVTYPE_HAL, Wnd, D3DCREATE_HARDWARE_VERTEXPROCESSING, &D3DParams, &pDevice)))
    {
        if (FAILED(pD3D->CreateDevice(D3DADAPTER_DEFAULT, D3DDEVTYPE_REF, Wnd, D3DCREATE_SOFTWARE_VERTEXPROCESSING, &D3DParams, &pDevice)))
        {
            MessageBox(Wnd, "Failed to create reference device.", "No software device!", MB_OK);
        }
        else {
            MessageBox(Wnd, "Falling back to software mode.", "No hardware device!", MB_OK);
        }
    }

    return pDevice;
}

LPDIRECT3DVERTEXBUFFER9 vBuffer;
void Init(LPDIRECT3DDEVICE9 pDevice)
{
    BASICVERTEX Vertices[3];
    Vertices[0].x = 150;
    Vertices[0].y = 100;
    Vertices[0].weight = 1;
    Vertices[0].colour = 0xffff0000;

    Vertices[1].x = 350;
    Vertices[1].y = 100;
    Vertices[1].weight = 1;
    Vertices[1].colour = 0xff00ff00;

    Vertices[2].x = 250;
    Vertices[2].y = 300;
    Vertices[2].weight = 1;
    Vertices[2].colour = 0xff00ffff;

    if (FAILED(pDevice->CreateVertexBuffer(sizeof(BASICVERTEX)*3, 0, D3DFVF_XYZRHW | D3DFVF_DIFFUSE, D3DPOOL_DEFAULT, &vBuffer, NULL)))
    {
        MessageBox(NULL, "Failed to create vertex buffer", "Fail", MB_OK);
    }
    else {
        void* pVertices;
        if (FAILED(vBuffer->Lock(0, sizeof(BASICVERTEX)*3, (void**)&pVertices, 0)))
        {
            MessageBox(NULL, "Failed to lock vertex buffer", "Fail", MB_OK);
        }
        else {
            memcpy(pVertices, Vertices, sizeof(BASICVERTEX)*3);
            vBuffer->Unlock();
        }
    }
}

void DrawScene(LPDIRECT3DDEVICE9 pDevice)
{
    pDevice->Clear(0, NULL, D3DCLEAR_TARGET, D3DCOLOR_XRGB(0,0,0), 1.0f, 0);
    pDevice->BeginScene();

    pDevice->SetStreamSource(0, vBuffer, 0, sizeof(BASICVERTEX));
    pDevice->SetFVF(D3DFVF_XYZRHW | D3DFVF_DIFFUSE);
    pDevice->DrawPrimitive(D3DPT_TRIANGLELIST, 0, 1);

    pDevice->EndScene();
    pDevice->Present(NULL, NULL, NULL, NULL);
}

tdirect.h:

#pragma once
#include <Windows.h>

main.cpp inclure:

#include <Windows.h>

#include "dxheader.h"
#include "tdirect.cpp"

Erreurs du compilateur:

1>Debug\tdirect.obj : warning LNK4042: object specified more than once; extras ignored
1>main.obj : error LNK2005: "struct IDirect3DDevice9 * __cdecl InitializeDevice(struct HWND__ *)" (?InitializeDevice@@YAPAUIDirect3DDevice9@@PAUHWND__@@@Z) already defined in tdirect.obj
1>main.obj : error LNK2005: "void __cdecl Init(struct IDirect3DDevice9 *)" (?Init@@YAXPAUIDirect3DDevice9@@@Z) already defined in tdirect.obj
1>main.obj : error LNK2005: "void __cdecl DrawScene(struct IDirect3DDevice9 *)" (?DrawScene@@YAXPAUIDirect3DDevice9@@@Z) already defined in tdirect.obj
1>main.obj : error LNK2005: "struct IDirect3DVertexBuffer9 * vBuffer" (?vBuffer@@3PAUIDirect3DVertexBuffer9@@A) already defined in tdirect.obj
1>main.obj : error LNK2005: "struct _D3DPRESENT_PARAMETERS_ D3DParams" (?D3DParams@@3U_D3DPRESENT_PARAMETERS_@@A) already defined in tdirect.obj
1>main.obj : error LNK2005: "struct IDirect3D9 * pD3D" (?pD3D@@3PAUIDirect3D9@@A) already defined in tdirect.obj
1>C:\Users\me\Documents\Visual Studio 2010\Projects\DirectX\Debug\DXStuff.exe : fatal error LNK1169: one or more multiply defined symbols found

Merci d'avance :)

Était-ce utile?

La solution

Vous incluez un fichier d'implémentation à partir de votre main.cpp, il ajoute à nouveau les fonctions. Vous ne pouvez pas faire ceci:

 #include "tdirect.cpp"

Au lieu de cela, vous devez créer un fichier d'en-tête avec les prototypes de fonction afin que vous puissiez les référencer ...

Les avez-vous définis dans votre "tdirect.h" (c'est ce que le main.cpp devrait inclure)?

LPDIRECT3DDEVICE9 InitializeDevice(HWND Wnd);

etc...

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top