6239d135ae177554af0c0834432542805225607d
[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 qw(line);
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 our $mouse_color = SDL::Color->new( 0x00, 0x00, 0x80 );
24 our $path_color  = SDL::Color->new( 0xff, 0xff, 0x80 );
25 our $black       = SDL::Color->new( 0x00, 0x00, 0x00 );
26
27 sub debug {
28         return unless $debug;
29         my ($package, $filename, $line) = caller;
30         warn '# ', dump( @_ ), " $filename +$line\n";
31 }
32
33 my $mask = SDL::Surface->new(
34         -name => 'artwork/world1/a-mask.png',
35         -depth => 24,
36 );
37
38 our $app = SDL::App->new(
39         -width  => $w,
40         -height => $h,
41         -depth  => 16,
42 #       -flags=>SDL_DOUBLEBUF | SDL_HWSURFACE | SDL_HWACCEL,
43         -title  => 'Trace mouse',
44 );
45
46 our $app_rect  = SDL::Rect->new( -x => 0, -y => 0, -width => $w, -height => $h );
47 $mask->blit( $mask->rect, $app, $app_rect );
48 $app->sync;
49
50
51 my @landing;
52
53 my $mask_step = 10;
54
55 my $y = 0;
56 foreach ( 0 .. $mask->height / $mask_step ) {
57         printf "%3d: ", $_;
58         my $x = 0;
59         foreach ( 0 .. $mask->width / $mask_step ) {
60                 my $col = $mask->pixel( $x, $y );
61                 my $nr = 0;
62                 $nr += 4 if $col->r;
63                 $nr += 2 if $col->g;
64                 $nr += 1 if $col->b;
65                 $landing[$nr] = [ $x, $y ] unless defined $landing[$nr];
66                 printf "%02x%02x%02x:%d ", $col->r, $col->g, $col->b, $nr;
67                 $x += $mask_step;
68         }
69         print "\n";
70         $y += $mask_step;
71 }
72
73 warn 'lading ',dump(@landing);
74
75 our $event = SDL::Event->new;
76
77 our $mouse_down = 0;
78
79 my ( $last_x, $last_y ) = ( 0,0 );
80
81 our @path;
82 sub reset_path { @path = () }
83
84 sub curve {
85
86         my $mask_col = $mask->pixel( $path[-2], $path[-1] );
87         my $mask_hex = sprintf '%02x%02x%02x', $mask_col->r, $mask_col->g, $mask_col->b;
88         warn "mask $path[-2] $path[1] $mask_hex\n";
89
90         if ( $mask_hex eq '000000' ) { # push landing point at path end
91                 foreach ( 1 .. 6 ) {
92                         push @path, $landing[$_]->[0], $landing[$_]->[1];
93                 }
94         }
95
96         if ( $#path < ( 4 * 2 - 1 ) ) { # less than 4 points
97                 warn "path too short ", dump @path;
98                 reset_path;
99                 return;
100         }
101
102         my $curve = Math::CatmullRom->new( @path );
103         my $points = $#path + 1 - 4; # remove start/end points
104         my @curve = $curve->curve( $points );
105         debug 'curve' => @curve;
106
107         my $i = 0;
108         while ( $i <= $#curve - 4 ) {
109                 line(
110                         int($curve[$i++]),
111                         int($curve[$i++]),
112                         int($curve[$i++]),
113                         int($curve[$i++]),
114                         sub { $app->pixel( @_, $path_color ) }
115                 );
116         }
117         $app->sync;
118         reset_path;
119 }
120
121 sub handle_events {
122
123         while ( $event->wait ) {
124                 my $type = $event->type();
125
126                 if ( $type == SDL_MOUSEBUTTONDOWN() ) {
127                         debug 'mouse down', $event->button_x, $event->button_y;
128                         $mouse_down = 1;
129                 } elsif ( $type == SDL_MOUSEBUTTONUP() ) {
130                         debug 'mouse up', $event->button_x, $event->button_y;
131                         $mouse_down = 0;
132         
133                         curve;
134                 } elsif ( $type == SDL_QUIT() ) {
135                         exit;
136                 } elsif ( $type == SDL_KEYDOWN() ) {
137                         my $key = $event->key_name;
138                         debug 'key down', $key;
139                         exit if $key =~ m/^[xq]$/;
140                         if ( $key eq 's' ) { # XXX draw curve
141                                 curve;
142                         } elsif ( $key eq 'backspace' || $key eq 'c' ) { # XXX clean screen
143                                 reset_path;
144                                 $app->fill( $app->rect, $black );
145 #                               $app->update( $rect );
146                                 $mask->blit( $mask->rect, $app, $app_rect );
147                                 $app->sync;
148                         } elsif ( $key eq 'd' ) { # XXX toggle debug
149                                 $debug = ! $debug;
150                                 warn "debug $debug\n";
151                         } else {
152                                 warn "unknown key $key";
153                         }
154                 } elsif ( $type == SDL_KEYUP() ) {
155                         debug 'key up', $event->key_name;
156                 } elsif ( $type == SDL_MOUSEMOTION() ) {
157                         my ( $x, $y ) = ( $event->motion_x, $event->motion_y );
158                         #debug 'mouse', $mouse_down, $x, $y;
159                         my $d = sqrt( ( $x - $last_x ) ** 2 + ( $y - $last_y ) ** 2 );
160                         if ( $mouse_down && $d > $mouse_trashold ) {
161                                 if ( $#path < $max_path_length ) {
162                                         push @path, $x, $y;
163                                         my $rect = SDL::Rect->new( -x => $event->motion_x - 1, -y => $event->motion_y -1 , -w => 3, -h => 3 );
164                                         $app->fill( $rect, $mouse_color );
165                                         $app->update( $rect );
166                                         $last_x = $x;
167                                         $last_y = $y;
168                                 } else {
169                                         $mouse_down = 0;
170                                         curve;
171                                 }
172                         }
173                 } else {
174                         warn "unknown type $type\n";
175                 }
176         }
177 };
178
179 while(1) {
180         handle_events;
181         $app->sync;
182         $app->delay(1);
183 }
184
185 1;