forked from shower/shower
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
880 lines (772 loc) · 28 KB
/
index.html
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
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Играем в браузере</title>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="node_modules/shower-material/styles/screen-16x10.css">
<style>
/* fast fix 16x9 */
.shower.full, .slide {
width: calc(1024px + 114px);
}
.shower.full {
margin-left: calc(-512px + -56px);
}
.progress {
clip: rect(0 1138px 8px 0);
}
.slide_center {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding-top: 0;
}
.slide_center::after {
content: '';
}
.subtitle h2 {
color: #000;
text-align: center;
font-size: 70px;
line-height: 200px;
width: 100%;
position: relative;
}
.subtitle h2 span {
z-index: 10;
position: relative;
}
.subtitle .cover {
}
.subtitle h2::before {
content: '';
z-index: 5px;
position: absolute;
top: 0;
left: -300px;
right: -300px;
bottom: 0;
background-color: rgba(255, 255, 255, 0.9);
}
.arrow_right {
width: 40px;
height: 30px;
background-color: black;
position: relative;
}
.arrow_right::after {
width: 30px;
height: 30px;
position: absolute;
right: -20px;
content: '';
width: 0;
height: 0;
top: -15px;
right: -39px;
border-top: 30px solid transparent;
border-bottom: 30px solid transparent;
border-left: 40px solid black;
}
.ref-link {
position: absolute;
bottom: 58px;
right: 112px;
font-size: 20px;
line-height: 30px;
}
.example {
font-size: 60px;
line-height: 70px;
}
.comment {
color: darkgrey;
}
.game_example {
display: block;
margin: 0 auto;
border: 1px solid black;
width: 550px;
}
</style>
<script src="node_modules/shower-core/shower.min.js"></script>
</head>
<body class="shower list">
<header class="caption">
<h1>Играем в браузере</h1>
<p>Обзорный доклад WEB-спецификаций, которые позволяют создавать игры в браузере</p>
</header>
<section class="slide slide-logo">
<img class="cover ya-logo" src="./pictures/yandex.svg" />
<style>
.ya-logo {
width: 375px;
}
.slide-logo::after {
content: '';
}
</style>
</section>
<section class="slide slide_center" id="title">
<h2>Играем в браузере</h2>
<p><a href="http://vsesh.me">Всеволод Шмыров</a></p>
<p class="small-text">WSD 28 января 2017</p>
<style>
#title h2 {
color: #000;
text-align: center;
font-size: 70px;
}
#title a {
font-size: 22px;
}
#title .small-text {
font-size: 15px;
}
</style>
</section>
<section class="slide">
<h2>Кто я такой?</h2>
<ul>
<li>Меня зовут Сева</li>
<li class="next">Разработчик API Яндекс.Карт</li>
<li class="next">В прошлом flash-разработчик игр для социальных сетей</li>
<li class="next">Игры - мое хобби</li>
</ul>
</section>
<section class="slide">
<h2>Почему такая тема?</h2>
<ul>
<li>Внешние браузерные плагины вымирают</li>
<li class="next">Браузеры предоставляют всё больше возможностей</li>
</ul>
</section>
<section class="slide">
<img src="./pictures/engine.png" class="cover" />
</section>
<section class="slide">
<h2>Что будет в этом докладе?</h2>
<ul>
<li>WEB-спецификации</li>
<li class="next">Удачные практики</li>
<li class="next">Живые примеры!</li>
<li class="next">2D</li>
</ul>
</section>
<!-- Раздел -->
<section class="slide subtitle slide_center">
<h2><span>Немного теории</span></h2>
<img class="cover" src="./pictures/theory_part.jpg" />
</section>
<section class="slide">
<h2>Game loop</h2>
<img src="./pictures/gameloop.png" class="gameloop_img" />
<a href="https://clck.ru/AUnco" target="_blank" class="ref-link">Anatomy of a video game</a>
<style>
.gameloop_img {
margin: 75px auto 0px auto;
display: block;
}
</style>
</section>
<section class="slide">
<h2>requestAnimationFrame (RAF)</h2>
<pre>
<code>function tick (<mark class="mark">timestamp</mark>) {</code>
<code class="comment"> /* recalculate */</code>
<code class="comment"> /* redraw */</code>
<code> <mark class="important">requestAnimationFrame</mark>(tick);</code>
<code>}</code>
<code>requestAnimationFrame(tick);</code>
</pre>
<a href="https://clck.ru/AUnco" target="_blank" class="ref-link">Anatomy of a video game</a>
</section>
<section class="slide slide_center">
<a href="./examples/tick/tick.html" target="_blank" class="example">Tick example</a>
</section>
<section class="slide">
<h2>tick</h2>
<pre>
<code>function tick (timestamp) {</code>
<code class="comment"> // ...</code>
<code> circle.update(<mark class="mark">(timestamp - lastTimeValue) / 1000</mark>);</code>
<code class="comment"> // ...</code>
<code>}</code>
<code>requestAnimationFrame(tick);</code>
</pre>
</section>
<section class="slide">
<h2>Circle.update</h2>
<pre>
<code class="comment">// ...</code>
<code>this._position[0] += (<mark class="mark">timeDelta</mark> * this._speed) * </code>
<code> this._direction[0];</code>
<code class="comment">// ...</code>
</pre>
</section>
<section class="slide">
<h2>RAF в неактивной вкладке</h2>
<pre>
<code>document.addEventListener(<mark>'visibilitychange'</mark>, function () {</code>
<code> lastTimeValue = performance.now();</code>
<code>});</code>
</pre>
</section>
<!-- Раздел -->
<section class="slide subtitle slide_center">
<h2><span>Графика</span></h2>
<img src="./pictures/graphic_part.png" class="cover" />
</section>
<section class="slide slide_center_content">
<h2>DOM</h2>
<ul>
<li>position: absolute</li>
<li>image & background-image: url()</li>
<li>transform & filters</li>
<li>transition & animation</li>
</ul>
</section>
<section class="slide">
<h2>Использование CSS трасформации</h2>
<pre>
<code>transform: <mark class="mark">scaleY</mark>(0.5);</code>
<code>transform: <mark class="mark">rotate</mark>(45deg);</code>
</pre>
<div class=table-holder>
<div class=table>
<div class=row>
<div class=cell></div>
<div class=cell></div>
<div class=cell></div>
<div class=cell></div>
</div>
<div class=row>
<div class=cell></div>
<div class=cell></div>
<div class=cell></div>
<div class=cell></div>
</div>
<div class=row>
<div class=cell></div>
<div class=cell></div>
<div class=cell></div>
<div class=cell></div>
</div>
<div class=row>
<div class=cell></div>
<div class=cell></div>
<div class=cell></div>
<div class=cell></div>
</div>
</div>
</div>
<style>
.table-holder {
transform: translate(-50%, -50%) scaleY(0.5);
position: absolute;
left: 50%;
top: calc(50% + 120px);
}
.table {
display: table;
border-spacing: 5px;
transform: rotate(45deg);
}
.table .row {
display: table-row;
}
.table .cell {
display: table-cell;
width: 100px;
height: 100px;
border: 1px solid black;
}
</style>
</section>
<section class="slide slide_center_content">
<h2>Спрайтовая анимация на CSS</h2>
<pre>
<code>animation: <mark class="mark">play</mark> 0.5s <mark class="important">steps(6)</mark> infinite;</code>
<code class="comment">/* Изменение свойства background-position в анимации */</code>
</pre>
<div class="person"></div>
<div class="person person_animation"></div>
<style>
.person {
margin: 50px auto 0px;
width: 408px;
height: 104px;
background-image: url('./pictures/person.png');
}
.person_animation {
animation: play 0.5s steps(6) infinite;
width: 68px;
height: 104px;
}
@keyframes play {
0% {
background-position: 0px 0;
}
100% {
background-position: -408px 0;
}
}
</style>
</section>
<section class="slide slide_center_content">
<h2>Canvas</h2>
<ul>
<li>"Честный" интерфейс отображения графики</li>
<li>Больший контроль над отображением игры</li>
</ul>
</section>
<section class="slide">
<h2>Dirty Rectangles</h2>
<img src="./pictures/game_example.png" class="game_example" />
</section>
<section class="slide">
<h2>Dirty Rectangles</h2>
<img src="./pictures/game_example2.png" class="game_example" />
</section>
<section class="slide">
<h2>Canvas буфер</h2>
<img src="./pictures/game_example2.png" class="game_example game_example2" />
<img src="./pictures/game_example3.png" class="game_example3" />
<style>
.game_example2 {
opacity: 0.5;
}
.game_example3 {
position: absolute;
bottom: 125px;
right: 175px;
border: 1px solid black;
}
</style>
</section>
<section class="slide slide_center_content">
<h2>Несколько слоев</h2>
<img src="./pictures/game_example_layer3.png" class="game_example game_example4 game_example41" />
<img src="./pictures/game_example_layer2.png" class="game_example game_example4 game_example42" />
<img src="./pictures/game_example_layer1.png" class="game_example game_example4 game_example43" />
<style>
.game_example4 {
position: absolute;
transform: translateX(-50%) skewX(-20deg);
width: 400px;
}
.game_example43 {
left: 525px;
top: 200px;
}
.game_example42 {
left: 575px;
top: 250px;
opacity: 0.5;
}
.game_example41 {
left: 625px;
top: 300px;
opacity: 0.3;
}
</style>
</section>
<section class="slide slide_center_content">
<h2>WebGL</h2>
<ul>
<li>Низкоуровневое API работы с графикой</li>
<li>3D в браузере</li>
</ul>
</section>
<section class="slide slide_center_content">
<h2>Оптимизация 2D через WebGL</h2>
<img src="./pictures/pixi.png" class="pixi_img" />
<style>
.pixi_img {
width: 500px;
display: block;
margin: 0 auto;
}
</style>
</section>
<section class="slide slide_center_content">
<img src="./pictures/nasa.png" class="cover" />
<a href="http://eyes.nasa.gov/curiosity/" target="_blank" class="ref-link" style="color: white;">Пример NASA</a>
</section>
<section class="slide">
<h2>Активные области</h2>
<img src="./pictures/hotspot_back.png" class="hotspot_image hotspot_back" />
<img src="./pictures/hotspot_front.png" class="hotspot_image hotspot_front" />
<style>
.hotspot_image {
position: absolute;
}
.hotspot_front {
top: 190px;
left: 390px;
width: 350px;
}
.hotspot_back {
top: 220px;
left: 440px;
width: 350px;
}
</style>
</section>
<section class="slide">
<img src="./pictures/ymaps_example.png" class="cover" />
</section>
<section class="slide slide_center_content">
<h2>SVG</h2>
<ul>
<li>Подходит для любого расширения и DPR</li>
<li>Невысокая производительность</li>
</ul>
</section>
<section class="slide slide_center_content">
<h2>Растеризация вектора</h2>
<div class="rastr_1">
<div>
<p>vector</p>
<img src="./pictures/rastr1_1.png" class="rastr1_img" />
</div>
<div>
<div class="arrow_right"></div>
</div>
<div>
<p>bitmap</p>
<img src="./pictures/rastr1_3.png" class="rastr3_img" />
</div>
</div>
<style>
.rastr_1 {
display: flex;
text-align: center;
}
.rastr_1 > div {
flex-grow: 1;
height: 400px;
width: 33%;
}
.rastr_1 > div:nth-child(2) {
display: flex;
align-items: center;
justify-content: center;
}
.rastr1_img {
height: 250px;
}
.rastr2_img {
width: 100px;
height: 100px;
}
.rastr3_img {
height: 300px;
}
</style>
</section>
<section class="slide slide_center_content">
<h2>Растеризация меток в API</h2>
<div class="rastr_2">
<div><svg color="<mark>{color}</mark>"/>
</div>
<div>
<div class="arrow_right"></div>
</div>
<div>
<img src="./pictures/rastrt2.png" class="rastr3_img" />
</div>
</div>
<style>
.rastr_2 {
display: flex;
text-align: center;
font-size: 25px;
}
.rastr_2 > div {
flex-grow: 1;
height: 400px;
width: 33%;
display: flex;
align-items: center;
justify-content: center;
}
</style>
</section>
<section class="slide slide_center_content">
<h2>Растеризация SVG</h2>
<div class="block-scheme1">
<div class="block">SVG</div>
<div class="block">CANVAS</div>
<div class="block">base64 / BLOB</div>
<div class="block">background-image</div>
</div>
<style>
.block-scheme1 {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
height: 400px;
position: relative;
}
.block-scheme1::before {
border: 2px solid black;
position: absolute;
left: 50%;
top: 35px;
bottom: 35px;
content: ' ';
z-index: -1;
}
.block-scheme1 .block {
background-color: #f0f0f0;
margin: 5px 0px;
text-align: center;
width: 40%;
border-radius: 4px;
border: 2px solid black;
}
</style>
</section>
<section class="slide slide_center">
<a href="./examples/fullscreen/fullscreen.html" target="_blank" class="example">Fullscreen example</a>
</section>
<section class="slide slide_center_content">
<h2>Fullscreen API</h2>
<ul>
<li>Позволяет "развернуть" элемент во весь экран</li>
<li class="next">Обладает очень простым интерфейсом</li>
<li class="next">Не очень широкая поддержка браузерами</li>
<li class="next">Различия в реализации</li>
<li class="next">Можно вызвать только по действию пользователя</li>
</ul>
</section>
<!-- Раздел -->
<section class="slide subtitle slide_center">
<h2><span>Управление</span></h2>
<img src="./pictures/control_part.JPG" class="cover" />
</section>
<section class="slide">
<h2>Клавиатура & мышь</h2>
<pre>
<code>elem.addEventListener(<mark class="mark">'mousemove'</mark>, function(event) {</code>
<code class="comment"> // do something awesome!</code>
<code>});</code>
</pre>
</section>
<section class="slide slide_center">
<a href="./examples/pointer/pointer.html" target="_blank" class="example">Pointer Events example</a>
</section>
<section class="slide slide_center_content">
<h2>Сенсорные касания</h2>
<ul>
<li>Обработка множественных касаний</li>
<li class="next">Реакция на жесты</li>
<li class="next">Несколько игроков на одном устройстве</li>
</ul>
</section>
<section class="slide slide_center_content">
<h2>Сенсорные касания</h2>
<ul>
<li>
Touch Events
<ul>
<li>работа с жестами</li>
</ul>
</li>
<li>
Pointer Events
<ul>
<li>работа с каждым касанием отдельно</li>
</ul>
</li>
</ul>
</section>
<section class="slide">
<h2>Gamepad API</h2>
<ul>
<li>Получение состояние геймпадов в браузере</li>
<li class="next">Позволяет отслеживать нажатие кнопок, положение стиков</li>
<!-- силу нажатия, -->
<li class="next">Поддерживается всеми браузерами кроме IE и Safari (уже в TP)</li>
<li class="next">Обладает непривычным интерфейсом</li>
</ul>
</section>
<section class="slide slide_center">
<a href="./examples/gamepad/gamepad.html" target="_blank" class="example">Gamepad example</a>
</section>
<section class="slide">
<h2>Интерфейс Gamepad API</h2>
<pre>
<code>var gamepad = navigator.getGamepads()[0];</code>
<code>var button0 = gp.<mark class="mark">buttons</mark>[0]; <span class="comment">/* 0-16 */</span></code>
<code>var axe0 = gp.<mark class="mark">axes</mark>[0]; <span class="comment">/* 0-3 */</span></code>
</pre>
</section>
<section class="slide">
<h2>Pointer Lock API</h2>
<ul>
<li>Никак не связан с Pointer Events</li>
<li class="next">Очень похожа на Fullscreen API, но работает с курсором</li>
<li class="next">Имеет значительно большую поддержку, чем Fullscreen API</li>
</ul>
</section>
<section class="slide slide_center_content">
<h2>Pointer Lock API</h2>
<pre>
<pre>
<code>canvas.addEventListener('mousemove', function(event) {</code>
<code class="comment"> // Смещение с предыдущего события</code>
<code> event.<mark>movementX</mark>;</code>
<code> event.<mark>movementY</mark>;</code>
<code>});</code>
</pre>
</pre>
</section>
<!-- Раздел -->
<section class="slide subtitle slide_center">
<h2><span>Звук</span></h2>
<img src="./pictures/audio_part.JPG" class="cover" />
</section>
<section class="slide">
<h2>Элемент audio</h2>
<pre>
<code>var myaudio = new <mark class="mark">Audio</mark>("sound_asset.mp3");</code>
<code>myaudio.play();</code>
</pre>
</section>
<section class="slide">
<h2>Элемент audio</h2>
<pre>
<code class="comment">// Текущее положение в аудиофайле</code>
<code>myaudio.<mark class="mark">currentTime</mark></code>
<code class="comment">// Громкость</code>
<code>myaudio.<mark class="mark">volume</mark></code>
</pre>
</section>
<section class="slide slide_center">
<a href="./examples/panning/panning.html" target="_blank" class="example">Panning example</a>
</section>
<section class="slide">
<h2>Web Audio API</h2>
<ul>
<li>Программный интерфейс для обработки потокового звука</li>
<li class="next">Позволяет генерировать звук</li>
<li class="next">Имеет поддержку всеми популярными браузерами (кроме IE)</li>
<li class="next">Очень большая спецификация</li>
</ul>
</section>
<!-- Раздел -->
<section class="slide subtitle slide_center">
<h2><span>Данные</span></h2>
<img class="cover" src="./pictures/data_part.jpg" />
</section>
<section class="slide">
<h2>Сохранение игры</h2>
<ul>
<li>Локальные хранилища (localStorage, indexedDB)</li>
<li>Сервер (XHR, fetch)</li>
</ul>
</section>
<section class="slide">
<img src="./pictures/slither.io.png" class="cover" />
<a href="http://slither.io" target="_blank" class="ref-link" style="color: white; ">slither.io</a>
</section>
<section class="slide">
<h2>Web Socket</h2>
<ul>
<li>Постоянное соединение</li>
<li class="next">Двухсторонняя связь</li>
<li class="next">Множество решений для клиента и для сервера</li>
</ul>
</section>
<section class="slide slide_center_content">
<h2>Неявный Web Socket</h2>
<div class="block-scheme2">
<div class="block">Kinect driver</div>
<div class="block">.air app</div>
<div class="block">Web Socket</div>
<div class="block">Pointer Events</div>
</div>
<style>
.block-scheme2 {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
height: 375px;
margin-top: 0px;
position: relative;
}
.block-scheme2::before {
border: 2px solid black;
position: absolute;
left: 50%;
top: 35px;
bottom: 35px;
content: ' ';
z-index: -1;
}
.block-scheme2 .block {
background-color: #f0f0f0;
margin: 5px 0px;
text-align: center;
width: 40%;
border-radius: 4px;
border: 2px solid black;
}
</style>
</section>
<!-- Раздел -->
<section class="slide subtitle slide_center">
<h2><span>Будущее</span></h2>
<img src="./pictures/future_part.JPG" class="cover" />
</section>
<section class="slide slide_center_content">
<h2>Будущие интересные спецификации</h2>
<ul>
<li>Web animation API</li>
<li>WebRTC</li>
<li>Payment Request API</li>
<li>Web VR API</li>
<li>...</li>
</ul>
</section>
<section class="slide subtitle slide_center">
<h2><span>Спасибо за внимание!</span></h2>
<img src="./pictures/end.JPG" class="cover" />
</section>
<section class="slide subtitle slide_center credits">
<div>
<p>
Презентация и примеры<br/>
<a href="https://github.com/vsesh/wsd-28-01-2017" target="_blank">github.com/vsesh/wsd-28-01-2017</a>
</p>
</div>
<div>
<p>
Всеволод Шмыров<br/>
<a href=http://vsesh.me target="_blank">vsesh.me</a>
</p>
</div>
<style>
.credits > div:first-child {
border-bottom: 1px solid black;
margin-bottom: 0px;
}
.credits > div {
margin: 20px;
width: 50%;
text-align: center;
}
</style>
</section>
<div class="progress"></div>
<!-- Copyright © 2015 Yours Truly, Famous Inc. -->
<!-- Photos by John Carey, fiftyfootshadows.net -->
</body>
</html>