aboutsummaryrefslogtreecommitdiff
path: root/src/MTools/Anim/MScalor.pm
blob: eb8695f5d4948979a78942d6a89502c19857f821 (plain)
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
package MTools::Anim::MScalor;
#	This program is free software; you can redistribute it and/or
#	modify it under the terms of the GNU LGPL Libray General Public License
#	as published by the Free Software Foundation; either version 2
#	of the License, or (at your option) any later version.
#
#	This program is distributed in the hope that it will be useful,
#	but WITHOUT ANY WARRANTY; without even the implied warranty of
#	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#	GNU Library General Public License for more details.
#
#	You should have received a copy of the GNU Library General Public License
#	along with this program; if not, write to the Free Software
#	Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA,
#	or refer to http://www.gnu.org/copyleft/lgpl.html
#
##################################################################

# MScalor permet de realiser une animation de scale sur l'objet
# 
# proprietes :
#	* -visible : permet d'activer ou non l'animation
#	* center_x, center_y : coordonnees du centre de la transformation
#	* from_x, from_y : valeur initiale de la transformation
#	* to_x, to_y : valeur finale de la transformation
# 	* duration : duree de l'animation
#	* loop : marque le caractere repetitif ou non de l'animation
#	* targets : objet ou tableau d'objet cibles de cette animation
# Evenements :
#	* ANIMATION_END : Notifie lorque l'annimation se termine
#	* SCALED : Notifie lorsque la valeur de scale est changee au cours de l'animation
#	* ANIMATION_ABORD : Notifie lorsque l'animation est stoppee avant la fin
# Fonctions : 
#	* start : demarre l'animation
#	* stop: arrete l'animation
#	* isRunning : test si l'animation est en cours

use strict;
use MTools;
use MTools::MObjet;

use Anim;
use Anim::Pacing::Linear;
use Anim::Path::Rectilinear;

use vars qw /@ISA/;

BEGIN 
{
	@ISA = qw /MTools::MObjet/;
}

use Tk;

sub new {
	my ($class, %options) = @_;
	my $self = new MTools::MObjet ();
	bless $self, $class;

	$self -> recordProperty ('-visible', 0);
	$self -> recordProperty ('center_x', 0);
	$self -> recordProperty ('center_y', 0);
	$self -> recordProperty ('from_x', 0);
	$self -> recordProperty ('from_y', 0);
	$self -> recordProperty ('to_x', 0);
	$self -> recordProperty ('to_y', 0);
	$self -> recordProperty ('duration', 1);
	$self -> recordProperty ('loop', 0);
	$self -> recordProperty ('targets', undef);
	$self -> recordEvent ('ANIMATION_END');
	$self -> recordEvent ('SCALED');
	$self -> recordEvent ('ANIMATION_ABORD');
	$self -> plisten ('-visible', sub { 
		my ($src, $key, $val) = @_;
		if ($val == 0)
		{
			$self -> stop ();
		}
		else
		{
			$self -> start ();
		}
	});
	$self -> {__animation} = undef;
	$self -> mconfigure (%options);
	return $self;
}

sub start {
	my ($self) = @_;
	my $pacing = new Anim::Pacing::Linear (-duration => $self -> mget ('duration'));
	$self -> {__xdep} = my $xdep = $self -> mget ('from_x');
	$self -> {__ydep} = my $ydep = $self -> mget ('from_y');

	my $animationpath = new Anim::Path::Rectilinear (
		-xdep => 0,
		-ydep => 0,
		-xdest => $self -> mget ('to_x') - $xdep,
		-ydest => $self -> mget ('to_y') - $ydep,
	);
	$self -> {__x} = $xdep;
	$self -> {__y} = $ydep;
	$self -> {__animation} = my $animation = new Anim (
		-pacing => $pacing,
		-resources => [
			$animationpath,
			-command => sub { $self -> __event (@_)},
			-endcommand => sub {$self -> notify ('ANIMATION_END');$self -> {__animation} = undef;},
		],
		-stopcommand => sub {$self -> notify ('ANIMATION_ABORD', $self -> {__x}, $self -> {__y});$self -> {__animation} = undef;},
		-loop => $self -> mget ('loop'),
	);
	$animation -> start ();
}

sub stop {
	my ($self) = @_;
	if (defined $self -> {__animation})
	{
		$self -> {__animation} -> stop ();
	}
}

sub __event {
	my ($self, $x, $y) = @_;
	my $cx = $self -> mget ('center_x');
	my $cy = $self -> mget ('center_y');
	$x += $self -> {__xdep};
	$y += $self -> {__ydep};
	my @targets = ();
	my $target = $self -> mget ('targets');
	if (ref ($target) eq 'ARRAY')
	{
		@targets = @{$target};
	}
	else
	{
		push (@targets, $target);
	}
	for (my $i = 0; $i < @targets; $i++)
	{
		scale ($targets [$i], $x / $self -> {__x}, $y / $self -> {__y}, $cx, $cy);
	}
	$self -> {__x} = $x;
	$self -> {__y} = $y;
	$self -> notify ('SCALED', $x, $y, $cx, $cy);
}

sub isRunning {
	my ($self) = @_;
	return defined $self -> {__animation};
}

1;