This file is indexed.

/usr/src/castle-game-engine-4.1.1/base/castlevectors_operators_matrix_implementation.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
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
{ Implement matrix operators.
  Copied and adjusted from FPC's rtl/inc/mmatimp.inc }

{*****************************************************************************
                           Matrix to matrix operations
*****************************************************************************}

operator + (const m1,m2:objectname) : objectname;

{Add the elements of a matrix to each other.}

begin
    result[0,0]:=m1[0,0]+m2[0,0];
    result[0,1]:=m1[0,1]+m2[0,1];
{$if matsize>=3}
    result[0,2]:=m1[0,2]+m2[0,2];
{$endif}
{$if matsize>=4}
    result[0,3]:=m1[0,3]+m2[0,3];
{$endif}
    result[1,0]:=m1[1,0]+m2[1,0];
    result[1,1]:=m1[1,1]+m2[1,1];
{$if matsize>=3}
    result[1,2]:=m1[1,2]+m2[1,2];
{$endif}
{$if matsize>=4}
    result[1,3]:=m1[1,3]+m2[1,3];
{$endif}
{$if matsize>=3}
    result[2,0]:=m1[2,0]+m2[2,0];
    result[2,1]:=m1[2,1]+m2[2,1];
    result[2,2]:=m1[2,2]+m2[2,2];
{$endif}
{$if matsize>=4}
    result[2,3]:=m1[2,3]+m2[2,3];
    result[3,0]:=m1[3,0]+m2[3,0];
    result[3,1]:=m1[3,1]+m2[3,1];
    result[3,2]:=m1[3,2]+m2[3,2];
    result[3,3]:=m1[3,3]+m2[3,3];
{$endif}
end;

operator - (const m1,m2:objectname) : objectname;

{Subtract the elements of two matrixes from each other.}

begin
    result[0,0]:=m1[0,0]-m2[0,0];
    result[0,1]:=m1[0,1]-m2[0,1];
{$if matsize>=3}
    result[0,2]:=m1[0,2]-m2[0,2];
{$endif}
{$if matsize>=4}
    result[0,3]:=m1[0,3]-m2[0,3];
{$endif}
    result[1,0]:=m1[1,0]-m2[1,0];
    result[1,1]:=m1[1,1]-m2[1,1];
{$if matsize>=3}
    result[1,2]:=m1[1,2]-m2[1,2];
{$endif}
{$if matsize>=4}
    result[1,3]:=m1[1,3]-m2[1,3];
{$endif}
{$if matsize>=3}
    result[2,0]:=m1[2,0]-m2[2,0];
    result[2,1]:=m1[2,1]-m2[2,1];
    result[2,2]:=m1[2,2]-m2[2,2];
{$endif}
{$if matsize>=4}
    result[2,3]:=m1[2,3]-m2[2,3];
    result[3,0]:=m1[3,0]-m2[3,0];
    result[3,1]:=m1[3,1]-m2[3,1];
    result[3,2]:=m1[3,2]-m2[3,2];
    result[3,3]:=m1[3,3]-m2[3,3];
{$endif}
end;

operator - (const m1:objectname) : objectname;

{Negate the elements of a matrix.}

begin
    result[0,0]:=-m1[0,0];
    result[0,1]:=-m1[0,1];
{$if matsize>=3}
    result[0,2]:=-m1[0,2];
{$endif}
{$if matsize>=4}
    result[0,3]:=-m1[0,3];
{$endif}
    result[1,0]:=-m1[1,0];
    result[1,1]:=-m1[1,1];
{$if matsize>=3}
    result[1,2]:=-m1[1,2];
{$endif}
{$if matsize>=4}
    result[1,3]:=-m1[1,3];
{$endif}
{$if matsize>=3}
    result[2,0]:=-m1[2,0];
    result[2,1]:=-m1[2,1];
    result[2,2]:=-m1[2,2];
{$endif}
{$if matsize>=4}
    result[2,3]:=-m1[2,3];
    result[3,0]:=-m1[3,0];
    result[3,1]:=-m1[3,1];
    result[3,2]:=-m1[3,2];
    result[3,3]:=-m1[3,3];
{$endif}
end;

(* TODO: Fix, FPC matrix was ordered by rows, we should make transpose inside.

Doing transpose here would be a waste of time...
  function MatrixTranspose(const M: TMatrix4Single): TMatrix4Single;
  begin
    Result[0, 0] := M[0, 0];
    Result[0, 1] := M[1, 0];
    Result[0, 2] := M[2, 0];
    Result[0, 3] := M[3, 0];

    Result[1, 0] := M[0, 1];
    Result[1, 1] := M[1, 1];
    Result[1, 2] := M[2, 1];
    Result[1, 3] := M[3, 1];

    Result[2, 0] := M[0, 2];
    Result[2, 1] := M[1, 2];
    Result[2, 2] := M[2, 2];
    Result[2, 3] := M[3, 2];

    Result[3, 0] := M[0, 3];
    Result[3, 1] := M[1, 3];
    Result[3, 2] := M[2, 3];
    Result[3, 3] := M[3, 3];
  end;


operator * (const m1,m2:objectname) : objectname;

{Multiply two matrixes.}

var r:array[0..matsize-1] of datatype;
    i:byte;

begin
    for i:=0 to matsize-1 do
        begin
            r:=m1[i];
            result[i,0]:=r[0]*m2[0,0]
                             +r[1]*m2[1,0]
             {$if matsize>=3}+r[2]*m2[2,0]{$endif}
             {$if matsize>=4}+r[3]*m2[3,0]{$endif};
            result[i,1]:=r[0]*m2[0,1]
                             +r[1]*m2[1,1]
             {$if matsize>=3}+r[2]*m2[2,1]{$endif}
             {$if matsize>=4}+r[3]*m2[3,1]{$endif};
        {$if matsize>=3}
            result[i,2]:=r[0]*m2[0,2]
                             +r[1]*m2[1,2]
                             +r[2]*m2[2,2]
             {$if matsize>=4}+r[3]*m2[3,2]{$endif};
        {$endif}
        {$if matsize>=4}
            result[i,3]:=r[0]*m2[0,3]
                             +r[1]*m2[1,3]
                             +r[2]*m2[2,3]
                             +r[3]*m2[3,3];
        {$endif}
        end;
end;
*)

{*****************************************************************************
                           Vector/matrix operations
*****************************************************************************}

(* TODO: Fix, FPC matrix was ordered by rows, we should make transpose inside.

operator * (const m:objectname;const v:vectorcompanion) : vectorcompanion;

{Multiplies a matrix with a vector.}

begin
    result[0]:=m[0,0]*v[0]
                   +m[0,1]*v[1]
   {$if matsize>=3}+m[0,2]*v[2]{$endif}
   {$if matsize>=4}+m[0,3]*v[3]{$endif};
    result[1]:=m[1,0]*v[0]
                   +m[1,1]*v[1]
   {$if matsize>=3}+m[1,2]*v[2]{$endif}
   {$if matsize>=4}+m[1,3]*v[3]{$endif};
{$if matsize>=3}
    result[2]:=m[2,0]*v[0]
                   +m[2,1]*v[1]
                   +m[2,2]*v[2]
   {$if matsize>=4}+m[2,3]*v[3]{$endif};
{$endif}
{$if matsize>=4}
    result[3]:=m[3,0]*v[0]
                   +m[3,1]*v[1]
                   +m[3,2]*v[2]
                   +m[3,3]*v[3];
{$endif}
end;

*)

{$if matsize>=4}
{ For now, we just define 4x4 multiplications. Copied from MatrixMult. }
operator * (const m1,m2:objectname) : objectname;
begin
  result[0, 0] := m1[0, 0] * m2[0, 0] + m1[1, 0] * m2[0, 1] + m1[2, 0] * m2[0, 2] + m1[3, 0] * m2[0, 3];
  result[1, 0] := m1[0, 0] * m2[1, 0] + m1[1, 0] * m2[1, 1] + m1[2, 0] * m2[1, 2] + m1[3, 0] * m2[1, 3];
  result[2, 0] := m1[0, 0] * m2[2, 0] + m1[1, 0] * m2[2, 1] + m1[2, 0] * m2[2, 2] + m1[3, 0] * m2[2, 3];
  result[3, 0] := m1[0, 0] * m2[3, 0] + m1[1, 0] * m2[3, 1] + m1[2, 0] * m2[3, 2] + m1[3, 0] * m2[3, 3];
  result[0, 1] := m1[0, 1] * m2[0, 0] + m1[1, 1] * m2[0, 1] + m1[2, 1] * m2[0, 2] + m1[3, 1] * m2[0, 3];
  result[1, 1] := m1[0, 1] * m2[1, 0] + m1[1, 1] * m2[1, 1] + m1[2, 1] * m2[1, 2] + m1[3, 1] * m2[1, 3];
  result[2, 1] := m1[0, 1] * m2[2, 0] + m1[1, 1] * m2[2, 1] + m1[2, 1] * m2[2, 2] + m1[3, 1] * m2[2, 3];
  result[3, 1] := m1[0, 1] * m2[3, 0] + m1[1, 1] * m2[3, 1] + m1[2, 1] * m2[3, 2] + m1[3, 1] * m2[3, 3];
  result[0, 2] := m1[0, 2] * m2[0, 0] + m1[1, 2] * m2[0, 1] + m1[2, 2] * m2[0, 2] + m1[3, 2] * m2[0, 3];
  result[1, 2] := m1[0, 2] * m2[1, 0] + m1[1, 2] * m2[1, 1] + m1[2, 2] * m2[1, 2] + m1[3, 2] * m2[1, 3];
  result[2, 2] := m1[0, 2] * m2[2, 0] + m1[1, 2] * m2[2, 1] + m1[2, 2] * m2[2, 2] + m1[3, 2] * m2[2, 3];
  result[3, 2] := m1[0, 2] * m2[3, 0] + m1[1, 2] * m2[3, 1] + m1[2, 2] * m2[3, 2] + m1[3, 2] * m2[3, 3];
  result[0, 3] := m1[0, 3] * m2[0, 0] + m1[1, 3] * m2[0, 1] + m1[2, 3] * m2[0, 2] + m1[3, 3] * m2[0, 3];
  result[1, 3] := m1[0, 3] * m2[1, 0] + m1[1, 3] * m2[1, 1] + m1[2, 3] * m2[1, 2] + m1[3, 3] * m2[1, 3];
  result[2, 3] := m1[0, 3] * m2[2, 0] + m1[1, 3] * m2[2, 1] + m1[2, 3] * m2[2, 2] + m1[3, 3] * m2[2, 3];
  result[3, 3] := m1[0, 3] * m2[3, 0] + m1[1, 3] * m2[3, 1] + m1[2, 3] * m2[3, 2] + m1[3, 3] * m2[3, 3];
end;
{$endif}

{*****************************************************************************
                           Matrix/scalar operations
*****************************************************************************}

operator * (const m:objectname;const x:datatype) : objectname;

{Multiplies the elements of a matrix.}

begin
  result[0,0]:=m[0,0]*x;
  result[0,1]:=m[0,1]*x;
{$if matsize>=3}
  result[0,2]:=m[0,2]*x;
{$endif}
{$if matsize>=4}
  result[0,3]:=m[0,3]*x;
{$endif}
  result[1,0]:=m[1,0]*x;
  result[1,1]:=m[1,1]*x;
{$if matsize>=3}
  result[1,2]:=m[1,2]*x;
{$endif}
{$if matsize>=4}
  result[1,3]:=m[1,3]*x;
{$endif}
{$if matsize>=3}
  result[2,0]:=m[2,0]*x;
  result[2,1]:=m[2,1]*x;
  result[2,2]:=m[2,2]*x;
{$endif}
{$if matsize>=4}
  result[2,3]:=m[2,3]*x;
  result[3,0]:=m[3,0]*x;
  result[3,1]:=m[3,1]*x;
  result[3,2]:=m[3,2]*x;
  result[3,3]:=m[3,3]*x;
{$endif}
end;

operator / (const m:objectname;const x:datatype) : objectname;

{Divides the elements of a matrix.

 In most cases, you will want to avoid this and multiply by the inverse.
 In case you need to preserve accuracy, dividing might be better though.}

begin
  result[0,0]:=m[0,0]/x;
  result[0,1]:=m[0,1]/x;
{$if matsize>=3}
  result[0,2]:=m[0,2]/x;
{$endif}
{$if matsize>=4}
  result[0,3]:=m[0,3]/x;
{$endif}
  result[1,0]:=m[1,0]/x;
  result[1,1]:=m[1,1]/x;
{$if matsize>=3}
  result[1,2]:=m[1,2]/x;
{$endif}
{$if matsize>=4}
  result[1,3]:=m[1,3]/x;
{$endif}
{$if matsize>=3}
  result[2,0]:=m[2,0]/x;
  result[2,1]:=m[2,1]/x;
  result[2,2]:=m[2,2]/x;
{$endif}
{$if matsize>=4}
  result[2,3]:=m[2,3]/x;
  result[3,0]:=m[3,0]/x;
  result[3,1]:=m[3,1]/x;
  result[3,2]:=m[3,2]/x;
  result[3,3]:=m[3,3]/x;
{$endif}
end;