00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00015
00016
00017 #if !defined(ON_OBJECT_HISTORY_INC_)
00018 #define ON_OBJECT_HISTORY_INC_
00019
00020 #if defined(ON_DLL_TEMPLATE)
00021
00022
00023
00024 #pragma warning( push )
00025 #pragma warning( disable : 4231 )
00026 ON_DLL_TEMPLATE template class ON_CLASS ON_SimpleArray< class ON_Value* >;
00027 #pragma warning( pop )
00028 #endif
00029
00030 class ON_CLASS ON_CurveProxyHistory
00031 {
00032 public:
00033
00034
00035 ON_CurveProxyHistory();
00036 ~ON_CurveProxyHistory();
00037
00038 ON_ObjRef m_curve_ref;
00039 bool m_bReversed;
00040 ON_Interval m_full_real_curve_domain;
00041 ON_Interval m_sub_real_curve_domain;
00042 ON_Interval m_proxy_curve_domain;
00043
00044 void Destroy();
00045 bool Write( ON_BinaryArchive& ) const;
00046 bool Read( ON_BinaryArchive& );
00047 void Dump( ON_TextLog& ) const;
00048
00049 private:
00050 ON__UINT8 m_reserved[64];
00051 };
00052
00053 #if defined(ON_DLL_TEMPLATE)
00054
00055
00056
00057 #pragma warning( push )
00058 #pragma warning( disable : 4231 )
00059 ON_DLL_TEMPLATE template class ON_CLASS ON_ClassArray<ON_CurveProxyHistory>;
00060 #pragma warning( pop )
00061 #endif
00062
00063 class ON_CLASS ON_PolyEdgeHistory
00064 {
00065 public:
00066
00067
00068 ON_PolyEdgeHistory();
00069 ~ON_PolyEdgeHistory();
00070
00071 void Destroy();
00072 bool Write( ON_BinaryArchive& ) const;
00073 bool Read( ON_BinaryArchive& );
00074 void Dump( ON_TextLog& ) const;
00075
00076 ON_ClassArray< ON_CurveProxyHistory > m_segment;
00077 ON_SimpleArray<double> m_t;
00078 int m_evaluation_mode;
00079 private:
00080 ON__UINT8 m_reserved[64];
00081 };
00082
00083 class ON_CLASS ON_HistoryRecord : public ON_Object
00084 {
00085 ON_OBJECT_DECLARE(ON_HistoryRecord);
00086 public:
00087 ON_HistoryRecord();
00088 ~ON_HistoryRecord();
00089
00090
00091
00092 ON_HistoryRecord(const ON_HistoryRecord& src);
00093 ON_HistoryRecord& operator=(const ON_HistoryRecord& src);
00094
00095
00096 ON_BOOL32 IsValid( ON_TextLog* text_log = NULL ) const;
00097
00098 void Dump( ON_TextLog& ) const;
00099
00100 ON_BOOL32 Write(ON_BinaryArchive& binary_archive) const;
00101
00102 ON_BOOL32 Read(ON_BinaryArchive& binary_archive);
00103
00104 ON_UUID ModelObjectId() const;
00105
00107
00108 void Destroy();
00109
00110 void DestroyValue( int value_id );
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144 bool SetBoolValue( int value_id, bool b);
00145 bool SetIntValue( int value_id, int i);
00146 bool SetDoubleValue( int value_id, double x);
00147 bool SetPointValue( int value_id, ON_3dPoint p);
00148 bool SetVectorValue( int value_id, ON_3dVector v);
00149 bool SetXformValue( int value_id, ON_Xform xform);
00150 bool SetColorValue( int value_id, ON_Color c);
00151 bool SetObjRefValue( int value_id, const ON_ObjRef& oref);
00152 bool SetPointOnObjectValue( int value_id, const ON_ObjRef& oref, ON_3dPoint point );
00153 bool SetUuidValue( int value_id, ON_UUID uuid );
00154 bool SetStringValue( int value_id, const wchar_t* s );
00155 bool SetGeometryValue( int value_id, ON_Geometry* g);
00156 bool SetPolyEdgeValue( int value_id, const ON_PolyEdgeHistory& polyedge );
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189
00190 bool SetBoolValues( int value_id, int count, const bool* b);
00191 bool SetIntValues( int value_id, int count, const int* i);
00192 bool SetDoubleValues( int value_id, int count, const double* x);
00193 bool SetPointValues( int value_id, int count, const ON_3dPoint* P);
00194 bool SetVectorValues( int value_id, int count, const ON_3dVector* V);
00195 bool SetXformValues( int value_id, int count, const ON_Xform* xform);
00196 bool SetColorValues( int value_id, int count, const ON_Color* c);
00197 bool SetObjRefValues( int value_id, int count, const ON_ObjRef* oref);
00198 bool SetUuidValues( int value_id, int count, const ON_UUID* u );
00199 bool SetStringValues( int value_id, int count, const wchar_t* const* s );
00200 bool SetStringValues( int value_id, const ON_ClassArray<ON_wString>& s );
00201 bool SetGeometryValues( int value_id, const ON_SimpleArray<ON_Geometry*> a);
00202 bool SetPolyEdgeValues( int value_id, int count, const ON_PolyEdgeHistory* a );
00203
00204
00205
00206
00207
00208 bool GetStringValue( int value_id, ON_wString& str ) const;
00209 bool GetBoolValue( int value_id, bool* b ) const;
00210 bool GetIntValue( int value_id, int* i ) const;
00211 bool GetDoubleValue( int value_id, double* number ) const;
00212 bool GetPointValue( int value_id, ON_3dPoint& point ) const;
00213 bool GetVectorValue( int value_id, ON_3dVector& point ) const;
00214 bool GetXformValue( int value_id, ON_Xform& point ) const;
00215 bool GetColorValue( int value_id, ON_Color* color ) const;
00216 bool GetObjRefValue( int value_id, ON_ObjRef& oref ) const;
00217 bool GetPointOnObjectValue( int value_id, ON_ObjRef& oref ) const;
00218 bool GetCurveValue( int value_id, const ON_Curve*& ) const;
00219 bool GetSurfaceValue( int value_id, const ON_Surface*& ) const;
00220 bool GetBrepValue( int value_id, const ON_Brep*& ) const;
00221 bool GetMeshValue( int value_id, const ON_Mesh*& ) const;
00222 bool GetGeometryValue( int value_id, const ON_Geometry*& ) const;
00223 bool GetUuidValue( int value_id, ON_UUID* uuid ) const;
00224 bool GetPolyEdgeValue( int value_id, const ON_PolyEdgeHistory*& polyedge ) const;
00225
00226 int GetStringValues( int value_id, ON_ClassArray<ON_wString>& string ) const;
00227 int GetBoolValues( int value_id, ON_SimpleArray<bool>& ) const;
00228 int GetIntValues( int value_id, ON_SimpleArray<int>& ) const;
00229 int GetDoubleValues( int value_id, ON_SimpleArray<double>& ) const;
00230 int GetPointValues( int value_id, ON_SimpleArray<ON_3dPoint>& ) const;
00231 int GetVectorValues( int value_id, ON_SimpleArray<ON_3dVector>& ) const;
00232 int GetXformValues( int value_id, ON_SimpleArray<ON_Xform>& ) const;
00233 int GetColorValues( int value_id, ON_SimpleArray<ON_Color>& ) const;
00234 int GetObjRefValues( int value_id, ON_ClassArray<ON_ObjRef>& objects ) const;
00235 int GetGeometryValues( int value_id, ON_SimpleArray<const ON_Geometry*>& ) const;
00236 int GetUuidValues( int value_id, ON_SimpleArray<ON_UUID>& ) const;
00237 int GetPolyEdgeValues( int value_id, ON_SimpleArray<const ON_PolyEdgeHistory*>& ) const;
00238
00239
00240
00241
00242
00243
00244
00245
00246
00247
00248
00249 bool IsAntecedent( ON_UUID object_uuid ) const;
00250
00251
00252
00253
00254
00255
00256
00257
00258
00259
00260 int ValueReport( ON_TextLog& text_log ) const;
00261
00262
00263
00264
00265 ON_UUID m_command_id;
00266
00267
00268
00269
00270
00271 int m_version;
00272
00273 enum RECORD_TYPE
00274 {
00275 history_parameters = 0,
00276 feature_parameters = 1,
00277 force_32bit_record_type = 0xFFFFFFFF
00278 };
00279
00280 RECORD_TYPE m_record_type;
00281
00282
00283
00284
00285
00286
00287
00288
00289
00290 static
00291 RECORD_TYPE RecordType(int i);
00292
00293
00294
00295 ON_UUID m_record_id;
00296
00297
00298
00299
00300 ON_UuidList m_antecedents;
00301
00302
00303
00304 ON_UuidList m_descendants;
00305
00306
00307
00308 ON_SimpleArray< class ON_Value* > m_value;
00309
00310
00311
00312
00313
00314
00315
00316
00317
00318
00319 void RemapObjectIds( const ON_SimpleArray<ON_UuidPair>& uuid_remap );
00320
00321 private:
00322 bool m_bValuesSorted;
00323 ON_Value* FindValueHelper( int, int, bool ) const;
00324 void CopyHelper( const ON_HistoryRecord&);
00325 };
00326
00327
00328 #endif