forked from Ponup/php-sdl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path006-animated-boxes.php
50 lines (35 loc) · 1.26 KB
/
006-animated-boxes.php
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
<?php
declare(strict_types=1);
require 'bootstrap.php';
SDL_Init(SDL_INIT_EVERYTHING);
$window = SDL_CreateWindow('Progress bar animation', SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 400, 300, SDL_WINDOW_SHOWN | SDL_Window::RESIZABLE);
$surf = SDL_GetWindowSurface($window);
$time = 4;
$step = 5;
$color = SDL_MapRGB($surf->format, 0xff, 0x87, 0xef);
// Compute rects
$rects = [];
for ($t = $time * $step; $t; $t--) {
$rects[$time * $step - $t] = new SDL_Rect(35 + ($time * $step + 1 - $t) * 15, 20, 10, 10);
}
// Display rects in ~white
$surf->FillRects($rects, count($rects), $color);
SDL_UpdateWindowSurface($window);
$cursor = SDL_Cursor::CreateSystem(SDL_Cursor::HAND);
$cursor->Set();
$event = new SDL_Event;
$color = SDL_MapRGB($surf->format, 0xef, 0xff, 0x87);
for ($t = $time * $step; $t; $t--) {
if (!($t % $step)) {
$secondsLeft = $t / $step;
SDL_SetWindowTitle($window, "Will be closed in $secondsLeft seconds");
}
// Display 1 rect in ~red
$surf->FillRect($rects[$time * $step - $t], $color);
SDL_UpdateWindowSurfaceRects($window, array($rects[$time * $step - $t]));
usleep(1000000 / $step);
while (SDL_PollEvent($event)) {
if ($event->type == SDL_QUIT) break;
}
}
SDL_DestroyWindow($window);