00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099 #include "camtypes.h"
00100 #include "shadowtl.h"
00101 #include <objbase.h>
00102 #include <initguid.h>
00103
00104
00105 #include "lineattr.h"
00106
00107
00108
00109 CC_IMPLEMENT_MEMDUMP(CCWobJob, CC_CLASS_MEMDUMP)
00110
00111
00112 #define new CAM_DEBUG_NEW
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126 interface IComShadowerFlat : public IUnknown
00127 {
00128 public:
00129
00130 virtual void __stdcall SetChoicesToDefault() = 0;
00131
00132 virtual void __stdcall SetChoices( const BOOL* MakeWallShadow, const AFloatPt01* Darkness01,
00133 const APixels* Blurriness, const ACoordPixels XYPosition,
00134 const ADegrees* Tilt, const AFloatPt01* YScale01 ) = 0;
00135
00136 virtual void __stdcall SetBaseline( const AFloatPt01* Baseline ) = 0;
00137
00138
00139 virtual void __stdcall GetChoices( BOOL* MakeWallShadow, AFloatPt01* Darkness01, APixels* Blurriness,
00140 ACoordPixels XYPosition, ADegrees* Tilt, AFloatPt01* YScale01 ) const = 0;
00141
00142 virtual void __stdcall GetBaseline( AFloatPt01* Baseline ) const = 0;
00143
00144
00145 virtual void __stdcall GetDarknessRange( AFloatPt01& Min, AFloatPt01& Max ) const = 0;
00146 virtual void __stdcall GetBlurrinessRange( APixels& Min, APixels& Max ) const = 0;
00147 virtual void __stdcall GetPositionRange( ACoordPixels Min, ACoordPixels Max ) const = 0;
00148 virtual void __stdcall GetProjectionRange( ADegrees& MinTilt, ADegrees& MaxTilt, AFloatPt01& MinYScale,
00149 AFloatPt01& MaxYScale ) const = 0;
00150
00151 virtual HRESULT __stdcall SwitchToTransparencyInsteadOfAlpha( BOOL YesOrNo ) = 0;
00152 virtual HRESULT __stdcall SwitchToUpsideDownPixelAddressing( BOOL YesOrNo ) = 0;
00153
00154
00155 virtual HRESULT __stdcall InverseShadowBoundCalc( ACoordPixels UnshadowedWidHei, ACoordPixels UnshadowedPos,
00156 const ACoordPixels& ShadowedWidHei,
00157 const AFloatPt01* Baseline ) const = 0;
00158
00159 virtual HRESULT __stdcall CalcShadowBound( ACoordPixels ShadowWidHei, ACoordPixels ShadowPos,
00160 const AAlphaChannel& TransparencyMap, const ACoordPixels& tWidHei,
00161 const ACoordPixels& tPos ) const = 0;
00162
00163 virtual HRESULT __stdcall DrawShadow( const AAlphaChannel& ShadowMapOut, const ACoordPixels& sWidHei,
00164 const ACoordPixels& sPos, const AAlphaChannel& TransparencyMapIn,
00165 const ACoordPixels& tWidHei, const ACoordPixels& tPos ) const = 0;
00166 };
00167
00168
00169 const GUID CShadowerFlat::IID_IComShadowerFlat =
00170 { 0x326f6db0, 0x7b82, 0x11d1, { 0xac, 0xbf, 0x0, 0x20, 0xaf, 0xe1, 0x4b, 0x7d } };
00171
00172
00173 const GUID CShadowerFlat::CLSID_CComShadowerFlat =
00174 { 0x326f6db1, 0x7b82, 0x11d1, { 0xac, 0xbf, 0x0, 0x20, 0xaf, 0xe1, 0x4b, 0x7d } };
00175
00176
00177
00178 CShadowerFlat::CShadowerFlat()
00179 {
00180 pShadower_m = NULL;
00181 }
00182
00183 CShadowerFlat::~CShadowerFlat()
00184 {
00185 if( pShadower_m )
00186 pShadower_m->Release();
00187 }
00188
00189 CShadowerFlat::CShadowerFlat( const CShadowerFlat& Other )
00190 {
00191 pShadower_m = NULL;
00192 }
00193
00194 CShadowerFlat& CShadowerFlat::operator= ( const CShadowerFlat& Other )
00195 {
00196 return *this;
00197 }
00198
00199 HRESULT CShadowerFlat::_Init_()
00200 {
00201
00202
00203 {
00204
00205 return S_OK;
00206 }
00207
00208 HRESULT hr = ::CoCreateInstance( CLSID_CComShadowerFlat, NULL, CLSCTX_INPROC_SERVER, IID_IComShadowerFlat,
00209 (void**)&pShadower_m );
00210 if( FAILED( hr ) )
00211 return hr;
00212
00213 pShadower_m->SwitchToTransparencyInsteadOfAlpha( FALSE );
00214 pShadower_m->SwitchToUpsideDownPixelAddressing( TRUE );
00215
00216 return S_OK;
00217 }
00218
00219
00220 void CShadowerFlat::SetChoicesToDefault()
00221 {
00222
00223
00224
00225
00226 }
00227
00228 void CShadowerFlat::SetChoices( const BOOL* MakeWallShadow, const AFloatPt01* Darkness01, const APixels* Blurriness,
00229 const ACoordPixels XYPosition, const ADegrees* Tilt, const AFloatPt01* YScale01 )
00230 {
00231
00232
00233
00234
00235 }
00236
00237 void CShadowerFlat::SetBaseline( const AFloatPt01* Baseline )
00238 {
00239
00240
00241
00242
00243 }
00244
00245
00246 void CShadowerFlat::GetChoices( BOOL* MakeWallShadow, AFloatPt01* Darkness01, APixels* Blurriness,
00247 ACoordPixels XYPosition, ADegrees* Tilt, AFloatPt01* YScale01 ) const
00248 {
00249
00250
00251
00252
00253 }
00254
00255 void CShadowerFlat::GetBaseline( AFloatPt01* Baseline ) const
00256 {
00257
00258
00259
00260 }
00261
00262
00263 void CShadowerFlat::GetDarknessRange( AFloatPt01& Min, AFloatPt01& Max ) const
00264 {
00265
00266
00267
00268
00269 }
00270
00271 void CShadowerFlat::GetBlurrinessRange( APixels& Min, APixels& Max ) const
00272 {
00273
00274
00275
00276
00277 }
00278
00279 void CShadowerFlat::GetPositionRange( ACoordPixels Min, ACoordPixels Max) const
00280 {
00281
00282
00283
00284
00285 }
00286
00287 void CShadowerFlat::GetProjectionRange( ADegrees& MinTilt, ADegrees& MaxTilt,
00288 AFloatPt01& MinYScale, AFloatPt01& MaxYScale ) const
00289 {
00290
00291
00292
00293
00294 }
00295
00296
00297 HRESULT CShadowerFlat::SwitchToTransparencyInsteadOfAlpha( BOOL YesOrNo )
00298 {
00299
00300
00301
00302
00303
00304
00305
00306 return S_OK;
00307 }
00308
00309 HRESULT CShadowerFlat::SwitchToUpsideDownPixelAddressing( BOOL YesOrNo )
00310 {
00311
00312
00313
00314
00315
00316
00317 return S_OK;
00318 }
00319
00320
00321 HRESULT CShadowerFlat::InverseShadowBoundCalc( ACoordPixels UnshadowedWidHei, ACoordPixels UnshadowedPos,
00322 const ACoordPixels& ShadowedWidHei, const AFloatPt01* Baseline ) const
00323 {
00324
00325
00326
00327
00328
00329
00330
00331 return S_OK;
00332 }
00333
00334 HRESULT CShadowerFlat::CalcShadowBound( ACoordPixels ShadowWidHei, ACoordPixels ShadowPos, const AAlphaChannel& TransparencyIn,
00335 const ACoordPixels& tWidHei, const ACoordPixels& tPos ) const
00336 {
00337
00338
00339
00340
00341
00342
00343
00344 return S_OK;
00345 }
00346
00347 HRESULT CShadowerFlat::DrawShadow( const AAlphaChannel& ShadowOut, const ACoordPixels& sWidHei, const ACoordPixels& sPos,
00348 const AAlphaChannel& TransparencyIn, const ACoordPixels& tWidHei, const ACoordPixels& tPos ) const
00349 {
00350
00351
00352
00353
00354
00355
00356
00357 return S_OK;
00358 }