]>
Dogcows Code - chaz/yoink/blob - src/Moof/Transition.hh
2 /*******************************************************************************
4 Copyright (c) 2009, Charles McGarvey
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are met:
10 * Redistributions of source code must retain the above copyright notice,
11 this list of conditions and the following disclaimer.
12 * Redistributions in binary form must reproduce the above copyright notice,
13 this list of conditions and the following disclaimer in the documentation
14 and/or other materials provided with the distribution.
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *******************************************************************************/
29 #ifndef _MOOF_TRANSITION_HH_
30 #define _MOOF_TRANSITION_HH_
32 #include <boost/shared_ptr.hpp>
34 #include <Moof/Engine.hh>
35 #include <Moof/Interpolator.hh>
36 #include <Moof/Layer.hh>
37 #include <Moof/Log.hh>
38 #include <Moof/Math.hh>
39 #include <Moof/OpenGL.hh>
40 #include <Moof/Texture.hh>
47 class Transition
: public Layer
58 Transition(LayerP t
, LayerP f
, const T
& interp
) :
64 typedef boost::shared_ptr
<Transition
> Ptr
;
66 static Ptr
alloc(LayerP t
, LayerP f
, const T
& interp
)
68 return Ptr(new Transition(t
, f
, interp
));
72 void pushed(Engine
& engine
)
77 void popped(Engine
& engine
)
79 if (mTo
) engine
.push(mTo
);
82 void update(Scalar t
, Scalar dt
)
84 mInterp
.update(t
, dt
);
86 if (mFrom
) mFrom
->update(t
, dt
);
87 if (mTo
) mTo
->update(t
, dt
);
91 // to should /replace/ this
96 void drawFade(Scalar alpha
) const
99 glDisable(GL_DEPTH_TEST
);
100 glDisable(GL_ALPHA_TEST
);
102 glMatrixMode(GL_PROJECTION
);
105 glMatrixMode(GL_MODELVIEW
);
108 glColor4(1.0, 1.0, 1.0, alpha
);
109 Mf::Texture::resetBind();
111 //glRectf(-1.0f, -1.0f, 1.0f, 1.0f);
113 glVertex3f(-1.0, -1.0, -0.1);
114 glVertex3f(1.0, -1.0, -0.1);
115 glVertex3f(1.0, 1.0, -0.1);
116 glVertex3f(-1.0, 1.0, -0.1);
120 glEnable(GL_DEPTH_TEST
);
121 glEnable(GL_ALPHA_TEST
);
123 glMatrixMode(GL_PROJECTION
);
125 glMatrixMode(GL_MODELVIEW
);
129 void draw(Scalar alpha
) const
131 Scalar a
= mInterp
.getState(alpha
);
132 logInfo("draw state: %f", a
);
134 //glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
140 glRotate(180.0 * a
, 0.0, 1.0, 0.0);
150 glRotate(180.0 * (1.0 - a
), 0.0, 1.0, 0.0);
157 bool handleEvent(const Event
& event
)
161 return mTo
->handleEvent(event
);
165 return mFrom
->handleEvent(event
);
174 #endif // _MOOF_TRANSITION_HH_
176 /** vim: set ts=4 sw=4 tw=80: *************************************************/
This page took 0.040511 seconds and 4 git commands to generate.