2 * Copyright (C) 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 "gotoFrameOnKeyEvent.swf"
24 #include "MovieTester.h"
25 #include "GnashException.h"
26 #include "MovieClip.h"
27 #include "DisplayObject.h"
28 #include "DisplayList.h"
35 using namespace gnash
;
40 trymain(int /*argc*/, char** /*argv*/)
42 string filename
= string(SRCDIR
) + string("/") + string(INPUT_FILENAME
);
43 unique_ptr
<MovieTester
> t
;
45 gnash::LogFile
& dbglogfile
= gnash::LogFile::getDefaultInstance();
46 dbglogfile
.setVerbosity(1);
50 t
.reset(new MovieTester(filename
));
52 catch (const GnashException
& e
)
54 std::cerr
<< "Error initializing MovieTester: " << e
.what() << std::endl
;
58 MovieTester
& tester
= *t
;
60 // TODO: check why we need this !!
61 // I wouldn't want the first advance to be needed
64 const MovieClip
* root
= tester
.getRootMovie();
67 check_equals(root
->get_frame_count(), 7);
69 check_equals(root
->get_current_frame(), 0);
71 check_equals(root
->get_current_frame(), 0);
73 // press key 1 four times
74 for(unsigned int i
=1; i
<=4; i
++)
76 tester
.pressKey(key::_1
);
77 tester
.releaseKey(key::_1
);
78 check_equals(root
->get_current_frame(), i
);
80 check_equals(root
->get_current_frame(), i
);
83 // press key 0 four times
84 for(unsigned int i
=4; i
>0; --i
)
86 tester
.pressKey(key::_0
);
87 tester
.releaseKey(key::_0
);
88 check_equals(root
->get_current_frame(), i
-1);
90 check_equals(root
->get_current_frame(), i
-1);
93 // press key 1 two times
94 for(unsigned int i
=1; i
<=2; i
++)
96 tester
.pressKey(key::_1
);
97 tester
.releaseKey(key::_1
);
98 check_equals(root
->get_current_frame(), i
);
100 check_equals(root
->get_current_frame(), i
);
103 // press key DOWN two times
105 tester
.pressKey(key::DOWN
);
106 tester
.releaseKey(key::DOWN
);
107 check_equals(root
->get_current_frame(), 5);
109 check_equals(root
->get_current_frame(), 5);
111 tester
.pressKey(key::DOWN
);
112 tester
.releaseKey(key::DOWN
);
113 check_equals(root
->get_current_frame(), 6);
115 check_equals(root
->get_current_frame(), 6);
118 // press key UP two times
120 tester
.pressKey(key::UP
);
121 tester
.releaseKey(key::UP
);
122 check_equals(root
->get_current_frame(), 5);
124 check_equals(root
->get_current_frame(), 5);
126 tester
.pressKey(key::UP
);
127 tester
.releaseKey(key::UP
);
128 check_equals(root
->get_current_frame(), 2);
130 check_equals(root
->get_current_frame(), 2);
133 // press key 0 two times, now should be back to the first frame
134 for(unsigned int i
=2; i
>0; --i
)
136 tester
.pressKey(key::_0
);
137 tester
.releaseKey(key::_0
);
138 check_equals(root
->get_current_frame(), i
-1);
140 check_equals(root
->get_current_frame(), i
-1);