5f9884ad8cf6a66c3fabc2941d6ea534bffd3aab
[perl-landing-airplanes.git] / trace-path.pl
1 #!/usr/bin/perl
2
3 use warnings;
4 use strict;
5
6 use SDL::App;
7 use SDL::Rect;
8 use SDL::Color;
9 use SDL::Constants;
10 use SDL::Event;
11 use Math::CatmullRom;
12 #use Algorithm::Line::Bresenham;
13
14 use Carp qw(cluck);
15 use Data::Dump qw(dump);
16
17 our $debug = 0;
18
19 my ( $w, $h ) = ( 800, 480 );
20 my $mouse_trashold = 10;
21 my $max_path_length = 200;
22
23 sub debug {
24         return unless $debug;
25         my ($package, $filename, $line) = caller;
26         warn '# ', dump( @_ ), " $filename +$line\n";
27 }
28
29 our $app = SDL::App->new(
30         -width  => $w,
31         -height => $h,
32         -depth  => 16,
33 #       -flags=>SDL_DOUBLEBUF | SDL_HWSURFACE | SDL_HWACCEL,
34         -title  => 'Trace mouse',
35 );
36
37 our $event = SDL::Event->new;
38
39 our $mouse_down = 0;
40
41 our $white = SDL::Color->new( 0xff, 0xff, 0xff );
42 our $red   = SDL::Color->new( 0xff, 0x00, 0x00 );
43 our $black = SDL::Color->new( 0x00, 0x00, 0x00 );
44
45 my ( $last_x, $last_y ) = ( 0,0 );
46
47 my @path;
48
49 sub curve {
50         return unless $#path > 4;
51         my $curve = Math::CatmullRom->new( splice @path, 0, $#path + $#path / 2 );
52         my @curve = $curve->curve( $mouse_trashold * $max_path_length / 2 );
53         debug 'curve' => @curve;
54
55         my $i = 0;
56         while ( $i < $#curve ) {
57                 my $rect = SDL::Rect->new( -x => int($curve[$i++]), -y => int($curve[$i++]), -w => 1, -h => 1 );
58                 $app->fill( $rect, $red );
59                 $app->update( $rect );
60         }
61 }
62
63 sub handle_events {
64
65         while ( $event->wait ) {
66                 my $type = $event->type();
67
68                 if ( $type == SDL_MOUSEBUTTONDOWN() ) {
69                         debug 'mouse down', $event->button_x, $event->button_y;
70                         $mouse_down = 1;
71                 } elsif ( $type == SDL_MOUSEBUTTONUP() ) {
72                         debug 'mouse up', $event->button_x, $event->button_y;
73                         $mouse_down = 0;
74                         curve;
75                 } elsif ( $type == SDL_QUIT() ) {
76                         exit;
77                 } elsif ( $type == SDL_KEYDOWN() ) {
78                         my $key = $event->key_name;
79                         debug 'key down', $key;
80                         exit if $key =~ m/^[xq]$/;
81                         if ( $key eq 's' ) { # XXX draw curve
82                                 curve;
83                         } elsif ( $key eq 'backspace' ) { # XXX clean screen
84                                 @path = ();
85                                 my $rect = SDL::Rect->new( -x => 0, -y => 0, -w => $w, -h => $h );
86                                 $app->fill( $rect, $black );
87                                 $app->update( $rect );
88                         } elsif ( $key eq 'd' ) { # XXX toggle debug
89                                 $debug = ! $debug;
90                                 warn "debug $debug\n";
91                         } else {
92                                 warn "unknown key $key";
93                         }
94                 } elsif ( $type == SDL_KEYUP() ) {
95                         debug 'key up', $event->key_name;
96                 } elsif ( $type == SDL_MOUSEMOTION() ) {
97                         my ( $x, $y ) = ( $event->motion_x, $event->motion_y );
98                         debug 'mouse', $mouse_down, $x, $y;
99                         my $dx = abs( $last_x - $x );
100                         my $dy = abs( $last_y - $y );
101                         if ( $mouse_down && ( $dx > $mouse_trashold || $dy > $mouse_trashold ) ) {
102                                 if ( $#path < $max_path_length ) {
103                                         push @path, $x, $y;
104                                         my $rect = SDL::Rect->new( -x => $event->motion_x, -y => $event->motion_y, -w => 3, -h => 3 );
105                                         $app->fill( $rect, $white );
106                                         $app->update( $rect );
107                                         $last_x = $x;
108                                         $last_y = $y;
109                                 } else {
110                                         $mouse_down = 0;
111                                         curve;
112                                 }
113                         }
114                 } else {
115                         warn "unknown type $type\n";
116                 }
117         }
118 };
119
120 while(1) {
121         handle_events;
122         $app->sync;
123         $app->delay(1);
124 }
125
126 1;