2 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
3 * Free Software Foundation, Inc.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #define INPUT_FILENAME "RollOverOutTest.swf"
24 #include "MovieTester.h"
25 #include "MovieClip.h"
26 #include "DisplayObject.h"
27 #include "DisplayList.h"
34 using namespace gnash
;
39 trymain(int /*argc*/, char** /*argv*/)
41 string filename
= string(TGTDIR
) + string("/") + string(INPUT_FILENAME
);
42 MovieTester
tester(filename
);
44 gnash::LogFile
& dbglogfile
= gnash::LogFile::getDefaultInstance();
45 dbglogfile
.setVerbosity(1);
47 MovieClip
* root
= tester
.getRootMovie();
50 check_equals(root
->get_frame_count(), 4);
51 check_equals(root
->getPlayState(), MovieClip::PLAYSTATE_PLAY
);
52 check_equals(root
->get_current_frame(), 0);
54 tester
.advance(); // advance to the second frame.
56 const DisplayObject
* mc1
= tester
.findDisplayItemByName(*root
, "square1");
58 const DisplayObject
* mc2
= tester
.findDisplayItemByName(*root
, "square2");
61 check_equals(mc1
->visible(), true);
62 check_equals(mc2
->visible(), false);
63 check_equals(root
->getPlayState(), MovieClip::PLAYSTATE_STOP
);
64 check_equals(root
->get_current_frame(), 1);
66 // we're in stop mode, so advance should not advance anything
68 check_equals(root
->get_current_frame(), 1);
70 check_equals(root
->get_current_frame(), 1);
72 // roll over the middle of the square, this should trigger
73 // the addition of a goto_frame(3) action, which is executed
75 tester
.movePointerTo(60, 60);
77 check_equals(root
->get_current_frame(), 2);
78 check_equals(root
->getPlayState(), MovieClip::PLAYSTATE_STOP
);
80 check_equals(root
->get_current_frame(), 2);
82 // keep the pointer inside
83 tester
.movePointerTo(41, 60);
85 check_equals(root
->get_current_frame(), 2);
87 // pointer on the border (corner case)
88 tester
.movePointerTo(40, 60);
90 check_equals(root
->get_current_frame(), 2);
92 // pointer out of the square.
93 tester
.movePointerTo(300, 60);
94 //tester.advance(); // mouse event handler should drive the movie
95 check_equals(root
->get_current_frame(), 1);
97 // pointer back to the square again.
98 tester
.movePointerTo(60, 60);
100 //tester.advance(); // mouse event handler should drive the movie
101 check_equals(root
->get_current_frame(), 3);