annotate Platforms/Wasm/wasm-viewport.ts @ 327:8716176ff7f0 am-2

added support for arrow keys
author am@osimis.io
date Tue, 16 Oct 2018 15:25:21 +0200
parents 97f16214dc5e
children 8bf717c4e497
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
230
7d2631320615 wasm-application.js is now in ts
am@osimis.io
parents: 229
diff changeset
1 var isPendingRedraw = false;
229
b0ba3b38a23c ScheduleRedraw can handle multiple viewports
am@osimis.io
parents: 228
diff changeset
2
230
7d2631320615 wasm-application.js is now in ts
am@osimis.io
parents: 229
diff changeset
3 function ScheduleWebViewportRedraw(cppViewportHandle: any) : void
7d2631320615 wasm-application.js is now in ts
am@osimis.io
parents: 229
diff changeset
4 {
7d2631320615 wasm-application.js is now in ts
am@osimis.io
parents: 229
diff changeset
5 if (!isPendingRedraw) {
7d2631320615 wasm-application.js is now in ts
am@osimis.io
parents: 229
diff changeset
6 isPendingRedraw = true;
7d2631320615 wasm-application.js is now in ts
am@osimis.io
parents: 229
diff changeset
7 console.log('Scheduling a refresh of the viewport, as its content changed');
7d2631320615 wasm-application.js is now in ts
am@osimis.io
parents: 229
diff changeset
8 window.requestAnimationFrame(function() {
7d2631320615 wasm-application.js is now in ts
am@osimis.io
parents: 229
diff changeset
9 isPendingRedraw = false;
7d2631320615 wasm-application.js is now in ts
am@osimis.io
parents: 229
diff changeset
10 Stone.WasmViewport.GetFromCppViewport(cppViewportHandle).Redraw();
7d2631320615 wasm-application.js is now in ts
am@osimis.io
parents: 229
diff changeset
11 });
229
b0ba3b38a23c ScheduleRedraw can handle multiple viewports
am@osimis.io
parents: 228
diff changeset
12 }
230
7d2631320615 wasm-application.js is now in ts
am@osimis.io
parents: 229
diff changeset
13 }
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
14
231
5027cb2feb51 viewport is now part of the Application itself and not global anymore
am@osimis.io
parents: 230
diff changeset
15 declare function UTF8ToString(any): string;
5027cb2feb51 viewport is now part of the Application itself and not global anymore
am@osimis.io
parents: 230
diff changeset
16
5027cb2feb51 viewport is now part of the Application itself and not global anymore
am@osimis.io
parents: 230
diff changeset
17 function CreateWasmViewport(htmlCanvasId: string) : any {
5027cb2feb51 viewport is now part of the Application itself and not global anymore
am@osimis.io
parents: 230
diff changeset
18 var cppViewportHandle = CreateCppViewport();
5027cb2feb51 viewport is now part of the Application itself and not global anymore
am@osimis.io
parents: 230
diff changeset
19 var canvasId = UTF8ToString(htmlCanvasId);
5027cb2feb51 viewport is now part of the Application itself and not global anymore
am@osimis.io
parents: 230
diff changeset
20 var webViewport = new Stone.WasmViewport(StoneFrameworkModule, canvasId, cppViewportHandle); // viewports are stored in a static map in WasmViewport -> won't be deleted
5027cb2feb51 viewport is now part of the Application itself and not global anymore
am@osimis.io
parents: 230
diff changeset
21 webViewport.Initialize();
314
97f16214dc5e cleanup
am@osimis.io
parents: 313
diff changeset
22
231
5027cb2feb51 viewport is now part of the Application itself and not global anymore
am@osimis.io
parents: 230
diff changeset
23 return cppViewportHandle;
5027cb2feb51 viewport is now part of the Application itself and not global anymore
am@osimis.io
parents: 230
diff changeset
24 }
5027cb2feb51 viewport is now part of the Application itself and not global anymore
am@osimis.io
parents: 230
diff changeset
25
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
26 module Stone {
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
27
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
28 // export declare type InitializationCallback = () => void;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
29
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
30 // export declare var StoneFrameworkModule : any;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
31
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
32 //const ASSETS_FOLDER : string = "assets/lib";
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
33 //const WASM_FILENAME : string = "orthanc-framework";
229
b0ba3b38a23c ScheduleRedraw can handle multiple viewports
am@osimis.io
parents: 228
diff changeset
34
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
35 export class WasmViewport {
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
36
313
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
37 private static viewportsMapByCppHandle_ : Map<number, WasmViewport> = new Map<number, WasmViewport>(); // key = the C++ handle
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
38 private static viewportsMapByCanvasId_ : Map<string, WasmViewport> = new Map<string, WasmViewport>(); // key = the canvasId
229
b0ba3b38a23c ScheduleRedraw can handle multiple viewports
am@osimis.io
parents: 228
diff changeset
39
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
40 private module_ : any;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
41 private canvasId_ : string;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
42 private htmlCanvas_ : HTMLCanvasElement;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
43 private context_ : CanvasRenderingContext2D;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
44 private imageData_ : any = null;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
45 private renderingBuffer_ : any = null;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
46 private touchZoom_ : any = false;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
47 private touchTranslation_ : any = false;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
48
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
49 private ViewportSetSize : Function;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
50 private ViewportRender : Function;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
51 private ViewportMouseDown : Function;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
52 private ViewportMouseMove : Function;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
53 private ViewportMouseUp : Function;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
54 private ViewportMouseEnter : Function;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
55 private ViewportMouseLeave : Function;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
56 private ViewportMouseWheel : Function;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
57 private ViewportKeyPressed : Function;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
58
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
59 private pimpl_ : any; // Private pointer to the underlying WebAssembly C++ object
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
60
231
5027cb2feb51 viewport is now part of the Application itself and not global anymore
am@osimis.io
parents: 230
diff changeset
61 public constructor(module: any, canvasId: string, cppViewport: any) {
5027cb2feb51 viewport is now part of the Application itself and not global anymore
am@osimis.io
parents: 230
diff changeset
62
5027cb2feb51 viewport is now part of the Application itself and not global anymore
am@osimis.io
parents: 230
diff changeset
63 this.pimpl_ = cppViewport;
313
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
64 WasmViewport.viewportsMapByCppHandle_[this.pimpl_] = this;
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
65 WasmViewport.viewportsMapByCanvasId_[canvasId] = this;
231
5027cb2feb51 viewport is now part of the Application itself and not global anymore
am@osimis.io
parents: 230
diff changeset
66
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
67 this.module_ = module;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
68 this.canvasId_ = canvasId;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
69 this.htmlCanvas_ = document.getElementById(this.canvasId_) as HTMLCanvasElement;
244
313903066093 cleanup
am@osimis.io
parents: 236
diff changeset
70 if (this.htmlCanvas_ == null) {
313903066093 cleanup
am@osimis.io
parents: 236
diff changeset
71 console.log("Can not create WasmViewport, did not find the canvas whose id is '", this.canvasId_, "'");
313903066093 cleanup
am@osimis.io
parents: 236
diff changeset
72 }
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
73 this.context_ = this.htmlCanvas_.getContext('2d');
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
74
234
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
75 this.ViewportSetSize = this.module_.cwrap('ViewportSetSize', null, [ 'number', 'number', 'number' ]);
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
76 this.ViewportRender = this.module_.cwrap('ViewportRender', null, [ 'number', 'number', 'number', 'number' ]);
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
77 this.ViewportMouseDown = this.module_.cwrap('ViewportMouseDown', null, [ 'number', 'number', 'number', 'number', 'number' ]);
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
78 this.ViewportMouseMove = this.module_.cwrap('ViewportMouseMove', null, [ 'number', 'number', 'number' ]);
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
79 this.ViewportMouseUp = this.module_.cwrap('ViewportMouseUp', null, [ 'number' ]);
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
80 this.ViewportMouseEnter = this.module_.cwrap('ViewportMouseEnter', null, [ 'number' ]);
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
81 this.ViewportMouseLeave = this.module_.cwrap('ViewportMouseLeave', null, [ 'number' ]);
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
82 this.ViewportMouseWheel = this.module_.cwrap('ViewportMouseWheel', null, [ 'number', 'number', 'number', 'number', 'number' ]);
327
8716176ff7f0 added support for arrow keys
am@osimis.io
parents: 314
diff changeset
83 this.ViewportKeyPressed = this.module_.cwrap('ViewportKeyPressed', null, [ 'number', 'number', 'string', 'number', 'number' ]);
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
84 }
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
85
234
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
86 public GetCppViewport() : number {
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
87 return this.pimpl_;
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
88 }
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
89
234
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
90 public static GetFromCppViewport(cppViewportHandle: number) : WasmViewport {
313
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
91 if (WasmViewport.viewportsMapByCppHandle_[cppViewportHandle] !== undefined) {
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
92 return WasmViewport.viewportsMapByCppHandle_[cppViewportHandle];
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
93 }
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
94 console.log("WasmViewport not found !");
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
95 return undefined;
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
96 }
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
97
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
98 public static GetFromCanvasId(canvasId: string) : WasmViewport {
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
99 if (WasmViewport.viewportsMapByCanvasId_[canvasId] !== undefined) {
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
100 return WasmViewport.viewportsMapByCanvasId_[canvasId];
229
b0ba3b38a23c ScheduleRedraw can handle multiple viewports
am@osimis.io
parents: 228
diff changeset
101 }
b0ba3b38a23c ScheduleRedraw can handle multiple viewports
am@osimis.io
parents: 228
diff changeset
102 console.log("WasmViewport not found !");
b0ba3b38a23c ScheduleRedraw can handle multiple viewports
am@osimis.io
parents: 228
diff changeset
103 return undefined;
b0ba3b38a23c ScheduleRedraw can handle multiple viewports
am@osimis.io
parents: 228
diff changeset
104 }
b0ba3b38a23c ScheduleRedraw can handle multiple viewports
am@osimis.io
parents: 228
diff changeset
105
314
97f16214dc5e cleanup
am@osimis.io
parents: 313
diff changeset
106 public static ResizeAll() {
97f16214dc5e cleanup
am@osimis.io
parents: 313
diff changeset
107 for (let canvasId in WasmViewport.viewportsMapByCanvasId_) {
97f16214dc5e cleanup
am@osimis.io
parents: 313
diff changeset
108 WasmViewport.viewportsMapByCanvasId_[canvasId].Resize();
97f16214dc5e cleanup
am@osimis.io
parents: 313
diff changeset
109 }
97f16214dc5e cleanup
am@osimis.io
parents: 313
diff changeset
110 }
97f16214dc5e cleanup
am@osimis.io
parents: 313
diff changeset
111
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
112 public Redraw() {
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
113 if (this.imageData_ === null ||
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
114 this.renderingBuffer_ === null ||
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
115 this.ViewportRender(this.pimpl_,
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
116 this.imageData_.width,
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
117 this.imageData_.height,
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
118 this.renderingBuffer_) == 0) {
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
119 console.log('The rendering has failed');
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
120 } else {
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
121 // Create an accessor to the rendering buffer (i.e. create a
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
122 // "window" above the heap of the WASM module), then copy it to
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
123 // the ImageData object
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
124 this.imageData_.data.set(new Uint8ClampedArray(
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
125 this.module_.buffer,
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
126 this.renderingBuffer_,
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
127 this.imageData_.width * this.imageData_.height * 4));
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
128
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
129 this.context_.putImageData(this.imageData_, 0, 0);
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
130 }
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
131 }
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
132
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
133 public Resize() {
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
134 if (this.imageData_ != null &&
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
135 (this.imageData_.width != window.innerWidth ||
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
136 this.imageData_.height != window.innerHeight)) {
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
137 this.imageData_ = null;
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
138 }
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
139
234
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
140 // width/height can be defined in percent of window width/height through html attributes like data-width-ratio="50" and data-height-ratio="20"
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
141 var widthRatio = Number(this.htmlCanvas_.dataset["widthRatio"]) || 100;
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
142 var heightRatio = Number(this.htmlCanvas_.dataset["heightRatio"]) || 100;
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
143
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
144 this.htmlCanvas_.width = window.innerWidth * (widthRatio / 100);
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
145 this.htmlCanvas_.height = window.innerHeight * (heightRatio / 100);
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
146
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
147 console.log("resizing WasmViewport: ", this.htmlCanvas_.width, "x", this.htmlCanvas_.height);
9afb50d1ac14 configure WasmViewport size relative to window size through html attributes
am@osimis.io
parents: 231
diff changeset
148
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
149 if (this.imageData_ === null) {
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
150 this.imageData_ = this.context_.getImageData(0, 0, this.htmlCanvas_.width, this.htmlCanvas_.height);
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
151 this.ViewportSetSize(this.pimpl_, this.htmlCanvas_.width, this.htmlCanvas_.height);
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
152
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
153 if (this.renderingBuffer_ != null) {
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
154 this.module_._free(this.renderingBuffer_);
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
155 }
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
156
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
157 this.renderingBuffer_ = this.module_._malloc(this.imageData_.width * this.imageData_.height * 4);
313
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
158 } else {
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 244
diff changeset
159 this.ViewportSetSize(this.pimpl_, this.htmlCanvas_.width, this.htmlCanvas_.height);
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
160 }
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
161
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
162 this.Redraw();
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
163 }
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
164
231
5027cb2feb51 viewport is now part of the Application itself and not global anymore
am@osimis.io
parents: 230
diff changeset
165 public Initialize() {
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
166
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
167 // Force the rendering of the viewport for the first time
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
168 this.Resize();
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
169
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
170 var that : WasmViewport = this;
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
171 // Register an event listener to call the Resize() function
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
172 // each time the window is resized.
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
173 window.addEventListener('resize', function(event) {
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
174 that.Resize();
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
175 }, false);
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
176
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
177 this.htmlCanvas_.addEventListener('contextmenu', function(event) {
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
178 // Prevent right click on the canvas
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
179 event.preventDefault();
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
180 }, false);
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
181
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
182 this.htmlCanvas_.addEventListener('mouseleave', function(event) {
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
183 that.ViewportMouseLeave(that.pimpl_);
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
184 });
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
185
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
186 this.htmlCanvas_.addEventListener('mouseenter', function(event) {
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
187 that.ViewportMouseEnter(that.pimpl_);
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
188 });
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
189
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
190 this.htmlCanvas_.addEventListener('mousedown', function(event) {
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
191 var x = event.pageX - this.offsetLeft;
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
192 var y = event.pageY - this.offsetTop;
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
193 that.ViewportMouseDown(that.pimpl_, event.button, x, y, 0 /* TODO */);
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
194 });
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
195
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
196 this.htmlCanvas_.addEventListener('mousemove', function(event) {
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
197 var x = event.pageX - this.offsetLeft;
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
198 var y = event.pageY - this.offsetTop;
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
199 that.ViewportMouseMove(that.pimpl_, x, y);
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
200 });
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
201
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
202 this.htmlCanvas_.addEventListener('mouseup', function(event) {
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
203 that.ViewportMouseUp(that.pimpl_);
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
204 });
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
205
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
206 window.addEventListener('keydown', function(event) {
327
8716176ff7f0 added support for arrow keys
am@osimis.io
parents: 314
diff changeset
207 var keyChar = event.key;
8716176ff7f0 added support for arrow keys
am@osimis.io
parents: 314
diff changeset
208 var keyCode = event.keyCode
8716176ff7f0 added support for arrow keys
am@osimis.io
parents: 314
diff changeset
209 if (keyChar.length == 1) {
8716176ff7f0 added support for arrow keys
am@osimis.io
parents: 314
diff changeset
210 keyCode = 0; // maps to OrthancStone::KeyboardKeys_Generic
8716176ff7f0 added support for arrow keys
am@osimis.io
parents: 314
diff changeset
211 } else {
8716176ff7f0 added support for arrow keys
am@osimis.io
parents: 314
diff changeset
212 keyChar = null;
8716176ff7f0 added support for arrow keys
am@osimis.io
parents: 314
diff changeset
213 }
8716176ff7f0 added support for arrow keys
am@osimis.io
parents: 314
diff changeset
214 // console.log("key: ", keyCode, keyChar);
8716176ff7f0 added support for arrow keys
am@osimis.io
parents: 314
diff changeset
215 that.ViewportKeyPressed(that.pimpl_, keyCode, keyChar, event.shiftKey, event.ctrlKey, event.altKey);
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
216 });
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
217
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
218 this.htmlCanvas_.addEventListener('wheel', function(event) {
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
219 var x = event.pageX - this.offsetLeft;
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
220 var y = event.pageY - this.offsetTop;
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
221 that.ViewportMouseWheel(that.pimpl_, event.deltaY, x, y, event.ctrlKey);
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
222 event.preventDefault();
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
223 });
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
224
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
225 this.htmlCanvas_.addEventListener('touchstart', function(event) {
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
226 that.ResetTouch();
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
227 });
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
228
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
229 this.htmlCanvas_.addEventListener('touchend', function(event) {
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
230 that.ResetTouch();
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
231 });
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
232
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
233 this.htmlCanvas_.addEventListener('touchmove', function(event) {
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
234 if (that.touchTranslation_.length == 2) {
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
235 var t = that.GetTouchTranslation(event);
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
236 that.ViewportMouseMove(that.pimpl_, t[0], t[1]);
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
237 }
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
238 else if (that.touchZoom_.length == 3) {
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
239 var z0 = that.touchZoom_;
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
240 var z1 = that.GetTouchZoom(event);
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
241 that.ViewportMouseMove(that.pimpl_, z0[0], z0[1] - z0[2] + z1[2]);
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
242 }
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
243 else {
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
244 // Realize the gesture event
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
245 if (event.targetTouches.length == 1) {
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
246 // Exactly one finger inside the canvas => Setup a translation
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
247 that.touchTranslation_ = that.GetTouchTranslation(event);
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
248 that.ViewportMouseDown(that.pimpl_,
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
249 1 /* middle button */,
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
250 that.touchTranslation_[0],
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
251 that.touchTranslation_[1], 0);
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
252 } else if (event.targetTouches.length == 2) {
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
253 // Exactly 2 fingers inside the canvas => Setup a pinch/zoom
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
254 that.touchZoom_ = that.GetTouchZoom(event);
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
255 var z0 = that.touchZoom_;
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
256 that.ViewportMouseDown(that.pimpl_,
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
257 2 /* right button */,
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
258 z0[0],
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
259 z0[1], 0);
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
260 }
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
261 }
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
262 });
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
263 }
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
264
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
265 public ResetTouch() {
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
266 if (this.touchTranslation_ ||
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
267 this.touchZoom_) {
228
210c1ce8e1a6 WasmViewport is no more a singleton
am@osimis.io
parents: 227
diff changeset
268 this.ViewportMouseUp(this.pimpl_);
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
269 }
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
270
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
271 this.touchTranslation_ = false;
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
272 this.touchZoom_ = false;
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
273 }
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
274
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
275 public GetTouchTranslation(event) {
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
276 var touch = event.targetTouches[0];
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
277 return [
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
278 touch.pageX,
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
279 touch.pageY
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
280 ];
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
281 }
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
282
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
283 public GetTouchZoom(event) {
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
284 var touch1 = event.targetTouches[0];
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
285 var touch2 = event.targetTouches[1];
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
286 var dx = (touch1.pageX - touch2.pageX);
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
287 var dy = (touch1.pageY - touch2.pageY);
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
288 var d = Math.sqrt(dx * dx + dy * dy);
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
289 return [
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
290 (touch1.pageX + touch2.pageX) / 2.0,
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
291 (touch1.pageY + touch2.pageY) / 2.0,
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
292 d
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
293 ];
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
294 }
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
295
227
c8f11437a6fd getting ready for multiple viewports
am@osimis.io
parents: 226
diff changeset
296 }
226
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
297 }
1fa4c65c7e1b WasmViewport in ts
am@osimis.io
parents:
diff changeset
298