José Fonseca | 610942b | 2012-11-08 10:46:03 +0000 | [diff] [blame^] | 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 | |
| 33 | |
| 34 | class D3DRetracer(Retracer): |
| 35 | |
| 36 | def retraceApi(self, api): |
| 37 | print '// Swizzling mapping for lock addresses' |
| 38 | print 'static std::map<void *, void *> _maps;' |
| 39 | print |
| 40 | |
| 41 | self.table_name = 'd3dretrace::d3d_callbacks' |
| 42 | |
| 43 | Retracer.retraceApi(self, api) |
| 44 | |
| 45 | def invokeFunction(self, function): |
| 46 | # create windows as neccessary |
| 47 | if function.name in ('D3D10CreateDeviceAndSwapChain', 'D3D10CreateDeviceAndSwapChain1', 'D3D11CreateDeviceAndSwapChain'): |
| 48 | print r' pSwapChainDesc->OutputWindow = d3dretrace::createWindow(512, 512);' |
| 49 | |
| 50 | Retracer.invokeFunction(self, function) |
| 51 | |
| 52 | def invokeInterfaceMethod(self, interface, method): |
| 53 | # keep track of the last used device for state dumping |
| 54 | #if interface.name in ('IDirect3DDevice9', 'IDirect3DDevice9Ex'): |
| 55 | # print r' d3dretrace::pLastDirect3DDevice9 = _this;' |
| 56 | |
| 57 | # create windows as neccessary |
| 58 | if method.name == 'CreateSwapChain': |
| 59 | print r' pDesc->OutputWindow = d3dretrace::createWindow(512, 512);' |
| 60 | |
| 61 | # notify frame has been completed |
| 62 | if method.name == 'Present': |
| 63 | print r' retrace::frameComplete(call);' |
| 64 | |
| 65 | if 'pSharedResource' in method.argNames(): |
| 66 | print r' if (pSharedResource) {' |
| 67 | print r' retrace::warning(call) << "shared surfaces unsupported\n";' |
| 68 | print r' pSharedResource = NULL;' |
| 69 | print r' }' |
| 70 | |
| 71 | Retracer.invokeInterfaceMethod(self, interface, method) |
| 72 | |
| 73 | # process events after presents |
| 74 | if method.name == 'Present': |
| 75 | print r' d3dretrace::processEvents();' |
| 76 | |
| 77 | # check errors |
| 78 | if str(method.type) == 'HRESULT': |
| 79 | print r' if (FAILED(_result)) {' |
| 80 | print r' retrace::warning(call) << "failed\n";' |
| 81 | print r' }' |
| 82 | |
| 83 | if method.name == 'Map': |
| 84 | print ' VOID *_pbData = NULL;' |
| 85 | print ' size_t _MappedSize = 0;' |
| 86 | print ' _getMapInfo(_this, %s, _pbData, _MappedSize);' % ', '.join(method.argNames()) |
| 87 | print ' _maps[_this] = _pbData;' |
| 88 | |
| 89 | if method.name == 'Unmap': |
| 90 | print ' VOID *_pbData = 0;' |
| 91 | print ' _pbData = _maps[_this];' |
| 92 | print ' if (_pbData) {' |
| 93 | print ' retrace::delRegionByPointer(_pbData);' |
| 94 | print ' }' |