summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2OutObjArray.h
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2023-06-28 22:22:32 +0100
committerAsh Wolf <ninji@wuffs.org>2023-06-28 22:22:32 +0100
commitc0c336500955a23e344651e5412c9d9d441ef4ee (patch)
tree790769c748db307cf3314f6e896e2f61c68561a2 /src/T2DLL/T2OutObjArray.h
parent37e364b2c6cc7487a1c888d256a73e5337bb7189 (diff)
downloadt2win-c0c336500955a23e344651e5412c9d9d441ef4ee.tar.gz
t2win-c0c336500955a23e344651e5412c9d9d441ef4ee.zip
first pass of T2DLL
Diffstat (limited to '')
-rw-r--r--src/T2DLL/T2OutObjArray.h26
1 files changed, 16 insertions, 10 deletions
diff --git a/src/T2DLL/T2OutObjArray.h b/src/T2DLL/T2OutObjArray.h
index 504f1d7..b3791eb 100644
--- a/src/T2DLL/T2OutObjArray.h
+++ b/src/T2DLL/T2OutObjArray.h
@@ -1,18 +1,24 @@
#pragma once
#include "common.h"
+#include "T2ObjectArray.h"
+#include "T2OutObj.h"
-class T2OutObjArray {
+class AFX_EXT_CLASS T2OutObjArray : public T2ObjectArray {
public:
- T2OutObjArray(unsigned int);
+ enum { kGroupSize = 64 };
+
+ T2OutObjArray(unsigned int inStartID = 1000);
virtual ~T2OutObjArray();
+ virtual void DispatchIdle(T2TowerDoc* inDoc, int);
T2OutObj* FindUnusedOutObj() const;
- virtual void DispatchIdle(T2TowerDoc*, int);
- int CalcMentenanceCost(T2TowerDoc*) const;
- void Read(T2Archive&, T2TowerDoc*);
- void Write(T2Archive&);
+ int CalcMentenanceCost(T2TowerDoc* inDoc) const;
+ void Read(T2Archive& inArchive, T2TowerDoc* inDoc);
+ void Write(T2Archive& inArchive);
+
+ T2OutObj* GetIndexOutObj(int i) { return &mOutObj[i]; }
+
+protected:
+ friend class T2OutObjArrayList;
- T2OutObj* GetIndexOutObj(int) {}
- T2OutObjArray(const T2OutObjArray&) {}
- T2OutObjArray& operator=(const T2OutObjArray&) {}
- void `default constructor closure'() {}
+ T2OutObj mOutObj[kGroupSize];
};