00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __CS_CSEVCORD__
00021 #define __CS_CSEVCORD__
00022
00023 #include "csutil/scf.h"
00024 #include "iutil/event.h"
00025 struct iEventHandler;
00026 class csEventOutlet;
00027
00028 class csEventCord : public iEventCord
00029 {
00030 protected:
00031
00032 volatile bool pass;
00033
00034
00035 int category, subcategory;
00036
00037
00038 struct PluginData
00039 {
00040 iEventHandler *plugin;
00041 int priority;
00042 PluginData *next;
00043 };
00044
00045
00046 PluginData *plugins;
00047
00048
00049 volatile int SpinLock;
00050
00051
00052 inline void Lock() { while (SpinLock) {} SpinLock++; }
00053
00054 inline void Unlock() { SpinLock--; }
00055
00056
00057 friend class csEventOutlet;
00058 bool Post(iEvent*);
00059
00060 public:
00061 SCF_DECLARE_IBASE;
00062
00064 csEventCord(int category, int subcategory);
00065
00067 virtual int Insert(iEventHandler*, int priority);
00068
00070 virtual void Remove(iEventHandler*);
00071
00073 virtual bool GetPass() const { return pass; }
00074
00076 virtual void SetPass(bool flag) { pass = flag; }
00077
00079 virtual int GetCategory() const { return category; }
00080
00081
00082 virtual int GetSubcategory() const { return subcategory; }
00083 };
00084
00085 #endif // ! __CS_CSEVCORD__