-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcamera.ts
197 lines (184 loc) · 6.48 KB
/
camera.ts
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
import { int, xy, xyz, rgb, rgba } from "./util";
declare enum CameraField {
CAMERA_FIELD_TARGET_DISTANCE,
CAMERA_FIELD_FARZ,
CAMERA_FIELD_ANGLE_OF_ATTACK,
CAMERA_FIELD_FIELD_OF_VIEW,
CAMERA_FIELD_ROLL,
CAMERA_FIELD_ROTATION,
CAMERA_FIELD_ZOFFSET,
CAMERA_FIELD_NEARZ,
CAMERA_FIELD_LOCAL_PITCH,
CAMERA_FIELD_LOCAL_YAW,
CAMERA_FIELD_LOCAL_ROLL
}
class Camera {
static setPos(xy: xy): void {
SetCameraPosition(xy[0], xy[1]);
}
static setQuickPos(xy: xy): void {
SetCameraQuickPosition(xy[0], xy[1]);
}
static stop(): void {
StopCamera();
}
static resetToGame(duration?: number): void {
ResetToGameCamera(duration == undefined ? 0 : duration);
}
static pan(xy: xy, duration?: number): void {
if (duration == undefined) {
PanCameraTo(xy[0], xy[1]);
} else {
PanCameraToTimed(xy[0], xy[1], duration);
}
}
static panWithZ(xy: xy, zOffsetDest: number, duration?: number): void {
if (duration == undefined) {
PanCameraToWithZ(xy[0], xy[1], zOffsetDest);
} else {
PanCameraToTimedWithZ(xy[0], xy[1], zOffsetDest, duration)
}
}
static setCinematic(cameraModelFile: string): void {
SetCinematicCamera(cameraModelFile);
}
static setRotateMode(xy: xy, radiansToSweep: number, duration: number): void {
SetCameraRotateMode(xy[0], xy[1], radiansToSweep, duration);
}
static setTargetController(whichUnit: unit, inheritOrientation: boolean, xyoffset: xy): void {
SetCameraTargetController(whichUnit, xyoffset == undefined ? 0 : xyoffset[0], xyoffset == undefined ? 0 : xyoffset[1], inheritOrientation);
}
static setOrientController(whichUnit: unit, xyoffset?: xy): void {
SetCameraOrientController(whichUnit, xyoffset == undefined ? 0 : xyoffset[0], xyoffset == undefined ? 0 : xyoffset[1]);
}
static setTargetNoise(mag: number, velocity: number, vertOnly?: boolean): void {
if (vertOnly == undefined) {
CameraSetTargetNoise(mag, velocity);
} else {
CameraSetTargetNoiseEx(mag, velocity, vertOnly);
}
}
static setSourceNoise(mag: number, velocity: number, vertOnly?: boolean): void {
if (vertOnly == undefined) {
CameraSetSourceNoise(mag, velocity);
} else {
CameraSetSourceNoiseEx(mag, velocity, vertOnly);
}
}
static setSmoothingFactor(factor: number): void {
CameraSetSmoothingFactor(factor);
}
static minX(): number {
return GetCameraBoundMinX();
}
static minY(): number {
return GetCameraBoundMinY();
}
static minXY(): xy {
return [this.minX(), this.minY()];
}
static maxX(): number {
return GetCameraBoundMaxX();
}
static maxY(): number {
return GetCameraBoundMaxY();
}
static maxXY(): xy {
return [this.maxX(), this.maxY()];
}
static setBounds(xy1: xy, xy2: xy, xy3: xy, xy4: xy): void {
SetCameraBounds(xy1[0], xy1[1], xy2[0], xy2[1], xy3[0], xy3[1], xy4[0], xy4[1]);
}
static field(whichField: camerafield): number {
return GetCameraField(whichField);
}
static setField(whichField: camerafield, value: number, duration?: number): void {
SetCameraField(whichField, value, duration == undefined ? 0 : duration);
}
static addField(whichField: camerafield, offset: number, duration: number): void {
AdjustCameraField(whichField, offset, duration == undefined ? 0 : duration);
}
static targetPosX(): number {
return GetCameraTargetPositionX();
}
static targetPosY(): number {
return GetCameraTargetPositionY();
}
static targetPosXY(): xy {
return [this.targetPosX(), this.targetPosY()];
}
static targetPosZ(): number {
return GetCameraTargetPositionZ();
}
static targetPosXYZ(): xyz {
return [this.targetPosX(), this.targetPosY(), this.targetPosZ()];
}
static eyePosX(): number {
return GetCameraEyePositionX();
}
static eyePosY(): number {
return GetCameraEyePositionY();
}
static eyePosXY(): xy {
return [this.eyePosX(), this.eyePosY()];
}
static eyePosZ(): number {
return GetCameraEyePositionZ();
}
static eyePosXYZ(): xyz {
return [this.eyePosX(), this.eyePosY(), this.eyePosZ()];
}
static create(): Camera {
return new Camera(CreateCameraSetup());
}
constructor(cam: camerasetup) {
this.cam = cam;
}
cam: camerasetup;
field(whichField: camerafield): number {
return CameraSetupGetField(this.cam, whichField);
}
setField(whichField: camerafield, value: number, duration?: number): void {
if (duration == undefined) {
CameraSetupSetField(this.cam, whichField, value, 0);
} else {
CameraSetupSetField(this.cam, whichField, value, duration);
}
}
destX(): number {
return CameraSetupGetDestPositionX(this.cam);
}
destY(): number {
return CameraSetupGetDestPositionY(this.cam);
}
destXY(): xy {
return [this.destX(), this.destY()];
}
setDestXY(xy: xy, duration?: number): void {
CameraSetupSetDestPosition(this.cam, xy[0], xy[1], duration == undefined ? 0 : duration);
}
static apply(whichSetup: camerasetup, doPan: boolean, panTimed: boolean): void {
CameraSetupApply(whichSetup, doPan, panTimed);
}
static applyWithZ(whichSetup: camerasetup, zDestOffset: number): void {
CameraSetupApplyWithZ(whichSetup, zDestOffset);
}
static applyForceDuration(whichSetup: camerasetup, doPan: boolean, forceDuration: number): void {
CameraSetupApplyForceDuration(whichSetup, doPan, forceDuration);
}
static applyForceDurationWithZ(whichSetup: camerasetup, zDestOffset: number, forceDuration: number): void {
CameraSetupApplyForceDurationWithZ(whichSetup, zDestOffset, forceDuration);
}
static applyForceDurationSmooth(whichSetup: camerasetup, doPan: boolean, forcedDuration: number, easeInDuration: number, easeOutDuration: number, smoothFactor: number): void {
BlzCameraSetupApplyForceDurationSmooth(whichSetup, doPan, forcedDuration, easeInDuration, easeOutDuration, smoothFactor);
}
}
declare enum CameraMargin {
LEFT,
RIGHT,
TOP,
BOTTOM
}
function cameraMargin(whichMargin: CameraMargin): number {
return GetCameraMargin(whichMargin);
}