1 | /* |
---|
2 | Bullet Continuous Collision Detection and Physics Library |
---|
3 | Copyright (c) 2003-2007 Erwin Coumans http://bulletphysics.com |
---|
4 | |
---|
5 | This software is provided 'as-is', without any express or implied warranty. |
---|
6 | In no event will the authors be held liable for any damages arising from the use of this software. |
---|
7 | Permission is granted to anyone to use this software for any purpose, |
---|
8 | including commercial applications, and to alter it and redistribute it freely, |
---|
9 | subject to the following restrictions: |
---|
10 | |
---|
11 | 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. |
---|
12 | 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. |
---|
13 | 3. This notice may not be removed or altered from any source distribution. |
---|
14 | */ |
---|
15 | |
---|
16 | #include "LinearMath/btScalar.h" |
---|
17 | #include "PlatformDefinitions.h" |
---|
18 | |
---|
19 | |
---|
20 | #ifndef SEQUENTIAL_THREAD_SUPPORT_H |
---|
21 | #define SEQUENTIAL_THREAD_SUPPORT_H |
---|
22 | |
---|
23 | #include "LinearMath/btAlignedObjectArray.h" |
---|
24 | |
---|
25 | #include "btThreadSupportInterface.h" |
---|
26 | |
---|
27 | typedef void (*SequentialThreadFunc)(void* userPtr,void* lsMemory); |
---|
28 | typedef void* (*SequentiallsMemorySetupFunc)(); |
---|
29 | |
---|
30 | |
---|
31 | |
---|
32 | ///SequentialThreadSupport is a portable non-parallel implementation of the btThreadSupportInterface |
---|
33 | class SequentialThreadSupport : public btThreadSupportInterface |
---|
34 | { |
---|
35 | public: |
---|
36 | struct btSpuStatus |
---|
37 | { |
---|
38 | uint32_t m_taskId; |
---|
39 | uint32_t m_commandId; |
---|
40 | uint32_t m_status; |
---|
41 | |
---|
42 | SequentialThreadFunc m_userThreadFunc; |
---|
43 | |
---|
44 | void* m_userPtr; //for taskDesc etc |
---|
45 | void* m_lsMemory; //initialized using SequentiallsMemorySetupFunc |
---|
46 | }; |
---|
47 | private: |
---|
48 | btAlignedObjectArray<btSpuStatus> m_activeSpuStatus; |
---|
49 | btAlignedObjectArray<void*> m_completeHandles; |
---|
50 | public: |
---|
51 | struct SequentialThreadConstructionInfo |
---|
52 | { |
---|
53 | SequentialThreadConstructionInfo (char* uniqueName, |
---|
54 | SequentialThreadFunc userThreadFunc, |
---|
55 | SequentiallsMemorySetupFunc lsMemoryFunc |
---|
56 | ) |
---|
57 | :m_uniqueName(uniqueName), |
---|
58 | m_userThreadFunc(userThreadFunc), |
---|
59 | m_lsMemoryFunc(lsMemoryFunc) |
---|
60 | { |
---|
61 | |
---|
62 | } |
---|
63 | |
---|
64 | char* m_uniqueName; |
---|
65 | SequentialThreadFunc m_userThreadFunc; |
---|
66 | SequentiallsMemorySetupFunc m_lsMemoryFunc; |
---|
67 | }; |
---|
68 | |
---|
69 | SequentialThreadSupport(SequentialThreadConstructionInfo& threadConstructionInfo); |
---|
70 | virtual ~SequentialThreadSupport(); |
---|
71 | void startThreads(SequentialThreadConstructionInfo& threadInfo); |
---|
72 | ///send messages to SPUs |
---|
73 | virtual void sendRequest(uint32_t uiCommand, uint32_t uiArgument0, uint32_t uiArgument1); |
---|
74 | ///check for messages from SPUs |
---|
75 | virtual void waitForResponse(unsigned int *puiArgument0, unsigned int *puiArgument1); |
---|
76 | ///start the spus (can be called at the beginning of each frame, to make sure that the right SPU program is loaded) |
---|
77 | virtual void startSPU(); |
---|
78 | ///tell the task scheduler we are done with the SPU tasks |
---|
79 | virtual void stopSPU(); |
---|
80 | |
---|
81 | virtual void setNumTasks(int numTasks); |
---|
82 | |
---|
83 | }; |
---|
84 | |
---|
85 | #endif //SEQUENTIAL_THREAD_SUPPORT_H |
---|
86 | |
---|