[216] | 1 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 2 | /* |
---|
| 3 | * OPCODE - Optimized Collision Detection |
---|
| 4 | * Copyright (C) 2001 Pierre Terdiman |
---|
| 5 | * Homepage: http://www.codercorner.com/Opcode.htm |
---|
| 6 | */ |
---|
| 7 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 8 | |
---|
| 9 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 10 | /** |
---|
| 11 | * Main file for Opcode.dll. |
---|
| 12 | * \file Opcode.cpp |
---|
| 13 | * \author Pierre Terdiman |
---|
| 14 | * \date March, 20, 2001 |
---|
| 15 | */ |
---|
| 16 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 17 | |
---|
| 18 | /* |
---|
| 19 | Finding a good name is difficult! |
---|
| 20 | Here's the draft for this lib.... Spooky, uh? |
---|
| 21 | |
---|
| 22 | VOID? Very Optimized Interference Detection |
---|
| 23 | ZOID? Zappy's Optimized Interference Detection |
---|
| 24 | CID? Custom/Clever Interference Detection |
---|
| 25 | AID / ACID! Accurate Interference Detection |
---|
| 26 | QUID? Quick Interference Detection |
---|
| 27 | RIDE? Realtime Interference DEtection |
---|
| 28 | WIDE? Wicked Interference DEtection (....) |
---|
| 29 | GUID! |
---|
| 30 | KID ! k-dop interference detection :) |
---|
| 31 | OPCODE! OPtimized COllision DEtection |
---|
| 32 | */ |
---|
| 33 | |
---|
| 34 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 35 | // Precompiled Header |
---|
| 36 | #include "Stdafx.h" |
---|
| 37 | |
---|
| 38 | bool Opcode::InitOpcode() |
---|
| 39 | { |
---|
| 40 | Log("// Initializing OPCODE\n\n"); |
---|
| 41 | // LogAPIInfo(); |
---|
| 42 | return true; |
---|
| 43 | } |
---|
| 44 | |
---|
| 45 | void ReleasePruningSorters(); |
---|
| 46 | bool Opcode::CloseOpcode() |
---|
| 47 | { |
---|
| 48 | Log("// Closing OPCODE\n\n"); |
---|
| 49 | |
---|
| 50 | ReleasePruningSorters(); |
---|
| 51 | |
---|
| 52 | return true; |
---|
| 53 | } |
---|
| 54 | |
---|
| 55 | #ifdef ICE_MAIN |
---|
| 56 | |
---|
| 57 | void ModuleAttach(HINSTANCE hinstance) |
---|
| 58 | { |
---|
| 59 | } |
---|
| 60 | |
---|
| 61 | void ModuleDetach() |
---|
| 62 | { |
---|
| 63 | } |
---|
| 64 | |
---|
| 65 | #endif |
---|