]> git.cworth.org Git - apitrace/blob - retrace/d3dretrace.py
Move d3d window creation to a separate source file.
[apitrace] / retrace / d3dretrace.py
1 ##########################################################################
2 #
3 # Copyright 2011 Jose Fonseca
4 # All Rights Reserved.
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining a copy
7 # of this software and associated documentation files (the "Software"), to deal
8 # in the Software without restriction, including without limitation the rights
9 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 # copies of the Software, and to permit persons to whom the Software is
11 # furnished to do so, subject to the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be included in
14 # all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 # THE SOFTWARE.
23 #
24 ##########################################################################/
25
26
27 """D3D retracer generator."""
28
29
30 from dllretrace import DllRetracer as Retracer
31 import specs.stdapi as stdapi
32 from specs.d3d9 import *
33
34
35 class D3DRetracer(Retracer):
36
37     def retraceApi(self, api):
38         print 'static const GUID GUID_D3DRETRACE = {0x7D71CAC9,0x7F58,0x432C,{0xA9,0x75,0xA1,0x9F,0xCF,0xCE,0xFD,0x14}};'
39         print
40
41         self.table_name = 'd3dretrace::%s_callbacks' % api.name.lower()
42
43         Retracer.retraceApi(self, api)
44
45     def invokeInterfaceMethod(self, interface, method):
46         # keep track of the last used device for state dumping
47         if interface.name in ('IDirect3DDevice9', 'IDirect3DDevice9Ex'):
48             print r'    d3dretrace::pLastDirect3DDevice9 = _this;'
49
50         # create windows as neccessary
51         if method.name in ('CreateDevice', 'CreateDeviceEx'):
52             print r'    HWND hWnd = d3dretrace::createWindow(pPresentationParameters->BackBufferWidth, pPresentationParameters->BackBufferHeight);'
53             print r'    hFocusWindow = hWnd;'
54             print r'    pPresentationParameters->hDeviceWindow = hWnd;'
55
56         # notify frame has been completed
57         if method.name == 'Present':
58             print r'    retrace::frameComplete(call);'
59
60         if 'pSharedHandle' in method.argNames():
61             print r'    if (pSharedHandle) {'
62             print r'        retrace::warning(call) << "shared surfaces unsupported\n";'
63             print r'        pSharedHandle = NULL;'
64             print r'    }'
65
66         Retracer.invokeInterfaceMethod(self, interface, method)
67
68         # check errors
69         if str(method.type) == 'HRESULT':
70             print r'    if (FAILED(_result)) {'
71             print r'        retrace::warning(call) << "failed\n";'
72             print r'    }'
73
74         if method.name in ('Lock', 'LockRect', 'LockBox'):
75             print '    VOID *_pbData = NULL;'
76             print '    size_t _LockedSize = 0;'
77             print '    _getLockInfo(_this, %s, _pbData, _LockedSize);' % ', '.join(method.argNames()[:-1])
78             print '    _this->SetPrivateData(GUID_D3DRETRACE, &_pbData, sizeof _pbData, 0);'
79         
80         if method.name in ('Unlock', 'UnlockRect', 'UnlockBox'):
81             print '    VOID *_pbData = 0;'
82             print '    DWORD dwSizeOfData = sizeof _pbData;'
83             print '    _this->GetPrivateData(GUID_D3DRETRACE, &_pbData, &dwSizeOfData);'
84             print '    if (_pbData) {'
85             print '        retrace::delRegionByPointer(_pbData);'
86             print '    }'
87
88
89 if __name__ == '__main__':
90     print r'''
91 #include <string.h>
92
93 #include <iostream>
94
95 #include "d3d9imports.hpp"
96 #include "d3dsize.hpp"
97 #include "d3dretrace.hpp"
98
99 '''
100
101     retracer = D3DRetracer()
102     retracer.retraceApi(d3d9)