-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflasher.h
185 lines (157 loc) · 6.53 KB
/
flasher.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
// Flasher.h: Definition of the Flasher class
//
//////////////////////////////////////////////////////////////////////
#pragma once
#if !defined(AFX_FLASHER_H__87DAB93E_7D6F_4fe4_A5F9_632FD82BDB4A__INCLUDED_)
#define AFX_FLASHER_H__87DAB93E_7D6F_4fe4_A5F9_632FD82BDB4A__INCLUDED_
#include "resource.h" // main symbols
class FlasherData
{
public:
Vertex2D m_vCenter;
float m_height;
COLORREF m_color;
TimerDataRoot m_tdr;
float m_rotX, m_rotY, m_rotZ;
int m_alpha;
float m_intensity_scale;
float m_modulate_vs_add;
float m_depthBias; // for determining depth sorting
int m_filterAmount;
Filters m_filter;
RampImageAlignment m_imagealignment;
char m_szImageA[MAXTOKEN];
char m_szImageB[MAXTOKEN];
bool m_displayTexture;
bool m_isVisible;
bool m_addBlend;
bool m_isDMD;
};
/////////////////////////////////////////////////////////////////////////////
// Flasher
class Flasher :
public CComObjectRootEx<CComSingleThreadModel>,
public CComCoClass<Flasher, &CLSID_Flasher>,
public IDispatchImpl<IFlasher, &IID_IFlasher, &LIBID_VPinballLib>,
public EventProxy<Flasher, &DIID_IFlasherEvents>,
public IConnectionPointContainerImpl<Flasher>,
public IProvideClassInfo2Impl<&CLSID_Flasher, &DIID_IFlasherEvents, &LIBID_VPinballLib>,
public ISelect,
public IEditable,
public Hitable,
public IHaveDragPoints,
public IScriptable,
public IFireEvents,
public IPerPropertyBrowsing // Ability to fill in dropdown in property browser
{
public:
Flasher();
virtual ~Flasher();
STANDARD_EDITABLE_DECLARES(Flasher, eItemFlasher, FLASHER, 1)
BEGIN_COM_MAP(Flasher)
COM_INTERFACE_ENTRY(IFlasher)
COM_INTERFACE_ENTRY(IDispatch)
COM_INTERFACE_ENTRY_IMPL(IConnectionPointContainer)
COM_INTERFACE_ENTRY(IPerPropertyBrowsing)
COM_INTERFACE_ENTRY(IProvideClassInfo)
COM_INTERFACE_ENTRY(IProvideClassInfo2)
END_COM_MAP()
DECLARE_REGISTRY_RESOURCEID(IDR_Flasher)
DECLARE_PROTECT_FINAL_CONSTRUCT()
BEGIN_CONNECTION_POINT_MAP(Flasher)
CONNECTION_POINT_ENTRY(DIID_IFlasherEvents)
END_CONNECTION_POINT_MAP()
// ISupportsErrorInfo
STDMETHOD(InterfaceSupportsErrorInfo)(REFIID riid);
virtual void ClearForOverwrite();
virtual void RenderBlueprint(Sur *psur, const bool solid);
virtual void FlipY(const Vertex2D& pvCenter);
virtual void FlipX(const Vertex2D& pvCenter);
virtual void Rotate(const float ang, const Vertex2D& pvCenter, const bool useElementCenter);
virtual void Scale(const float scalex, const float scaley, const Vertex2D& pvCenter, const bool useElementCenter);
virtual void Translate(const Vertex2D &pvOffset);
virtual void MoveOffset(const float dx, const float dy);
virtual void SetObjectPos();
virtual int GetMinimumPoints() const { return 2; }
virtual Vertex2D GetCenter() const { return m_d.m_vCenter; }
virtual void PutCenter(const Vertex2D& pv) { m_d.m_vCenter = pv; }
virtual void DoCommand(int icmd, int x, int y);
virtual bool IsTransparent() const { return !m_d.m_isDMD; }
virtual float GetDepth(const Vertex3Ds& viewDir) const
{
return m_d.m_depthBias + viewDir.x * m_d.m_vCenter.x + viewDir.y * m_d.m_vCenter.y + viewDir.z * m_d.m_height;
}
virtual unsigned long long GetMaterialID() const { return 64-1; } //!! some constant number
virtual unsigned long long GetImageID() const
{
Texture * const pinA = m_ptable->GetImage(m_d.m_szImageA);
Texture * const pinB = m_ptable->GetImage(m_d.m_szImageB);
Texture *tex = NULL;
if (pinA && !pinB)
tex = pinA;
else if (!pinA && pinB)
tex = pinB;
return (unsigned long long)tex;
}
virtual bool IsDMD() const { return m_d.m_isDMD; }
virtual ItemTypeEnum HitableGetItemType() const { return eItemFlasher; }
virtual void WriteRegDefaults();
FlasherData m_d;
private:
void UpdateMesh();
void InitShape();
PinTable *m_ptable;
unsigned int m_numVertices;
int m_numPolys;
float m_minx, m_maxx, m_miny, m_maxy;
Vertex3D_TexelOnly *m_vertices;
VertexBuffer *m_dynamicVertexBuffer;
IndexBuffer *m_dynamicIndexBuffer;
PropertyPane *m_propVisual;
bool m_dynamicVertexBufferRegenerate;
// IFlasher
public:
void SetAlpha(long value);
void SetFilterAmount(long value);
STDMETHOD(get_ImageA)(/*[out, retval]*/ BSTR *pVal);
STDMETHOD(put_ImageA)(/*[in]*/ BSTR newVal);
STDMETHOD(get_ImageB)(/*[out, retval]*/ BSTR *pVal);
STDMETHOD(put_ImageB)(/*[in]*/ BSTR newVal);
STDMETHOD(get_Color)(/*[out, retval]*/ OLE_COLOR *pVal);
STDMETHOD(put_Color)(/*[in]*/ OLE_COLOR newVal);
STDMETHOD(get_Height)(/*[out, retval]*/ float *pVal);
STDMETHOD(put_Height)(/*[in]*/ float newVal);
STDMETHOD(get_X)(/*[out, retval]*/ float *pVal);
STDMETHOD(put_X)(/*[in]*/ float newVal);
STDMETHOD(get_Y)(/*[out, retval]*/ float *pVal);
STDMETHOD(put_Y)(/*[in]*/ float newVal);
STDMETHOD(get_RotX)(/*[out, retval]*/ float *pVal);
STDMETHOD(put_RotX)(/*[in]*/ float newVal);
STDMETHOD(get_RotY)(/*[out, retval]*/ float *pVal);
STDMETHOD(put_RotY)(/*[in]*/ float newVal);
STDMETHOD(get_RotZ)(/*[out, retval]*/ float *pVal);
STDMETHOD(put_RotZ)(/*[in]*/ float newVal);
STDMETHOD(get_Opacity)(/*[out, retval]*/ long *pVal);
STDMETHOD(put_Opacity)(/*[in]*/ long newVal);
STDMETHOD(get_IntensityScale)(/*[out, retval]*/ float *pVal);
STDMETHOD(put_IntensityScale)(/*[in]*/ float newVal);
STDMETHOD(get_ModulateVsAdd)(/*[out, retval]*/ float *pVal);
STDMETHOD(put_ModulateVsAdd)(/*[in]*/ float newVal);
STDMETHOD(get_Visible)(/*[out, retval]*/ VARIANT_BOOL *pVal);
STDMETHOD(put_Visible)(/*[in]*/ VARIANT_BOOL newVal);
STDMETHOD(get_DisplayTexture)(/*[out, retval]*/ VARIANT_BOOL *pVal);
STDMETHOD(put_DisplayTexture)(/*[in]*/ VARIANT_BOOL newVal);
STDMETHOD(get_AddBlend)(/*[out, retval]*/ VARIANT_BOOL *pVal);
STDMETHOD(put_AddBlend)(/*[in]*/ VARIANT_BOOL newVal);
STDMETHOD(get_DMD)(/*[out, retval]*/ VARIANT_BOOL *pVal);
STDMETHOD(put_DMD)(/*[in]*/ VARIANT_BOOL newVal);
STDMETHOD(get_DepthBias)(/*[out, retval]*/ float *pVal);
STDMETHOD(put_DepthBias)(/*[in]*/ float newVal);
STDMETHOD(get_ImageAlignment)(/*[out, retval]*/ RampImageAlignment *pVal);
STDMETHOD(put_ImageAlignment)(/*[in]*/ RampImageAlignment newVal);
STDMETHOD(get_Filter)(/*[out, retval]*/ BSTR *pVal);
STDMETHOD(put_Filter)(/*[in]*/ BSTR newVal);
STDMETHOD(get_Amount)(/*[out, retval]*/ long *pVal);
STDMETHOD(put_Amount)(/*[in]*/ long newVal);
};
#endif // !defined(AFX_FLASHER_H__87DAB93E_7D6F_4fe4_A5F9_632FD82BDB4A__INCLUDED_)