-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathLineSpacing.pas
265 lines (230 loc) · 6.6 KB
/
LineSpacing.pas
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
unit LineSpacing;
// ----------------------------------------------------------
// Copyright (c) 2008-2015, Electric Power Research Institute, Inc.
// All rights reserved.
// ----------------------------------------------------------
interface
uses
Classes,
Sysutils,
Arraydef,
Command,
DSSClass,
DSSObject;
type
{$SCOPEDENUMS ON}
TLineSpacingPropLegacy = (
INVALID = 0,
nconds = 1,
nphases = 2,
x = 3,
h = 4,
units = 5
);
TLineSpacingProp = (
INVALID = 0,
NConds = 1,
NPhases = 2,
X = 3,
H = 4,
Units = 5
);
{$SCOPEDENUMS OFF}
SpcParmChoice = (X, H);
TLineSpacing = class(TDSSClass)
PROTECTED
procedure DefineProperties; override;
PUBLIC
constructor Create(dssContext: TDSSContext);
destructor Destroy; OVERRIDE;
Function NewObject(const ObjName: String; Activate: Boolean = True): Pointer; OVERRIDE;
end;
TLineSpacingObj = class(TDSSObject)
PUBLIC
FX: pDoubleArray;
FY: pDoubleArray;
FNConds: Integer;
NPhases: Integer;
Units: Integer;
// CIM Accessors
function Get_FX(i: Integer): Double;
function Get_FY(i: Integer): Double;
procedure Set_FX(i: Integer; Value: Double);
procedure Set_FY(i: Integer; Value: Double);
PUBLIC
DataChanged: Boolean;
constructor Create(ParClass: TDSSClass; const LineSpacingName: String);
destructor Destroy; OVERRIDE;
procedure PropertySideEffects(Idx: Integer; previousIntVal: Integer; setterFlags: TDSSPropertySetterFlags); override;
procedure MakeLike(OtherPtr: Pointer); override;
// CIM XML accessors
// TODO: remove
property Xcoord[i: Integer]: Double READ Get_FX WRITE Set_FX;
property Ycoord[i: Integer]: Double READ Get_FY WRITE Set_FY;
property NWires: Integer READ FNConds;
end;
implementation
uses
DSSClassDefs,
DSSGlobals,
UComplex, DSSUcomplex,
Utilities,
LineUnits,
DSSHelper,
DSSObjectHelper,
TypInfo;
type
TObj = TLineSpacingObj;
TProp = TLineSpacingProp;
TPropLegacy = TLineSpacingPropLegacy;
const
NumPropsThisClass = Ord(High(TProp));
var
PropInfo: Pointer = NIL;
PropInfoLegacy: Pointer = NIL;
constructor TLineSpacing.Create(dssContext: TDSSContext);
begin
if PropInfo = NIL then
begin
PropInfo := TypeInfo(TProp);
PropInfoLegacy := TypeInfo(TPropLegacy);
end;
inherited Create(dssContext, DSS_OBJECT, 'LineSpacing');
end;
destructor TLineSpacing.Destroy;
begin
inherited Destroy;
end;
procedure TLineSpacing.DefineProperties;
var
obj: TObj = NIL; // NIL (0) on purpose
begin
Numproperties := NumPropsThisClass;
CountPropertiesAndAllocate();
PopulatePropertyNames(0, NumPropsThisClass, PropInfo, PropInfoLegacy);
// enums
PropertyType[ord(TProp.units)] := TPropertyType.MappedStringEnumProperty;
PropertyOffset[ord(TProp.units)] := ptruint(@obj.Units);
PropertyOffset2[ord(TProp.units)] := PtrInt(DSS.UnitsEnum);
// integers
PropertyType[ord(TProp.nphases)] := TPropertyType.IntegerProperty;
PropertyOffset[ord(TProp.nphases)] := ptruint(@obj.Nphases);
PropertyType[ord(TProp.nconds)] := TPropertyType.IntegerProperty;
PropertyOffset[ord(TProp.nconds)] := ptruint(@obj.FNconds);
PropertyFlags[ord(TProp.nconds)] := [TPropertyFlag.SuppressJSON];
// arrays
PropertyType[ord(TProp.X)] := TPropertyType.DoubleVArrayProperty;
PropertyOffset[ord(TProp.X)] := ptruint(@obj.FX);
PropertyOffset2[ord(TProp.X)] := ptruint(@obj.FNconds);
PropertyType[ord(TProp.H)] := TPropertyType.DoubleVArrayProperty;
PropertyOffset[ord(TProp.H)] := ptruint(@obj.FY);
PropertyOffset2[ord(TProp.H)] := ptruint(@obj.FNconds);
ActiveProperty := NumPropsThisClass;
inherited DefineProperties;
end;
function TLineSpacing.NewObject(const ObjName: String; Activate: Boolean): Pointer;
var
Obj: TObj;
begin
Obj := TObj.Create(Self, ObjName);
if Activate then
DSS.ActiveDSSObject := Obj;
Obj.ClassIndex := AddObjectToList(Obj, Activate);
Result := Obj;
end;
procedure TLineSpacingObj.PropertySideEffects(Idx: Integer; previousIntVal: Integer; setterFlags: TDSSPropertySetterFlags);
begin
case Idx of
ord(TProp.nconds):
begin
ReAllocmem(FX, Sizeof(FX[1]) * FNconds);
ReAllocmem(FY, Sizeof(FY[1]) * FNconds);
Units := UNITS_FT;
DataChanged := TRUE;
end;
2..5:
DataChanged := TRUE;
end;
inherited PropertySideEffects(Idx, previousIntVal, setterFlags);
end;
procedure TLineSpacingObj.MakeLike(OtherPtr: Pointer);
var
Other: TObj;
i: Integer;
begin
inherited MakeLike(OtherPtr);
Other := TObj(OtherPtr);
FNConds := Other.FNConds;
PropertySideEffects(ord(TProp.NConds), 0, []);
NPhases := Other.NPhases;
for i := 1 to FNConds do
FX[i] := Other.FX[i];
for i := 1 to FNConds do
FY[i] := Other.FY[i];
Units := Other.Units;
DataChanged := TRUE;
end;
constructor TLineSpacingObj.Create(ParClass: TDSSClass; const LineSpacingName: String);
var
i: Integer;
begin
inherited Create(ParClass);
Name := AnsiLowerCase(LineSpacingName);
DSSObjType := ParClass.DSSClassType;
DataChanged := TRUE;
FX := NIL;
FY := NIL;
units := UNITS_FT;
FNConds := 3;
PropertySideEffects(ord(TProp.NConds), 0, []);
// TODO: consider using NaN to indicate that the user left invalid data
for i := 1 to FNConds do
begin
FX[i] := 0;
FY[i] := 0;
end;
NPhases := 3;
end;
destructor TLineSpacingObj.Destroy;
begin
Reallocmem(FY, 0);
Reallocmem(FX, 0);
inherited destroy;
end;
function ArrayString(pF: pDoubleArray; N: Integer): String;
var
i: Integer;
r: String;
begin
r := '[';
if N > 0 then
r := r + Format('%-g', [pF[1]]);
for i := 2 to N do
r := r + Format(',%-g', [pF[i]]);
Result := r + ']';
end;
function TLineSpacingObj.Get_FX(i: Integer): Double;
begin
if i <= FNConds then
Result := FX[i]
else
Result := 0.0;
end;
function TLineSpacingObj.Get_FY(i: Integer): Double;
begin
if i <= FNConds then
Result := FY[i]
else
Result := 0.0;
end;
procedure TLineSpacingObj.Set_FX(i: Integer; Value: Double);
begin
if (i > 0) and (i <= FNConds) then
FX[i] := Value;
end;
procedure TLineSpacingObj.Set_FY(i: Integer; Value: Double);
begin
if (i > 0) and (i <= FNConds) then
FY[i] := Value;
end;
end.