|
Thread |
Forum |
Last Post |
Posts |
Views |
 |
Polygon in Welt zeichnen
Posted on: Sat 7. Sep 2013, 23:03
kung foo man
Preview
Go To Post
Moin Leute, hat mal jemand "echte" Polygone in die CoD2-Welt eingefügt? Ich habe cuBot und Tatnium in Visual Studio kombiniert, sodass ich jetzt D3D-Funktionen hooken kann, aber wenn ich DirectX Tutorials folge, kann ich keine Polygone zeichen. Das Fenster bleibt dann einfach schwarz. Diesen Code verwende ich bisher: TEXT Code: HRESULT APIENTRY hkIDirect3DDevice9::EndScene() { #if 1 struct CUSTOMVERTEX { FLOAT x, y, z, rhw; // from the D3DFVF_XYZRHW flag DWORD color; // from the D3DFVF_DIFFUSE flag }; static int first = 1; static LPDIRECT3DVERTEXBUFFER9 v_buffer = NULL; printf("HRESULT APIENTRY hkIDirect3DDevice9::EndScene(%d)\n", first); if (first) { first = 0; #define CUSTOMFVF (D3DFVF_XYZRHW | D3DFVF_DIFFUSE) CUSTOMVERTEX vertices[] = { { 1551.0f+320, 2663.0f+ 50, 415.0f, 1.0f, D3DCOLOR_XRGB(0, 0, 255), }, { 1551.0f+520, 2663.0f+400, 415.0f, 1.0f, D3DCOLOR_XRGB(0, 255, 0), }, { 1551.0f+120, 2663.0f+400, 415.0f, 1.0f, D3DCOLOR_XRGB(255, 0, 0), }, }; m_pD3Ddev->CreateVertexBuffer(3*sizeof(struct CUSTOMVERTEX), 0, CUSTOMFVF, D3DPOOL_MANAGED, &v_buffer, NULL); VOID* pVoid; // the void pointer v_buffer->Lock(0, 0, (void**)&pVoid, 0); memcpy(pVoid, vertices, sizeof(vertices)); v_buffer->Unlock(); } LPDIRECT3DSTATEBLOCK9 pStateBlock = NULL; m_pD3Ddev->CreateStateBlock( D3DSBT_ALL, &pStateBlock ); pStateBlock->Capture(); //m_pD3Ddev->SetRenderState(D3DRS_ALPHABLENDENABLE, TRUE); //m_pD3Ddev->SetRenderState(D3DRS_ALPHATESTENABLE, TRUE);//<- //m_pD3Ddev->SetRenderState(D3DRS_ZENABLE, D3DZB_FALSE); //m_pD3Ddev->SetRenderState(D3DRS_ZFUNC, D3DCMP_ALWAYS); //m_pD3Ddev->SetRenderState(D3DRS_SRCBLEND, D3DBLEND_SRCCOLOR); //m_pD3Ddev->SetRenderState(D3DRS_DESTBLEND, D3DBLEND_INVSRCCOLOR); //D3DVECTOR vEyePt = {0.0f, 0.0f, -10.0f }; //D3DVECTOR vLookatPt = {0.0f, 0.0f, 0.0f }; //D3DVECTOR vUpVec = {0.0f, 1.0f, 0.0f }; //D3DMATRIX matWorld, matView, matProj; // // //D3DUtil_SetIdentityMatrix( matWorld ); //m_pD3Ddev->SetFVF(CUSTOMFVF); // select which vertex format we are using m_pD3Ddev->SetStreamSource(0, v_buffer, 0, sizeof(struct CUSTOMVERTEX)); // select the vertex buffer to display m_pD3Ddev->DrawPrimitive(D3DPT_TRIANGLELIST, 0, 1); // copy the vertex buffer to the back buffer pStateBlock->Apply(); pStateBlock->Release(); #endif return m_pD3Ddev->EndScene(); }
Ich hoffe, hier gibt's noch ein paar fähige Leute. Das ganze soll eine CoD2-Erweiterung werden, mit der bullet physics engine. Viele Grüße, kung foo man
|
Call of Duty 2 |
Wed 11. Sep 2013, 09:52
by KN4CK3R
|
7 |
804 |
 |
Polygon in Welt zeichnen
Posted on: Sat 7. Sep 2013, 23:03
kung foo man
Preview
Go To Post
Ich habe jetzt herausgefunden, warum alles schwarz geworden ist (Crash). Die Engine lädt beim Map-Beginn D3D neu und alle gespeicherten Vertices etc. sind dann natürlich ungültig. Nachdem ich die jetzt immer reinitialisiere, funktionert es ohne Crash, jedoch kann ich noch kein Polygon sehen. Ich muss wahrscheinlich noch eine Matrix setzen, aber das muss ich morgen ausprobieren.
|
Call of Duty 2 |
Wed 11. Sep 2013, 09:52
by KN4CK3R
|
7 |
804 |
 |
Polygon in Welt zeichnen
Posted on: Sat 7. Sep 2013, 23:03
kung foo man
Preview
Go To Post
Jo genau, nur weiß ich nicht, ob es sich bei der Sphere um eine "echte" Sphere handelt. Also ob D3D die Sphere per Projektionsmatrix erzeugt oder ob der Programmierer jede einzelne Linie durch eine world2screen-Funktion gejagd hat und dann nur 2D auf der Oberfläche zeichnet. In OpenGL wäre das einfach: glPushMatrix() glLoadIdentity() glTransform(Position von Objekt) glRotate(...) glBegin() glVertex(Fixe Objekt-Koordinaten) glEnd() glPopMatrix() Mit D3D komme ich nicht klar. :S
|
Call of Duty 2 |
Wed 11. Sep 2013, 09:52
by KN4CK3R
|
7 |
804 |
 |
Polygon in Welt zeichnen
Posted on: Sat 7. Sep 2013, 23:03
kung foo man
Preview
Go To Post
Quote from KN4CK3R Wie genau du die anderen Matrizen setzen musst (Projection und View) kann ich dir grad nicht sagen und ist sicher spielabhängig.
Der FOV für die Projektion ist natürlich cvar-Abhängig, aber genau diesen Code brauche ich. Egal was ich probiere, ich kann die Matrizen nicht ändern. TEXT Code: D3DXMATRIXA16 matView; D3DXMATRIXA16 matProj; matView._41 = matView._42 = matView._43 = 0.0f; D3DXMatrixPerspectiveFovLH( &matProj, D3DX_PI/2, 1.0f, 0.5f, 10000.0f ); m_pD3Ddev->SetTransform( D3DTS_PROJECTION, &matProj ); m_pD3Ddev->SetTransform( D3DTS_VIEW, &matView ); m_pD3Ddev->SetRenderState( D3DRS_ZENABLE, FALSE ); m_pD3Ddev->SetStreamSource(0, v_buffer, 0, sizeof(struct CUSTOMVERTEX)); // select the vertex buffer to display m_pD3Ddev->DrawPrimitive(D3DPT_TRIANGLELIST, 0, 1); // copy the vertex buffer to the back buffer
Das Polygon bleibt einfach links/oben orthogonal sitzen... Edit: Die Methode setTransform() im Tatnium Basehook funktioniert einfach nicht! Ich habe diese Code geschrieben und nichts wird ausgegeben: TEXT Code: HRESULT APIENTRY hkIDirect3DDevice9::SetTransform(D3DTRANSFORMSTATETYPE State, CONST D3DMATRIX *pMatrix) { printf("Set Transform!\n"); if (State == D3DTS_PROJECTION) { printf("Set Projection!\n"); return NULL; } return m_pD3Ddev->SetTransform(State, pMatrix);
Weiß jemand, wie man setTransform in Tatnium funktionsfähig macht? Das wäre ultimativ.
|
Call of Duty 2 |
Wed 11. Sep 2013, 09:52
by KN4CK3R
|
7 |
804 |
 |
[Release] CoD2 chams
Posted on: Fri 4. Feb 2011, 18:55
KN4CK3R
Preview
Go To Post
File ist leider down, war Source auch dabei?
|
Call of Duty 2 |
Sat 7. Sep 2013, 22:43
by kung foo man
|
1 |
4068 |