This file is indexed.

/usr/src/castle-game-engine-4.1.1/castlescript/castlescriptvectors_implement_vector.inc is in castle-game-engine-src 4.1.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
{ Common implementation of vector-based TCasScriptValue descendants.
  Needs following macros defined before including:

  VectorGetCount
  TCasScriptVectXx
  TVectorXxx
  RegisterVecXxFunctions
  TCasScriptVectorFunXxx
}

{ TCasScriptVecXx ---------------------------------------------------------- }

class procedure TCasScriptVecXx.HandleAdd(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
var
  I: Integer;
begin
  CreateValueIfNeeded(AResult, ParentOfResult, TCasScriptVecXx);
  { The function allows only >= 1 arguments, and this handler is
    registered only for TCasScriptVecXx values, so we can safely take
    the first arg as TCasScriptVecXx. }
  TCasScriptVecXx(AResult).Value := TCasScriptVecXx(Arguments[0]).Value;
  for I := 1 to Length(Arguments) - 1 do
    TCasScriptVecXx(AResult).Value := VectorAdd(
      TCasScriptVecXx(AResult).Value, TCasScriptVecXx(Arguments[I]).Value);
end;

class procedure TCasScriptVecXx.HandleSubtract(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
var
  I: Integer;
begin
  CreateValueIfNeeded(AResult, ParentOfResult, TCasScriptVecXx);
  TCasScriptVecXx(AResult).Value := TCasScriptVecXx(Arguments[0]).Value;
  for I := 1 to Length(Arguments) - 1 do
    TCasScriptVecXx(AResult).Value := VectorSubtract(
      TCasScriptVecXx(AResult).Value, TCasScriptVecXx(Arguments[I]).Value);
end;

class procedure TCasScriptVecXx.HandleNegate(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
begin
  CreateValueIfNeeded(AResult, ParentOfResult, TCasScriptVecXx);
  TCasScriptVecXx(AResult).Value := VectorNegate(TCasScriptVecXx(Arguments[0]).Value);
end;

class procedure TCasScriptVecXx.HandleEqual(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
begin
  CreateValueIfNeeded(AResult, ParentOfResult, TCasScriptBoolean);
  TCasScriptBoolean(AResult).Value :=
    VectorsPerfectlyEqual(
      TCasScriptVecXx(Arguments[0]).Value,
      TCasScriptVecXx(Arguments[1]).Value);
end;

class procedure TCasScriptVecXx.HandleNotEqual(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
begin
  CreateValueIfNeeded(AResult, ParentOfResult, TCasScriptBoolean);
  TCasScriptBoolean(AResult).Value :=
    not VectorsPerfectlyEqual(
      TCasScriptVecXx(Arguments[0]).Value,
      TCasScriptVecXx(Arguments[1]).Value);
end;

class procedure TCasScriptVecXx.HandleMultiply(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
begin
  CreateValueIfNeeded(AResult, ParentOfResult, TCasScriptVecXx);
  if Arguments[0] is TCasScriptFloat then
  begin
    TCasScriptVecXx(AResult).Value := VectorScale(
      TCasScriptVecXx(Arguments[1]).Value,
      TCasScriptFloat(Arguments[0]).Value);
  end else
  begin
    TCasScriptVecXx(AResult).Value := VectorScale(
      TCasScriptVecXx(Arguments[0]).Value,
      TCasScriptFloat(Arguments[1]).Value);
  end;
end;

class procedure TCasScriptVecXx.HandleDivide(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
begin
  CreateValueIfNeeded(AResult, ParentOfResult, TCasScriptVecXx);
  TCasScriptVecXx(AResult).Value := VectorScale(
    TCasScriptVecXx(Arguments[0]).Value,
    1/TCasScriptFloat(Arguments[1]).Value);
end;

class procedure TCasScriptVecXx.HandleMax(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
var
  I: Integer;
begin
  CreateValueIfNeeded(AResult, ParentOfResult, TCasScriptVecXx);
  for I := 0 to VectorGetCount - 1 do
    TCasScriptVecXx(AResult).FValue[I] :=
      Max( TCasScriptVecXx(Arguments[0]).FValue[I],
           TCasScriptVecXx(Arguments[1]).FValue[I] );
  TCasScriptVecXx(AResult).ValueAssigned := true;
end;

class procedure TCasScriptVecXx.HandleMin(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
var
  I: Integer;
begin
  CreateValueIfNeeded(AResult, ParentOfResult, TCasScriptVecXx);
  for I := 0 to VectorGetCount - 1 do
    TCasScriptVecXx(AResult).FValue[I] :=
      Min( TCasScriptVecXx(Arguments[0]).FValue[I],
           TCasScriptVecXx(Arguments[1]).FValue[I] );
  TCasScriptVecXx(AResult).ValueAssigned := true;
end;

class procedure TCasScriptVecXx.HandleVector(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
var
  I: Integer;
begin
  CreateValueIfNeeded(AResult, ParentOfResult, TCasScriptVecXx);
  for I := 0 to VectorGetCount - 1 do
    TCasScriptVecXx(AResult).FValue[I] := TCasScriptFloat(Arguments[I]).Value;
  TCasScriptVecXx(AResult).ValueAssigned := true;
end;

class procedure TCasScriptVecXx.HandleVectorGet(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
var
  Index: Integer;
begin
  CreateValueIfNeeded(AResult, ParentOfResult, TCasScriptFloat);

  Index := TCasScriptInteger(Arguments[1]).Value;
  if not Between(Index, 0, VectorGetCount - 1) then
    raise ECasScriptError.CreateFmt('Invalid index %d for vector_get on %d-element vector',
      [Index, VectorGetCount]);

  TCasScriptFloat(AResult).Value := TCasScriptVecXx(Arguments[0]).Value[Index];
end;

class procedure TCasScriptVecXx.HandleVectorSet(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
var
  Index: Integer;
begin
  if ParentOfResult then
    AResult.FreeByParentExpression;
  AResult := nil;
  ParentOfResult := false;

  Index := TCasScriptInteger(Arguments[1]).Value;
  if not Between(Index, 0, VectorGetCount - 1) then
    raise ECasScriptError.CreateFmt('Invalid index %d for vector_set on %d-element vector',
      [Index, VectorGetCount]);

  TCasScriptVecXx(Arguments[0]).FValue[Index] := TCasScriptFloat(Arguments[2]).Value;
  TCasScriptVecXx(Arguments[0]).ValueAssigned := true;

  AResult := Arguments[0];
end;

class procedure TCasScriptVecXx.HandleVectorGetCount(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
begin
  CreateValueIfNeeded(AResult, ParentOfResult, TCasScriptInteger);
  TCasScriptInteger(AResult).Value := VectorGetCount;
end;

class procedure TCasScriptVecXx.HandleVectorLength(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
begin
  CreateValueIfNeeded(AResult, ParentOfResult, TCasScriptFloat);
  TCasScriptFloat(AResult).Value :=
    VectorLen(TCasScriptVecXx(Arguments[0]).Value);
end;

class procedure TCasScriptVecXx.HandleVectorSqrLength(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
begin
  CreateValueIfNeeded(AResult, ParentOfResult, TCasScriptFloat);
  TCasScriptFloat(AResult).Value :=
    VectorLenSqr(TCasScriptVecXx(Arguments[0]).Value);
end;

class procedure TCasScriptVecXx.HandleVectorDot(AFunction: TCasScriptFunction; const Arguments: array of TCasScriptValue; var AResult: TCasScriptValue; var ParentOfResult: boolean);
begin
  CreateValueIfNeeded(AResult, ParentOfResult, TCasScriptFloat);
  TCasScriptFloat(AResult).Value :=
    VectorDotProduct( TCasScriptVecXx(Arguments[0]).Value,
                      TCasScriptVecXx(Arguments[1]).Value );
end;

procedure TCasScriptVecXx.AssignValue(Source: TCasScriptValue);
begin
  if Source is TCasScriptVecXx then
    Value := TCasScriptVecXx(Source).Value else
    raise ECasScriptAssignError.CreateFmt('Assignment from %s to %s not possible', [Source.ClassName, ClassName]);
end;

procedure TCasScriptVecXx.SetValue(const AValue: TVectorXxx);
begin
  FValue := AValue;
  ValueAssigned := true;
end;

procedure RegisterVecXxFunctions;
var
  VectorArgClasses: array of TCasScriptValueClass;
  I: Integer;
begin
  { TCasScriptVecXx, functions from CastleScriptCoreFunctions }
  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleAdd, TCasScriptAdd, [TCasScriptVecXx], true);
  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleSubtract, TCasScriptSubtract, [TCasScriptVecXx], true);
  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleNegate, TCasScriptNegate, [TCasScriptVecXx], false);
  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleEqual, TCasScriptEqual, [TCasScriptVecXx, TCasScriptVecXx], false);
  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleNotEqual, TCasScriptNotEqual, [TCasScriptVecXx, TCasScriptVecXx], false);

  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleMultiply, TCasScriptMultiply, [TCasScriptVecXx, TCasScriptFloat], false);
  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleMultiply, TCasScriptMultiply, [TCasScriptFloat, TCasScriptVecXx], false);
  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleDivide, TCasScriptDivide, [TCasScriptVecXx, TCasScriptFloat], false);

  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleMax, TCasScriptMax, [TCasScriptVecXx, TCasScriptVecXx], false);
  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleMin, TCasScriptMin, [TCasScriptVecXx, TCasScriptVecXx], false);

  { TCasScriptVecXx, functions from CastleScriptVectors }
  SetLength(VectorArgClasses, VectorGetCount);
  for I := 0 to VectorGetCount - 1 do
    VectorArgClasses[I] := TCasScriptFloat;
  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleVector, TCasScriptVectorFunXxx, VectorArgClasses, false);

  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleVectorGet, TCasScriptVectorGet, [TCasScriptVecXx, TCasScriptInteger], false);
  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleVectorSet, TCasScriptVectorSet, [TCasScriptVecXx, TCasScriptInteger, TCasScriptFloat], false);
  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleVectorGetCount, TCasScriptVectorGetCount, [TCasScriptVecXx], false);
  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleVectorLength, TCasScriptVectorLength, [TCasScriptVecXx], false);
  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleVectorSqrLength, TCasScriptVectorSqrLength, [TCasScriptVecXx], false);
  FunctionHandlers.RegisterHandler(@TCasScriptVecXx(nil).HandleVectorDot, TCasScriptVectorDot, [TCasScriptVecXx, TCasScriptVecXx], false);
end;