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
|
/* Part of XPCE --- The SWI-Prolog GUI toolkit
Author: Jan Wielemaker and Anjo Anjewierden
E-mail: jan@swi.psy.uva.nl
WWW: http://www.swi.psy.uva.nl/projects/xpce/
Copyright (c) 1995-2011, University of Amsterdam
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This demo illustrates (like the juggler demo) annimation in xpce. A
timer is attached to the drawing area that moves all graphicals in the
window by 5 points and sets them in the next annimation status.
Left-click in the drawing area adds a kangaroo to the diagram.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
:- module(kangaroo, [ kangaroo/0]).
:- use_module(library(pce)).
:- require([ atomic_list_concat/2
, forall/2
, between/3
]).
kangaroo :-
new(Pict, window('Kangaroo animation demo', size(400, 200))),
new(Msg, message(Pict?graphicals, for_all,
and(message(@arg1, next_status),
if(@arg1?right_side > Pict?visible?right_side,
message(@arg1, x, 0),
message(@arg1, relative_move, point(5, 0)))))),
send(Pict, attribute, attribute(timer, new(T, timer(0.1, Msg)))),
send(T, start),
send(Pict, recogniser,
click_gesture(left, '', single,
message(@prolog, new_kangaroo,
@receiver, @event?position))),
send(new(D, dialog), below, Pict),
send(D, append,
label(help, 'Left-click in the main window for a new kangaroo')),
send(D, append,
slider(speed, 0, 10, 2, message(@prolog, set_speed, T, @arg1))),
send(D, append, button(clear, message(Pict, clear))),
send(D, append, new(Quit, button(quit, and(message(T, free),
message(D, destroy))))),
send(D, done_message, message(Quit, execute)),
new_kangaroo(Pict, point(20,100)),
send(Pict, open).
set_speed(T, 0) :-
!,
send(T, stop).
set_speed(T, N) :-
Time is 1/(9*N),
send(T, interval, Time),
send(T, running, @on).
% Declare image resources. Normally these are facts, but XPCE allows
% for them to be non-unit clauses as well. Note that the resource/3
% clause itself is removed from the saved-state, so we have to define the
% support-predicate image/3 as we want to use the logic of the defined
% kangaroo images.
image(R, N, File) :-
between(1, 11, N),
atom_concat(kangaroo_, N, R),
atomic_list_concat([kangro, N, '.bm'], File).
resource(R, image, image(File)) :-
image(R, _N, File).
new_kangaroo(Pict, Pos) :-
new(F, figure),
forall(image(Rc, N, _File),
(send(F, display, new(BM, bitmap(resource(Rc)))),
send(BM, transparent, @on),
send(BM, name, N))),
send(F, status, 1),
send(Pict, display, F, Pos).
|