-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm2ppro.cc
953 lines (723 loc) · 27.8 KB
/
m2ppro.cc
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
#if !defined(NO_FPU_CONTROL)
#include <fpu_control.h>
#endif
#include "cc.h"
//;/*
//.486
//.model flat
//LOCALS
extern "C" uint32_t pcSparklesLookup[256];
//data32 SEGMENT PAGE
//.data
//fpucw dw ?
//oldfpucw dw ?
//oh_low dd ?
//co_low dd ?
//co_hi dd ?
//align 32
static uint32_t pMV2Camera;
static uint32_t pMV2Particles;
static uint32_t dwNumParticles;
static uint32_t pBackBuffer;
static float fCameraX;
static float fCameraY;
static float fCameraZ;
static float fCameraFX;
static float fCameraFY;
static float fCameraFZ;
static float fCameraRX;
static float fCameraRY;
static float fCameraRZ;
static float fCameraDX;
static float fCameraDY;
static float fCameraDZ;
static float fScreenFactor;
static uint32_t dwClipXmin;
static uint32_t dwClipYmin;
static uint32_t dwClipXmax;
static uint32_t dwClipYmax;
static uint32_t dwXmax;
static uint32_t dwYmax;
static float fXmax;
static float fYmax;
static float fXmaxDiv2;
static float fYmaxDiv2;
static uint32_t dwScreenX;
static uint32_t dwScreenY;
static float fZNewRZP;
#if 0
//fRCol dd 50.0
//fGCol dd 180.0
//fBCol dd 180.0
#endif
static float fRCol = 255.0;
static float fGCol = 255.0;
static float fBCol = 255.0;
static uint32_t dwRDest;
static uint32_t dwGDest;
static uint32_t dwBDest;
const static float fAngleTOSinTabfactor = 40.74366543f; //256.0/(2PI)
static uint32_t dwAngleX;
static uint32_t dwAngleY2;
static uint32_t dwAngleY1;
static uint32_t dwAngleZ;
const static float fScaling = 3.5f;
//*****************
const static float fNum_1 = 1.0f;
//fNum_01 dd 0.1
//fNum_05 dd 0.5
//fNum_10Exp_10 dd 0.0000000001
//fNum_2Exp20 dd 1048576.0
//fTemp dd ?
static uint32_t lTemp;
//wTemp dw ?
//align 4
//bTemp db ?
//align 4
//*****************
static uint32_t dwTempR;
static uint32_t dwTempG;
static uint32_t dwTempB;
//ends
//.code
#include "m2struct.inc.h"
extern "C" void MV2ParticleProjectionASM(uint32_t _pMV2Camera, uint32_t _pMV2Particles, uint32_t _dwNumParticles, uint32_t _pBackBuffer, int iParticleWidth, int iParticleHeight) {
float fpu_reg10, fpu_reg11, fpu_reg12, fpu_reg13, fpu_reg14, fpu_reg15, fpu_reg16, fpu_reg17, fpu_reg18;
uint32_t eax, edx, ecx, edi, ebx, esi, ebp;
uint32_t stack_var00, stack_var01, stack_var02;
int iParticleX, iParticleY;
#if !defined(NO_FPU_CONTROL)
#if defined(__i386__)
fpu_control_t oldcw;
{
fpu_control_t cw;
_FPU_GETCW(oldcw);
cw = oldcw & ~((_FPU_EXTENDED | _FPU_DOUBLE | _FPU_SINGLE));
cw |= (_FPU_SINGLE);
_FPU_SETCW(cw);
}
#elif defined(__arm__)
#else
todo
#endif
#endif
#if 0
//;****
// fstcw oldfpucw
// mov ax,oldfpucw
// and eax,0fcffh
//; and eax,0fbffh
//; or eax,00800h
// mov fpucw,ax
// fldcw fpucw
//;****
#endif
eax = _pMV2Camera;
ebx = _pMV2Particles;
ecx = _dwNumParticles;
edx = _pBackBuffer;
pMV2Camera = eax;
pMV2Particles = ebx;
dwNumParticles = ecx;
pBackBuffer = edx;
esi = pMV2Camera;
eax = ( ((CMV2Camera *)esi)->CMV2Camera__m_iXmax );
ebx = ( ((CMV2Camera *)esi)->CMV2Camera__m_iYmax );
dwXmax = eax;
dwYmax = ebx;
fpu_reg10 = ( (int32_t)dwXmax );
fpu_reg11 = ( (int32_t)dwYmax );
fYmax = fpu_reg11;
fXmax = fpu_reg10;
eax = eax >> ( 1 );
ebx = ebx >> ( 1 );
lTemp = eax;
fpu_reg10 = ( (int32_t)lTemp );
fXmaxDiv2 = fpu_reg10;
lTemp = ebx;
fpu_reg10 = ( (int32_t)lTemp );
fYmaxDiv2 = fpu_reg10;
eax = ( ((CMV2Camera *)esi)->CMV2Camera__m_iClipXmin );
ebx = ( ((CMV2Camera *)esi)->CMV2Camera__m_iClipXmax );
ecx = ( ((CMV2Camera *)esi)->CMV2Camera__m_iClipYmin );
edx = ( ((CMV2Camera *)esi)->CMV2Camera__m_iClipYmax );
// dec eax ; wegen des clippings
// dec ecx
dwClipXmin = eax;
dwClipXmax = ebx;
dwClipYmin = ecx;
dwClipYmax = edx;
fCameraX = ((CMV2Camera *)esi)->CMV2Camera__m_Pos__m_fX;
fCameraY = ((CMV2Camera *)esi)->CMV2Camera__m_Pos__m_fY;
fCameraZ = ((CMV2Camera *)esi)->CMV2Camera__m_Pos__m_fZ;
fCameraFX = ((CMV2Camera *)esi)->CMV2Camera__m_Front__m_fX;
fCameraFY = ((CMV2Camera *)esi)->CMV2Camera__m_Front__m_fY;
fCameraFZ = ((CMV2Camera *)esi)->CMV2Camera__m_Front__m_fZ;
fScreenFactor = ((CMV2Camera *)esi)->CMV2Camera__m_fScreenFactor;
// fld ds:[esi].CMV2Camera__m_fScreenFactor
fpu_reg10 = 1.0f;
fpu_reg11 = ( ((CMV2Camera *)esi)->CMV2Camera__m_Right__m_fX );
fpu_reg11 = fpu_reg11 * fpu_reg10;
//st0 = CameraRX*ScreenFactor, st1 = ScreenFactor
fpu_reg12 = ( ((CMV2Camera *)esi)->CMV2Camera__m_Right__m_fY );
fpu_reg12 = fpu_reg12 * fpu_reg10;
fpu_reg13 = ( ((CMV2Camera *)esi)->CMV2Camera__m_Right__m_fZ );
fpu_reg13 = fpu_reg13 * fpu_reg10;
//st0 = CameraRZ*ScreenFactor, st1 = CameraRY*ScreenFactor
//st2 = CameraRX*ScreenFactor, st3 = ScreenFactor
fpu_reg14 = ( ((CMV2Camera *)esi)->CMV2Camera__m_Down__m_fX );
fpu_reg14 = fpu_reg14 * fpu_reg10;
fpu_reg15 = ( ((CMV2Camera *)esi)->CMV2Camera__m_Down__m_fY );
fpu_reg15 = fpu_reg15 * fpu_reg10;
fpu_reg16 = ( ((CMV2Camera *)esi)->CMV2Camera__m_Down__m_fZ );
fpu_reg16 = fpu_reg16 * fpu_reg10;
{ float tmp = fpu_reg14; fpu_reg14 = fpu_reg16; fpu_reg16 = tmp; }
//st0 = CameraDX*ScreenFactor, st1 = CameraDY*ScreenFactor
//st2 = CameraDZ*ScreenFactor, st3 = CameraRZ*ScreenFactor
//st4 = CameraRY*ScreenFactor, st5 = CameraRX*ScreenFactor
//st6 = ScreenFactor
fCameraDX = fpu_reg16;
fCameraDY = fpu_reg15;
fCameraDZ = fpu_reg14;
fCameraRZ = fpu_reg13;
fCameraRY = fpu_reg12;
fCameraRX = fpu_reg11;
//ffree st(0)
esi = pMV2Particles;
edi = pBackBuffer;
ebp = dwNumParticles;
MV2ParticleProjectionASM_ParticleLoop:
fpu_reg10 = ( ((CMV2Particle *)esi)->CMV2Particle__m_InterpPos__m_fX );
fpu_reg10 = fpu_reg10 * fScaling;
fpu_reg10 = fpu_reg10 - fCameraX;
//st0 = VectorX
fpu_reg11 = fCameraFX;
fpu_reg11 = fpu_reg11 * fpu_reg10;
//st0 = fCameraFX*VectorX, st1 = VectorX
fpu_reg12 = fCameraRX;
fpu_reg12 = fpu_reg12 * fpu_reg10;
//st0 = fCameraRX*VectorX, st1 = fCameraFX*VectorX
//st2 = VectorX
fpu_reg13 = fCameraDX;
fpu_reg13 = fpu_reg13 * fpu_reg10;
// fpu_reg10 = 0.0f;
//st0 = fCameraDX*VectorX, st1 = fCameraRX*VectorX
//st2 = fCameraFX*VectorX
fpu_reg14 = ( ((CMV2Particle *)esi)->CMV2Particle__m_InterpPos__m_fZ );
fpu_reg14 = fpu_reg14 * fScaling;
fpu_reg14 = fpu_reg14 - fCameraY;
//st0 = VectorY, st1 = fCameraDX*VectorX
//st2 = fCameraRX*VectorX, st3 = fCameraFX*VectorX
fpu_reg15 = fCameraFY;
fpu_reg15 = fpu_reg15 * fpu_reg14;
//st0 = fCameraFY*VectorY, st1 = VectorY
//st1 = fCameraDX*VectorX
//st2 = fCameraRX*VectorX, st3 = fCameraFX*VectorX
fpu_reg16 = fCameraRY;
fpu_reg16 = fpu_reg16 * fpu_reg14;
//st0 = fCameraRY*VectorY, st1 = fCameraFY*VectorY
//st2 = VectorY, st3 = fCameraDX*VectorX
//st4 = fCameraRX*VectorX, st5 = fCameraFX*VectorX
fpu_reg17 = fCameraDY;
fpu_reg17 = fpu_reg17 * fpu_reg14;
{ float tmp = fpu_reg15; fpu_reg15 = fpu_reg17; fpu_reg17 = tmp; }
//st0 = fCameraFY*VectorY, st1 = fCameraRY*VectorY
//st2 = fCameraDY*VectorY, st3 = VectorY
//st4 = fCameraDX*VectorX
//st5 = fCameraRX*VectorX, st6 = fCameraFX*VectorX
fpu_reg11 = fpu_reg11 + fpu_reg17;
//st0 = fCameraRY*VectorY, st1 = fCameraDY*VectorY
//st2 = VectorY, st3 = fCameraDX*VectorX
//st4 = fCameraRX*VectorX
//st5 = fCameraFX*VectorX + fCameraFY*VectorY
fpu_reg12 = fpu_reg12 + fpu_reg16;
//st0 = fCameraDY*VectorY
//st1 = VectorY, st2 = fCameraDX*VectorX
//st3 = fCameraRX*VectorX + fCameraRY*VectorY
//st4 = fCameraFX*VectorX + fCameraFY*VectorY
fpu_reg13 = fpu_reg13 + fpu_reg15;
{ float tmp = fpu_reg11; fpu_reg11 = fpu_reg14; fpu_reg14 = tmp; }
// fpu_reg11 = 0.0f;
//st0 = fCameraFX*VectorX + fCameraFY*VectorY
//st1 = fCameraDX*VectorX + fCameraDY*VectorY
//st2 = fCameraRX*VectorX + fCameraRY*VectorY
fpu_reg15 = ( ((CMV2Particle *)esi)->CMV2Particle__m_InterpPos__m_fY );
fpu_reg15 = -fpu_reg15;
fpu_reg15 = fpu_reg15 * fScaling;
fpu_reg15 = fpu_reg15 - fCameraZ;
//st0 = VectorZ
//st1 = fCameraFX*VectorX + fCameraFY*VectorY
//st2 = fCameraDX*VectorX + fCameraDY*VectorY
//st3 = fCameraRX*VectorX + fCameraRY*VectorY
fpu_reg16 = fCameraFZ;
fpu_reg16 = fpu_reg16 * fpu_reg15;
//st0 = fCameraZ*VectorZ, st1 = VectorZ
//st2 = fCameraFX*VectorX + fCameraFY*VectorY
//st3 = fCameraDX*VectorX + fCameraDY*VectorY
//st4 = fCameraRX*VectorX + fCameraRY*VectorY
fpu_reg17 = fCameraRZ;
fpu_reg17 = fpu_reg17 * fpu_reg15;
//st0 = fCameraRZ*VectorZ, st1 = fCameraFZ*VectorZ
//st2 = VectorZ
//st3 = fCameraFX*VectorX + fCameraFY*VectorY
//st4 = fCameraDX*VectorX + fCameraDY*VectorY
//st5 = fCameraRX*VectorX + fCameraRY*VectorY
fpu_reg18 = fCameraDZ;
fpu_reg18 = fpu_reg18 * fpu_reg15;
{ float tmp = fpu_reg16; fpu_reg16 = fpu_reg18; fpu_reg18 = tmp; }
//st0 = fCameraFZ*VectorZ, st1 = fCameraRZ*VectorZ
//st2 = fCameraDZ*VectorZ, st3 = VectorZ
//st4 = fCameraFX*VectorX + fCameraFY*VectorY
//st5 = fCameraDX*VectorX + fCameraDY*VectorY
//st6 = fCameraRX*VectorX + fCameraRY*VectorY
fpu_reg14 = fpu_reg14 + fpu_reg18;
//st0 = fCameraRZ*VectorZ
//st1 = fCameraDZ*VectorZ, st2 = VectorZ
//st3 = fProjectionF
//st4 = fCameraDX*VectorX + fCameraDY*VectorY
//st5 = fCameraRX*VectorX + fCameraRY*VectorY
fpu_reg12 = fpu_reg12 + fpu_reg17;
//st0 = fCameraDZ*VectorZ, st1 = VectorZ
//st2 = fProjectionF, st3 = fCameraRX*VectorX + fCameraRY*VectorY
//st4 = fProjectionD
fpu_reg13 = fpu_reg13 + fpu_reg16;
//st0 = VectorZ
//st1 = fProjectionF, st2 = fProjectionD
//st3 = fProjectionR
//ffree st(0)
//fincstp
eax = (eax & 0xffff0000) | ((fpu_reg14 < fNum_1)?0x100:0); // tasm 3.0 bug (= fstsw)
eax = eax & ( 0x0100 ); // sahf
// ClippingFlag
// Bit0 = xmin, Bit1 = xmax
// Bit2 = ymin, Bit3 = ymax
// Bit8 = zmin, (Bit9 = zmax)
// zmin, zmax, ymin, ymax, xmin, xmax
fpu_reg15 = 1.0f;
fpu_reg14 = fpu_reg15 / fpu_reg14;
//st0 = 1/fProjectionF, st1 = fProjectionR
//st2 = fProjectionD
ecx = eax;
fZNewRZP = fpu_reg14;
fpu_reg12 = fpu_reg12 * fpu_reg14;
fpu_reg13 = fpu_reg13 * fpu_reg14;
{ float tmp = fpu_reg13; fpu_reg13 = fpu_reg12; fpu_reg12 = tmp; }
//st0 = fProjectionR/fProjectionF
//st1 = fProjectionD/fProjectionF
fpu_reg13 = fpu_reg13 + fNum_1;
{ float tmp = fpu_reg13; fpu_reg13 = fpu_reg12; fpu_reg12 = tmp; }
fpu_reg13 = fpu_reg13 + fNum_1;
{ float tmp = fpu_reg13; fpu_reg13 = fpu_reg12; fpu_reg12 = tmp; }
fpu_reg13 = fpu_reg13 * fXmaxDiv2;
{ float tmp = fpu_reg13; fpu_reg13 = fpu_reg12; fpu_reg12 = tmp; }
fpu_reg13 = fpu_reg13 * fYmaxDiv2;
{ float tmp = fpu_reg13; fpu_reg13 = fpu_reg12; fpu_reg12 = tmp; }
dwScreenX = (int32_t)roundf(fpu_reg13);
dwScreenY = (int32_t)roundf(fpu_reg12);
#if 0
// fadd fXmaxDiv2
// fxch
// fadd fYmaxDiv2
// fxch
//
// fistp dwScreenX
// fistp dwScreenY
#endif
eax = dwScreenX;
ebx = dwScreenY;
if (( (int32_t)eax ) >= ( (int32_t)dwClipXmin )) goto MV2ParticleProjectionASM_NotUnderXmin;
ecx = ecx | ( 1 );
MV2ParticleProjectionASM_NotUnderXmin:
if (( (int32_t)eax ) < ( (int32_t)dwClipXmax )) goto MV2ParticleProjectionASM_NotAboveXmax; // jng
ecx = ecx | ( 2 );
MV2ParticleProjectionASM_NotAboveXmax:
if (( (int32_t)ebx ) >= ( (int32_t)dwClipYmin )) goto MV2ParticleProjectionASM_NotUnderYmin;
ecx = ecx | ( 4 );
MV2ParticleProjectionASM_NotUnderYmin:
if (( (int32_t)ebx ) < ( (int32_t)dwClipYmax )) goto MV2ParticleProjectionASM_NotAboveYmax; // jng
ecx = ecx | ( 8 );
MV2ParticleProjectionASM_NotAboveYmax:
if ( (( (int32_t)ecx ) - ( 0 )) != 0) goto MV2ParticleProjectionASM_DontDrawParticle;
//pushad
stack_var00 = eax;
stack_var01 = ebx;
stack_var02 = edx;
eax = ( ((CMV2Particle *)esi)->CMV2Particle__m_iDuration );
eax = eax & ( 0x0ff );
eax = ( pcSparklesLookup[eax] );
ebx = eax;
edx = eax;
eax = eax & ( 0x0ff0000 );
ebx = ebx & ( 0x000ff00 );
edx = ( 0x00000ff );
eax = eax >> ( 16 );
ebx = ebx >> ( 8 );
dwTempR = eax;
dwTempG = ebx;
dwTempB = edx;
fpu_reg12 = ( (int32_t)dwTempR );
fpu_reg13 = ( (int32_t)dwTempG );
fpu_reg14 = ( (int32_t)dwTempB );
{ float tmp = fpu_reg14; fpu_reg14 = fpu_reg13; fpu_reg13 = tmp; }
fGCol = fpu_reg14;
fBCol = fpu_reg13;
fRCol = fpu_reg12;
//popad
edx = stack_var02;
ebx = stack_var01;
eax = stack_var00;
ecx = dwXmax;
ebx = ( (int32_t)ebx ) * ( (int32_t)ecx );
ebx = ebx + eax;
fpu_reg12 = 1.0f;
fpu_reg13 = fZNewRZP;
fpu_reg12 = fpu_reg12 - fpu_reg13;
//st0 = 1/ZNew, st1 = 1 - 1/ZNew
for (iParticleY = 0; iParticleY < iParticleHeight; iParticleY++)
{
for (iParticleX = 0; iParticleX < iParticleWidth; iParticleX++)
{
eax = ( ((uint32_t *)(edi))[ebx + iParticleY * dwXmax + iParticleX] );
ecx = eax;
edx = eax;
eax = eax & ( 0x0ff0000 );
ecx = ecx & ( 0x000ff00 );
edx = edx & ( 0x00000ff );
eax = eax >> ( 16 );
ecx = ecx >> ( 8 );
dwRDest = eax;
dwGDest = ecx;
dwBDest = edx;
fpu_reg14 = ( (int32_t)dwRDest );
fpu_reg14 = fpu_reg14 * fpu_reg12;
fpu_reg15 = fRCol;
fpu_reg15 = fpu_reg15 * fpu_reg13;
fpu_reg14 = fpu_reg14 + fpu_reg15;
dwRDest = (int32_t)roundf(fpu_reg14);
fpu_reg14 = ( (int32_t)dwGDest );
fpu_reg14 = fpu_reg14 * fpu_reg12;
fpu_reg15 = fGCol;
fpu_reg15 = fpu_reg15 * fpu_reg13;
fpu_reg14 = fpu_reg14 + fpu_reg15;
dwGDest = (int32_t)roundf(fpu_reg14);
fpu_reg14 = ( (int32_t)dwBDest );
fpu_reg14 = fpu_reg14 * fpu_reg12;
fpu_reg15 = fBCol;
fpu_reg15 = fpu_reg15 * fpu_reg13;
fpu_reg14 = fpu_reg14 + fpu_reg15;
dwBDest = (int32_t)roundf(fpu_reg14);
//ffree st(1)
//ffree st(0)
eax = dwRDest;
ecx = dwGDest;
edx = dwBDest;
eax = eax << ( 16 );
ecx = ecx << ( 8 );
eax = eax | edx;
eax = eax | ecx;
((uint32_t *)(edi))[ebx + iParticleY * dwXmax + iParticleX] = eax;
}
}
MV2ParticleProjectionASM_DontDrawParticle:
esi = esi + ( CMV2Particle__Size );
ebp = ( (int32_t)ebp ) - 1;
if (( (int32_t)ebp ) != 0) goto MV2ParticleProjectionASM_ParticleLoop;
#if !defined(NO_FPU_CONTROL)
#if defined(__i386__)
{
_FPU_SETCW(oldcw);
}
#elif defined(__arm__)
#else
todo
#endif
#endif
#if 0
// fldcw oldfpucw
#endif
return;
}
extern "C" void MV2ParticleDoBernoulliASM(uint32_t pParticles, uint32_t _dwNumParticles, uint32_t pSinTab, uint32_t dwCurTime, float fAX, float fAY1, float fAY2, float fAZ, float fFX, float fFY1, float fFY2, float fFZ, float fSDX, float fSDY1, float fSDY2, float fSDZ, float fDY1, float fDY2) {
realnum fpu_reg10, fpu_reg11, fpu_reg12, fpu_reg13, fpu_reg14, fpu_reg15, fpu_reg16, fpu_reg17;
float feax, febx, fedx;
uint32_t eax, /*edx,*/ ecx, edi, ebx, esi;
esi = pParticles;
ecx = _dwNumParticles;
edi = pSinTab;
MV2ParticleDoBernoulliASM_ParticleLoop:
if ( (( (int32_t)(((CMV2Particle *)esi)->CMV2Particle__m_iDuration) ) - ( 0 )) != 0) goto MV2ParticleDoBernoulliASM_DurationOk;
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX = ((CMV2Particle *)esi)->CMV2Particle__m_StartPos__m_fX;
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY = ((CMV2Particle *)esi)->CMV2Particle__m_StartPos__m_fY;
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fZ = ((CMV2Particle *)esi)->CMV2Particle__m_StartPos__m_fZ;
eax = ( 12000 );
((CMV2Particle *)esi)->CMV2Particle__m_iDuration = eax;
MV2ParticleDoBernoulliASM_DurationOk:
feax = ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX );
febx = ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY );
fedx = ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fZ );
fpu_reg10 = ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY );
fpu_reg10 = fpu_reg10 * fFX;
fpu_reg11 = ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fZ );
fpu_reg11 = fpu_reg11 * fFY1;
fpu_reg12 = ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX );
fpu_reg12 = fpu_reg12 * fFY2;
fpu_reg13 = ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX );
fpu_reg13 = fpu_reg13 * fFZ;
{ realnum tmp = fpu_reg10; fpu_reg10 = fpu_reg13; fpu_reg13 = tmp; }
//st0=ParticleY*fFreqX, st1=ParticleX*fFreqY2
//st2=ParticleZ*fFreqY1, st3=ParticleX*fFreqZ
fpu_reg14 = ( (int32_t)dwCurTime );
fpu_reg15 = fpu_reg14;
fpu_reg15 = fpu_reg15 * fSDX;
fpu_reg16 = fpu_reg14;
fpu_reg16 = fpu_reg16 * fSDY1;
fpu_reg17 = fpu_reg14;
fpu_reg17 = fpu_reg17 * fSDY2;
{ realnum tmp = fpu_reg14; fpu_reg14 = fpu_reg17; fpu_reg17 = tmp; }
fpu_reg17 = fpu_reg17 * fSDZ;
//st0=CurTime*fSinZ, st1=CurTime*fSinY2
//st2=CurTime*fSinY1, st3=CurTime*fSinX
//st4=ParticleY*fFreqX, st5=ParticleX*fFreqY2
//st6=ParticleZ*fFreqY1, st7=ParticleX*fFreqZ
fpu_reg10 = fpu_reg10 + fpu_reg17;
//st0=CurTime*fSinY2
//st1=CurTime*fSinY1, st2=CurTime*fSinX
//st3=ParticleY*fFreqX, st4=ParticleX*fFreqY2
//st5=ParticleZ*fFreqY1, st6=fAngleZ
fpu_reg12 = fpu_reg12 + fpu_reg16;
//st0=CurTime*fSinY1, st1=CurTime*fSinX
//st2=ParticleY*fFreqX, st3=fAngleY2
//st4=ParticleZ*fFreqY1, st5=fAngleZ
fpu_reg11 = fpu_reg11 + fpu_reg15;
//st0=CurTime*fSinX
//st1=ParticleY*fFreqX, st2=fAngleY2
//st3=fAngleY1, st4=fAngleZ
fpu_reg13 = fpu_reg13 + fpu_reg14;
//st0=fAngleX, st1=fAngleY2
//st2=fAngleY1, st3=fAngleZ
fpu_reg14 = fAngleTOSinTabfactor;
fpu_reg13 = fpu_reg13 * fpu_reg14;
fpu_reg12 = fpu_reg12 * fpu_reg14;
fpu_reg11 = fpu_reg11 * fpu_reg14;
fpu_reg10 = fpu_reg10 * fpu_reg14;
//ffree st(0)
//fincstp
dwAngleX = (int32_t)round(fpu_reg13);
dwAngleY2 = (int32_t)round(fpu_reg12);
dwAngleY1 = (int32_t)round(fpu_reg11);
dwAngleZ = (int32_t)round(fpu_reg10);
((CMV2Particle *)esi)->CMV2Particle__m_LastPos__m_fX = feax;
((CMV2Particle *)esi)->CMV2Particle__m_LastPos__m_fY = febx;
((CMV2Particle *)esi)->CMV2Particle__m_LastPos__m_fZ = fedx;
eax = dwAngleX;
ebx = dwAngleY2;
eax = eax & ( 0x0ff );
ebx = ebx & ( 0x0ff );
fpu_reg10 = ( ((float *)(edi))[eax] );
fpu_reg10 = fpu_reg10 * fAX;
fpu_reg11 = ( ((float *)(edi))[ebx] );
fpu_reg11 = fpu_reg11 + fDY2;
fpu_reg11 = fpu_reg11 * fAY2;
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg10; fpu_reg10 = tmp; }
fpu_reg11 = fpu_reg11 + ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX );
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg10; fpu_reg10 = tmp; }
fpu_reg11 = fpu_reg11 + ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY );
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg10; fpu_reg10 = tmp; }
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX = fpu_reg11;
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY = fpu_reg10;
eax = dwAngleY1;
ebx = dwAngleZ;
eax = eax & ( 0x0ff );
ebx = ebx & ( 0x0ff );
fpu_reg10 = ( ((float *)(edi))[eax] );
fpu_reg10 = fpu_reg10 + fDY1;
fpu_reg10 = fpu_reg10 * fAY1;
fpu_reg11 = ( ((float *)(edi))[ebx] );
fpu_reg11 = fpu_reg11 * fAZ;
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg10; fpu_reg10 = tmp; }
fpu_reg11 = fpu_reg11 + ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY );
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg10; fpu_reg10 = tmp; }
fpu_reg11 = fpu_reg11 + ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fZ );
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg10; fpu_reg10 = tmp; }
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY = fpu_reg11;
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fZ = fpu_reg10;
((CMV2Particle *)esi)->CMV2Particle__m_iDuration = ( ((CMV2Particle *)esi)->CMV2Particle__m_iDuration ) - 1;
esi = esi + ( CMV2Particle__Size );
ecx = ( (int32_t)ecx ) - 1;
if (( (int32_t)ecx ) != 0) goto MV2ParticleDoBernoulliASM_ParticleLoop;
return;
}
extern "C" void MV2ParticleDoBernoulliMorphToObjectASM(uint32_t pParticles, uint32_t _dwNumParticles, uint32_t pSinTab, uint32_t dwCurTime, float fAX, float fAY1, float fAY2, float fAZ, float fFX, float fFY1, float fFY2, float fFZ, float fSDX, float fSDY1, float fSDY2, float fSDZ, float fDY1, float fDY2, float fMFactor) {
realnum fpu_reg10, fpu_reg11, fpu_reg12, fpu_reg13, fpu_reg14, fpu_reg15, fpu_reg16, fpu_reg17;
uint32_t eax, /*edx,*/ ecx, edi, ebx, esi;
esi = pParticles;
ecx = _dwNumParticles;
edi = pSinTab;
MV2ParticleDoBernoulliMorphToObjectASM_ParticleLoop:
((CMV2Particle *)esi)->CMV2Particle__m_LastPos__m_fX = ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX;
((CMV2Particle *)esi)->CMV2Particle__m_LastPos__m_fY = ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY;
((CMV2Particle *)esi)->CMV2Particle__m_LastPos__m_fZ = ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fZ;
if ( (( (int32_t)(((CMV2Particle *)esi)->CMV2Particle__m_iDuration) ) - ( 0 )) != 0) goto MV2ParticleDoBernoulliMorphToObjectASM_DurationOk;
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX = ((CMV2Particle *)esi)->CMV2Particle__m_StartPos__m_fX;
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY = ((CMV2Particle *)esi)->CMV2Particle__m_StartPos__m_fY;
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fZ = ((CMV2Particle *)esi)->CMV2Particle__m_StartPos__m_fZ;
eax = ( 12000 );
((CMV2Particle *)esi)->CMV2Particle__m_iDuration = eax;
MV2ParticleDoBernoulliMorphToObjectASM_DurationOk:
fpu_reg10 = ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY );
fpu_reg10 = fpu_reg10 * fFX;
fpu_reg11 = ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fZ );
fpu_reg11 = fpu_reg11 * fFY1;
fpu_reg12 = ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX );
fpu_reg12 = fpu_reg12 * fFY2;
fpu_reg13 = ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX );
fpu_reg13 = fpu_reg13 * fFZ;
{ realnum tmp = fpu_reg10; fpu_reg10 = fpu_reg13; fpu_reg13 = tmp; }
//st0=ParticleY*fFreqX, st1=ParticleX*fFreqY2
//st2=ParticleZ*fFreqY1, st3=ParticleX*fFreqZ
fpu_reg14 = ( (int32_t)dwCurTime );
fpu_reg15 = fpu_reg14;
fpu_reg15 = fpu_reg15 * fSDX;
fpu_reg16 = fpu_reg14;
fpu_reg16 = fpu_reg16 * fSDY1;
fpu_reg17 = fpu_reg14;
fpu_reg17 = fpu_reg17 * fSDY2;
{ realnum tmp = fpu_reg14; fpu_reg14 = fpu_reg17; fpu_reg17 = tmp; }
fpu_reg17 = fpu_reg17 * fSDZ;
//st0=CurTime*fSinZ, st1=CurTime*fSinY2
//st2=CurTime*fSinY1, st3=CurTime*fSinX
//st4=ParticleY*fFreqX, st5=ParticleX*fFreqY2
//st6=ParticleZ*fFreqY1, st7=ParticleX*fFreqZ
fpu_reg10 = fpu_reg10 + fpu_reg17;
//st0=CurTime*fSinY2
//st1=CurTime*fSinY1, st2=CurTime*fSinX
//st3=ParticleY*fFreqX, st4=ParticleX*fFreqY2
//st5=ParticleZ*fFreqY1, st6=fAngleZ
fpu_reg12 = fpu_reg12 + fpu_reg16;
//st0=CurTime*fSinY1, st1=CurTime*fSinX
//st2=ParticleY*fFreqX, st3=fAngleY2
//st4=ParticleZ*fFreqY1, st5=fAngleZ
fpu_reg11 = fpu_reg11 + fpu_reg15;
//st0=CurTime*fSinX
//st1=ParticleY*fFreqX, st2=fAngleY2
//st3=fAngleY1, st4=fAngleZ
fpu_reg13 = fpu_reg13 + fpu_reg14;
//st0=fAngleX, st1=fAngleY2
//st2=fAngleY1, st3=fAngleZ
fpu_reg14 = fAngleTOSinTabfactor;
fpu_reg13 = fpu_reg13 * fpu_reg14;
fpu_reg12 = fpu_reg12 * fpu_reg14;
fpu_reg11 = fpu_reg11 * fpu_reg14;
fpu_reg10 = fpu_reg10 * fpu_reg14;
//ffree st(0)
//fincstp
dwAngleX = (int32_t)round(fpu_reg13);
dwAngleY2 = (int32_t)round(fpu_reg12);
dwAngleY1 = (int32_t)round(fpu_reg11);
dwAngleZ = (int32_t)round(fpu_reg10);
eax = dwAngleX;
ebx = dwAngleY2;
eax = eax & ( 0x0ff );
ebx = ebx & ( 0x0ff );
fpu_reg10 = ( ((float *)(edi))[eax] );
fpu_reg10 = fpu_reg10 * fAX;
fpu_reg11 = ( ((float *)(edi))[ebx] );
fpu_reg11 = fpu_reg11 + fDY2;
fpu_reg11 = fpu_reg11 * fAY2;
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg10; fpu_reg10 = tmp; }
fpu_reg11 = fpu_reg11 + ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX );
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg10; fpu_reg10 = tmp; }
fpu_reg11 = fpu_reg11 + ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY );
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg10; fpu_reg10 = tmp; }
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX = fpu_reg11;
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY = fpu_reg10;
eax = dwAngleY1;
ebx = dwAngleZ;
eax = eax & ( 0x0ff );
ebx = ebx & ( 0x0ff );
fpu_reg10 = ( ((float *)(edi))[eax] );
fpu_reg10 = fpu_reg10 + fDY1;
fpu_reg10 = fpu_reg10 * fAY1;
fpu_reg11 = ( ((float *)(edi))[ebx] );
fpu_reg11 = fpu_reg11 * fAZ;
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg10; fpu_reg10 = tmp; }
fpu_reg11 = fpu_reg11 + ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY );
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg10; fpu_reg10 = tmp; }
fpu_reg11 = fpu_reg11 + ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fZ );
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg10; fpu_reg10 = tmp; }
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY = fpu_reg11;
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fZ = fpu_reg10;
fpu_reg10 = fMFactor;
fpu_reg11 = ( ((CMV2Particle *)esi)->CMV2Particle__m_EndPos__m_fX );
fpu_reg11 = fpu_reg11 - ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX );
fpu_reg12 = ( ((CMV2Particle *)esi)->CMV2Particle__m_EndPos__m_fY );
fpu_reg12 = fpu_reg12 - ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY );
fpu_reg13 = ( ((CMV2Particle *)esi)->CMV2Particle__m_EndPos__m_fZ );
fpu_reg13 = fpu_reg13 - ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fZ );
//st0 = EndZ - Z, st1 = EndY - Y, st2 = EndX - X
//st3 = MFactor
fpu_reg13 = fpu_reg13 * fpu_reg10;
{ realnum tmp = fpu_reg13; fpu_reg13 = fpu_reg12; fpu_reg12 = tmp; }
fpu_reg13 = fpu_reg13 * fpu_reg10;
{ realnum tmp = fpu_reg13; fpu_reg13 = fpu_reg12; fpu_reg12 = tmp; }
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg13; fpu_reg13 = tmp; }
fpu_reg13 = fpu_reg13 * fpu_reg10;
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg13; fpu_reg13 = tmp; }
//st0 = (EndZ - Z)*MFactor, st1 = (EndY - Y)*MFactor
//st2 = (EndX - X)*MFactor, st3 = MFactor
fpu_reg13 = fpu_reg13 + ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fZ );
{ realnum tmp = fpu_reg13; fpu_reg13 = fpu_reg12; fpu_reg12 = tmp; }
fpu_reg13 = fpu_reg13 + ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY );
{ realnum tmp = fpu_reg13; fpu_reg13 = fpu_reg12; fpu_reg12 = tmp; }
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg13; fpu_reg13 = tmp; }
fpu_reg13 = fpu_reg13 + ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX );
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg13; fpu_reg13 = tmp; }
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fZ = fpu_reg13;
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY = fpu_reg12;
((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX = fpu_reg11;
((CMV2Particle *)esi)->CMV2Particle__m_iDuration = ( ((CMV2Particle *)esi)->CMV2Particle__m_iDuration ) - 1;
//fcomp
esi = esi + ( CMV2Particle__Size );
ecx = ( (int32_t)ecx ) - 1;
if (( (int32_t)ecx ) != 0) goto MV2ParticleDoBernoulliMorphToObjectASM_ParticleLoop;
return;
}
extern "C" void MV2ParticleInterpolateASM(uint32_t _pParticles, uint32_t _dwNumParticles, float _fMorphFactor) {
realnum fpu_reg10, fpu_reg11, fpu_reg12, fpu_reg13;
uint32_t ecx, esi;
esi = _pParticles;
ecx = _dwNumParticles;
fpu_reg10 = _fMorphFactor;
//st0 = MorphFactor
MV2ParticleInterpolateASM_ParticleLoop:
fpu_reg11 = ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fX );
fpu_reg11 = fpu_reg11 - ( ((CMV2Particle *)esi)->CMV2Particle__m_LastPos__m_fX );
fpu_reg12 = ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fY );
fpu_reg12 = fpu_reg12 - ( ((CMV2Particle *)esi)->CMV2Particle__m_LastPos__m_fY );
fpu_reg13 = ( ((CMV2Particle *)esi)->CMV2Particle__m_NextPos__m_fZ );
fpu_reg13 = fpu_reg13 - ( ((CMV2Particle *)esi)->CMV2Particle__m_LastPos__m_fZ );
//st0 = NPosZ - LPosZ, st1 = NPosY - LPosY
//st2 = NPosX - LPosX, st3 = MorphFactor
fpu_reg13 = fpu_reg13 * fpu_reg10;
{ realnum tmp = fpu_reg13; fpu_reg13 = fpu_reg12; fpu_reg12 = tmp; }
fpu_reg13 = fpu_reg13 * fpu_reg10;
{ realnum tmp = fpu_reg13; fpu_reg13 = fpu_reg12; fpu_reg12 = tmp; }
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg13; fpu_reg13 = tmp; }
fpu_reg13 = fpu_reg13 * fpu_reg10;
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg13; fpu_reg13 = tmp; }
fpu_reg13 = fpu_reg13 + ( ((CMV2Particle *)esi)->CMV2Particle__m_LastPos__m_fZ );
{ realnum tmp = fpu_reg13; fpu_reg13 = fpu_reg12; fpu_reg12 = tmp; }
fpu_reg13 = fpu_reg13 + ( ((CMV2Particle *)esi)->CMV2Particle__m_LastPos__m_fY );
{ realnum tmp = fpu_reg13; fpu_reg13 = fpu_reg12; fpu_reg12 = tmp; }
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg13; fpu_reg13 = tmp; }
fpu_reg13 = fpu_reg13 + ( ((CMV2Particle *)esi)->CMV2Particle__m_LastPos__m_fX );
{ realnum tmp = fpu_reg11; fpu_reg11 = fpu_reg13; fpu_reg13 = tmp; }
((CMV2Particle *)esi)->CMV2Particle__m_InterpPos__m_fZ = fpu_reg13;
((CMV2Particle *)esi)->CMV2Particle__m_InterpPos__m_fY = fpu_reg12;
((CMV2Particle *)esi)->CMV2Particle__m_InterpPos__m_fX = fpu_reg11;
esi = esi + ( CMV2Particle__Size );
ecx = ( (int32_t)ecx ) - 1;
if (( (int32_t)ecx ) != 0) goto MV2ParticleInterpolateASM_ParticleLoop;
//ffree st(0)
return;
}