-
Notifications
You must be signed in to change notification settings - Fork 0
/
camera.asm
420 lines (305 loc) · 9.99 KB
/
camera.asm
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
; Author: Samantha Caneer
.386
.MODEL FLAT
ExitProcess PROTO NEAR32 stdcall, dwExitCode:DWORD
INCLUDE debug.h
INCLUDE sqrt.h
INCLUDE io.h
CR EQU 0dh ; carriage return character
LF EQU 0ah ; line feed
.STACK 4096
.DATA
; declare the variables
eye_x WORD ?
eye_y WORD ?
eye_z WORD ?
at_x WORD ?
at_y WORD ?
at_z WORD ?
up_x WORD ?
up_y WORD ?
up_z WORD ?
n_x WORD ?
n_y WORD ?
n_z WORD ?
space BYTE CR, LF, 0
string BYTE 40 DUP (?)
first_par WORD "("
last_par WORD ")"
comma WORD ","
slash WORD "/"
sp1 WORD " "
ndotn WORD ?
ndotn1 WORD ?
ndotn2 WORD ?
ndotn3 WORD ?
v_up_dotn WORD ?
v_up_dotn1 WORD ?
v_up_dotn2 WORD ?
v_up_dotn3 WORD ?
v1 WORD ?
v2 WORD ?
v3 WORD ?
u1 WORD ?
u2 WORD ?
u3 WORD ?
temp1 WORD ?
temp2 WORD ?
temp3 WORD ?
u_length WORD ?
v_length WORD ?
n_length WORD ?
eyexprompt BYTE "Enter the x-coordinate of the camera eyepoint: ", 0
eyeyprompt BYTE "Enter the y-coordinate of the camera eyepoint: ", 0
eyezprompt BYTE "Enter the z-coordinate of the camera eyepoint: ", 0
at_xprompt BYTE "Enter the x-coordinate of the camera at point: ", 0
at_yprompt BYTE "Enter the y-coordinate of the camera at point: ", 0
at_zprompt BYTE "Enter the z-coordinate of the camera at point: ", 0
up_xprompt BYTE "Enter the x-coordinate of the camera up point: ", 0
up_yprompt BYTE "Enter the y-coordinate of the camera up point: ", 0
up_zprompt BYTE "Enter the z-coordinate of the camera up point: ", 0
display BYTE 50 DUP (?), 0 ; the text to display in (x, y, z) format
output_u BYTE "u: ", 0
output_v BYTE "v: ", 0
output_n BYTE "n: ", 0
; define the end of line
.CODE
macro_for_IO MACRO prompt1, prompt2, prompt3, x1, x2, x3
macro_for_Coordinate prompt1, x1
macro_for_Coordinate prompt2, x2
macro_for_Coordinate prompt3, x3
macro_for_printing_Point x1, x2, x3
ENDM
macro_for_Coordinate MACRO prompt, var
;output prompt ; prompt for number
;input string, 40 ; read ASCII characters
;atod string ; convert to integer
;mov var, ax ; store in memory
;mov ax, 0
inputW prompt, var
output space
ENDM
macro_for_printing_Point MACRO xvar, yvar, zvar
output space
output first_par
output sp1
itoa text, xvar
output text
output comma
output sp1
itoa text, yvar
output text
output comma
output sp1
itoa text, zvar
output text
output last_par
output space
ENDM
printNormPoint MACRO xvar, yvar, zvar, len
output space
output first_par
output sp1
itoa text, xvar
output text
output slash
itoa text, len
output text
output comma
output sp1
itoa text, yvar
output text
output slash
itoa text, len
output text
output comma
output sp1
itoa text, zvar
output text
output slash
itoa text, len
output text
output last_par
output space
ENDM
; computes the dot product of two vectors
; if something is wrong, insert more variables so as not to overwrite x1, y1, z1
dot_product MACRO x1, y1, z1, x2, y2, z2, x3, y3, z3, result
mov ax, x1
mov bx, x2
imul bx
mov x3, ax
mov ax, y1
mov bx, y2
imul bx
mov y3, ax
mov ax, z1
mov bx, z2
imul bx
mov z3, ax
mov ax, x3
add ax, y3
add ax, z3
mov result, ax
ENDM
; computes the cross product of two vectors
cross_product MACRO x1, y1, z1, x2, y2, z2, x3, y3, z3, tempx, tempy
; key:
; x1 = a_x, y1 = a_y, z1 = a_z
; x2 = b_x, y2 = b_y, z2 = b_z
; x3, y3, z3 = resulting vector
mov ax, y1
mov bx, z2
imul bx
mov tempx, ax
mov ax, z1
mov bx, y2
imul bx
mov tempy, ax
mov ax, tempx
;mov bx, tempy
sub ax, tempy
neg ax
mov x3, ax
; calculate 1st coordinate ^
mov ax, z1
mov bx, x2
imul bx
mov tempx, ax
mov ax, x1
mov bx, z2
imul bx
mov tempy, ax
mov ax, tempx
;mov bx, tempy
sub ax, tempy
neg ax
mov y3, ax
; calculate 2nd coordinate ^
mov ax, x1
mov bx, y2
imul bx
mov tempx, ax
mov ax, y1
mov bx, x2
imul bx
mov tempy, ax
mov ax, tempx
;mov bx, tempy
sub ax, tempy
neg ax
mov z3, ax
; calculate 3rd coordinate ^
ENDM
; performs point-point subtraction to obtain a vector
point_subtract MACRO x1, y1, z1, x2, y2, z2, vx, vy, vz
mov ax, x1
sub ax, x2
mov vx, ax
mov ax, y1
sub ax, y2
mov vy, ax
mov ax, z1
sub ax, z2
mov vz, ax
ENDM
; performs point-vector addition to obtain a new point
point_vector_add MACRO vx, vy, vz, xn, yn, zn, x, y, z
mov ax, vx
add ax, xn
mov x, ax
mov ax, vy
add ax, yn
mov y, ax
mov ax, vz
add ax, zn
mov z, ax
ENDM
compute_n MACRO a_x, a_y, a_z, b_x, b_y, b_z, x_r, y_r, z_r
point_subtract a_x, a_y, a_z, b_x, b_y, b_z, x_r, y_r, z_r
ENDM
vector_length MACRO x1, y1, z1, x2, y2, z2, x3, y3, z3, length
dot_product x1, y1, z1, x2, y2, z2, x3, y3, z3, length
sqrt length
mov length, ax
ENDM
normalize MACRO x, y, z, length
mov ax, x
mov bx, length
idiv bx
mov x, ax
mov ax, y
mov bx, length
idiv bx
mov y, ax
mov ax, z
mov bx, length
idiv bx
mov z, ax
ENDM
_start:
macro_for_IO eyexprompt, eyeyprompt, eyezprompt, eye_x, eye_y, eye_z
output space
macro_for_IO at_xprompt, at_yprompt, at_zprompt, at_x, at_y, at_z
output space
macro_for_IO up_xprompt, up_yprompt, up_zprompt, up_x, up_y, up_z
output space
; calculate n
compute_n eye_x, eye_y, eye_z, at_x, at_y, at_z, n_x, n_y, n_z
; define ndotn
dot_product up_x, up_y, up_z, n_x, n_y, n_z, v_up_dotn1, v_up_dotn2, v_up_dotn3, v_up_dotn
; find (n.n)v = -(vup.n)n + (n.n)vup
mov ax, v_up_dotn
mov bx, n_x
imul bx
neg ax
mov v_up_dotn1, ax
mov ax, v_up_dotn
mov bx, n_y
imul bx
neg ax
mov v_up_dotn2, ax
mov ax, v_up_dotn
mov bx, n_z
imul bx
neg ax
mov v_up_dotn3, ax
; compute (n.n)vup
dot_product n_x, n_y, n_z, n_x, n_y, n_z, ndotn1, ndotn2, ndotn3, ndotn
mov ax, ndotn
mov bx, up_x
imul bx
mov ndotn1, ax
mov ax, ndotn
mov bx, up_y
imul bx
mov ndotn2, ax
mov ax, ndotn
mov bx, up_z
imul bx
mov ndotn3, ax
; compute -(vup.n)n and add to previous
point_vector_add v_up_dotn1, v_up_dotn2, v_up_dotn3, ndotn1, ndotn2, ndotn3, v1, v2, v3
; calculate cross_product of v and n to get u
cross_product n_x, n_y, n_z, v1, v2, v3, u1, u2, u3, temp1, temp2
;dot_product
; calculate the vector lengths of u, v and n
vector_length u1, u2, u3, u1, u2, u3, temp1, temp2, temp3, u_length
vector_length v1, v2, v3, v1, v2, v3, temp1, temp2, temp3, v_length
vector_length n_x, n_y, n_z, n_x, n_y, n_z, temp1, temp2, temp3, n_length
;normalize u1, u2, u3, u_length
;normalize v1, v2, v3, v_length
;normalize n_x, n_y, n_z, n_length
output space
output space
output output_u
printNormPoint u1, u2, u3, u_length
output output_v
printNormPoint v1, v2, v3, v_length
output output_n
printNormPoint n_x, n_y, n_z, n_length
;macro_for_printing_Point n_x, n_y, n_z
;printNormPoint u1, u2, u3, u_length
INVOKE ExitProcess, 0 ; exit with return code 0
PUBLIC _start ; make entry point public
END ; end of source code