2018-11-08 21:39:26 +08:00
|
|
|
// Copyright (c) 2016-2018 Easy2D - Nomango
|
|
|
|
|
//
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
|
//
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
|
//
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
// THE SOFTWARE.
|
|
|
|
|
|
|
|
|
|
#include "Transition.h"
|
|
|
|
|
#include "Node.h"
|
|
|
|
|
#include "Scene.h"
|
|
|
|
|
#include "window.h"
|
2018-11-12 20:46:54 +08:00
|
|
|
#include "render.h"
|
2018-11-15 17:59:18 +08:00
|
|
|
#include "logs.h"
|
2018-11-08 21:39:26 +08:00
|
|
|
|
|
|
|
|
namespace easy2d
|
|
|
|
|
{
|
|
|
|
|
//-------------------------------------------------------
|
|
|
|
|
// Transition
|
|
|
|
|
//-------------------------------------------------------
|
|
|
|
|
|
2018-11-14 16:39:24 +08:00
|
|
|
Transition::Transition(Duration const& duration)
|
2018-11-08 21:39:26 +08:00
|
|
|
: done_(false)
|
2018-11-14 16:39:24 +08:00
|
|
|
, duration_(duration)
|
|
|
|
|
, delta_()
|
2018-11-08 21:39:26 +08:00
|
|
|
, process_(0)
|
|
|
|
|
, window_size_()
|
|
|
|
|
, out_scene_(nullptr)
|
|
|
|
|
, in_scene_(nullptr)
|
|
|
|
|
, out_layer_(nullptr)
|
|
|
|
|
, in_layer_(nullptr)
|
2018-11-12 02:10:35 +08:00
|
|
|
, out_layer_prop_()
|
|
|
|
|
, in_layer_prop_()
|
2018-11-08 21:39:26 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Transition::~Transition()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Transition::IsDone()
|
|
|
|
|
{
|
|
|
|
|
return done_;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-14 01:34:41 +08:00
|
|
|
void Transition::Init(spScene const& prev, spScene const& next)
|
2018-11-08 21:39:26 +08:00
|
|
|
{
|
2018-11-14 16:39:24 +08:00
|
|
|
process_ = 0;
|
|
|
|
|
delta_ = Duration{};
|
|
|
|
|
|
2018-11-08 21:39:26 +08:00
|
|
|
out_scene_ = prev;
|
|
|
|
|
in_scene_ = next;
|
|
|
|
|
|
|
|
|
|
if (in_scene_)
|
|
|
|
|
{
|
|
|
|
|
ThrowIfFailed(
|
2018-11-17 17:15:32 +08:00
|
|
|
devices::Graphics::Instance()->CreateLayer(in_layer_)
|
2018-11-08 21:39:26 +08:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (out_scene_)
|
|
|
|
|
{
|
|
|
|
|
ThrowIfFailed(
|
2018-11-17 17:15:32 +08:00
|
|
|
devices::Graphics::Instance()->CreateLayer(out_layer_)
|
2018-11-08 21:39:26 +08:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-15 14:35:19 +08:00
|
|
|
window_size_ = Window::Instance()->GetSize();
|
2018-11-12 20:46:54 +08:00
|
|
|
out_layer_prop_ = in_layer_prop_ = LayerProperties{ Rect(Point(), window_size_),1.f };
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
2018-11-14 16:39:24 +08:00
|
|
|
void Transition::Update(Duration const& dt)
|
2018-11-08 21:39:26 +08:00
|
|
|
{
|
2018-11-14 16:39:24 +08:00
|
|
|
if (duration_.IsZero())
|
2018-11-08 21:39:26 +08:00
|
|
|
{
|
|
|
|
|
process_ = 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-11-14 16:39:24 +08:00
|
|
|
delta_ += dt;
|
|
|
|
|
process_ = std::min(delta_ / duration_, 1.f);
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (process_ >= 1)
|
|
|
|
|
{
|
|
|
|
|
this->Stop();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-19 17:56:17 +08:00
|
|
|
void Transition::Render()
|
2018-11-08 21:39:26 +08:00
|
|
|
{
|
2018-11-15 14:35:19 +08:00
|
|
|
auto graphics = devices::Graphics::Instance();
|
2018-11-14 16:39:24 +08:00
|
|
|
|
2018-11-08 21:39:26 +08:00
|
|
|
if (out_scene_)
|
|
|
|
|
{
|
2018-11-15 14:35:19 +08:00
|
|
|
graphics->PushClip(
|
2018-11-14 16:39:24 +08:00
|
|
|
out_scene_->GetTransform().ToMatrix(),
|
2018-11-12 02:10:35 +08:00
|
|
|
window_size_
|
2018-11-08 21:39:26 +08:00
|
|
|
);
|
2018-11-15 14:35:19 +08:00
|
|
|
graphics->PushLayer(out_layer_, out_layer_prop_);
|
2018-11-08 21:39:26 +08:00
|
|
|
|
2018-11-14 16:39:24 +08:00
|
|
|
out_scene_->Visit();
|
2018-11-08 21:39:26 +08:00
|
|
|
|
2018-11-15 14:35:19 +08:00
|
|
|
graphics->PopLayer();
|
|
|
|
|
graphics->PopClip();
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (in_scene_)
|
|
|
|
|
{
|
2018-11-15 14:35:19 +08:00
|
|
|
graphics->PushClip(
|
2018-11-14 16:39:24 +08:00
|
|
|
in_scene_->GetTransform().ToMatrix(),
|
2018-11-12 02:10:35 +08:00
|
|
|
window_size_
|
2018-11-08 21:39:26 +08:00
|
|
|
);
|
2018-11-15 14:35:19 +08:00
|
|
|
graphics->PushLayer(in_layer_, in_layer_prop_);
|
2018-11-08 21:39:26 +08:00
|
|
|
|
2018-11-14 16:39:24 +08:00
|
|
|
in_scene_->Visit();
|
2018-11-08 21:39:26 +08:00
|
|
|
|
2018-11-15 14:35:19 +08:00
|
|
|
graphics->PopLayer();
|
|
|
|
|
graphics->PopClip();
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Transition::Stop()
|
|
|
|
|
{
|
|
|
|
|
done_ = true;
|
|
|
|
|
Reset();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------
|
|
|
|
|
// BoxTransition
|
|
|
|
|
//-------------------------------------------------------
|
|
|
|
|
|
2018-11-14 16:39:24 +08:00
|
|
|
BoxTransition::BoxTransition(Duration const& duration)
|
2018-11-08 21:39:26 +08:00
|
|
|
: Transition(duration)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-14 01:34:41 +08:00
|
|
|
void BoxTransition::Init(spScene const& prev, spScene const& next)
|
2018-11-08 21:39:26 +08:00
|
|
|
{
|
2018-11-14 01:34:41 +08:00
|
|
|
Transition::Init(prev, next);
|
2018-11-08 21:39:26 +08:00
|
|
|
|
2018-11-12 02:10:35 +08:00
|
|
|
in_layer_prop_.opacity = 0;
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
2018-11-14 16:39:24 +08:00
|
|
|
void BoxTransition::Update(Duration const& dt)
|
2018-11-08 21:39:26 +08:00
|
|
|
{
|
2018-11-14 16:39:24 +08:00
|
|
|
Transition::Update(dt);
|
2018-11-08 21:39:26 +08:00
|
|
|
|
|
|
|
|
if (process_ < .5f)
|
|
|
|
|
{
|
2018-11-12 02:10:35 +08:00
|
|
|
out_layer_prop_.area = Rect(
|
2018-11-08 21:39:26 +08:00
|
|
|
window_size_.width * process_,
|
|
|
|
|
window_size_.height * process_,
|
2018-11-12 02:10:35 +08:00
|
|
|
window_size_.width * (1 - process_ * 2),
|
|
|
|
|
window_size_.height * (1 - process_ * 2)
|
2018-11-08 21:39:26 +08:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-11-12 02:10:35 +08:00
|
|
|
out_layer_prop_.opacity = 0;
|
|
|
|
|
in_layer_prop_.opacity = 1;
|
|
|
|
|
in_layer_prop_.area = Rect(
|
2018-11-08 21:39:26 +08:00
|
|
|
window_size_.width * (1 - process_),
|
|
|
|
|
window_size_.height * (1 - process_),
|
2018-11-12 02:10:35 +08:00
|
|
|
window_size_.width * (2 * process_ - 1),
|
|
|
|
|
window_size_.height * (2 * process_ - 1)
|
2018-11-08 21:39:26 +08:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------
|
|
|
|
|
// EmergeTransition
|
|
|
|
|
//-------------------------------------------------------
|
|
|
|
|
|
2018-11-14 16:39:24 +08:00
|
|
|
EmergeTransition::EmergeTransition(Duration const& duration)
|
2018-11-08 21:39:26 +08:00
|
|
|
: Transition(duration)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-14 01:34:41 +08:00
|
|
|
void EmergeTransition::Init(spScene const& prev, spScene const& next)
|
2018-11-08 21:39:26 +08:00
|
|
|
{
|
2018-11-14 01:34:41 +08:00
|
|
|
Transition::Init(prev, next);
|
2018-11-08 21:39:26 +08:00
|
|
|
|
2018-11-12 02:10:35 +08:00
|
|
|
out_layer_prop_.opacity = 1;
|
|
|
|
|
in_layer_prop_.opacity = 0;
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
2018-11-14 16:39:24 +08:00
|
|
|
void EmergeTransition::Update(Duration const& dt)
|
2018-11-08 21:39:26 +08:00
|
|
|
{
|
2018-11-14 16:39:24 +08:00
|
|
|
Transition::Update(dt);
|
2018-11-08 21:39:26 +08:00
|
|
|
|
2018-11-12 02:10:35 +08:00
|
|
|
out_layer_prop_.opacity = 1 - process_;
|
|
|
|
|
in_layer_prop_.opacity = process_;
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------
|
|
|
|
|
// FadeTransition
|
|
|
|
|
//-------------------------------------------------------
|
|
|
|
|
|
2018-11-14 16:39:24 +08:00
|
|
|
FadeTransition::FadeTransition(Duration const& duration)
|
2018-11-08 21:39:26 +08:00
|
|
|
: Transition(duration)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-14 01:34:41 +08:00
|
|
|
void FadeTransition::Init(spScene const& prev, spScene const& next)
|
2018-11-08 21:39:26 +08:00
|
|
|
{
|
2018-11-14 01:34:41 +08:00
|
|
|
Transition::Init(prev, next);
|
2018-11-08 21:39:26 +08:00
|
|
|
|
2018-11-12 02:10:35 +08:00
|
|
|
out_layer_prop_.opacity = 1;
|
|
|
|
|
in_layer_prop_.opacity = 0;
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
2018-11-14 16:39:24 +08:00
|
|
|
void FadeTransition::Update(Duration const& dt)
|
2018-11-08 21:39:26 +08:00
|
|
|
{
|
2018-11-14 16:39:24 +08:00
|
|
|
Transition::Update(dt);
|
2018-11-08 21:39:26 +08:00
|
|
|
|
|
|
|
|
if (process_ < 0.5)
|
|
|
|
|
{
|
2018-11-12 02:10:35 +08:00
|
|
|
out_layer_prop_.opacity = 1 - process_ * 2;
|
|
|
|
|
in_layer_prop_.opacity = 0;
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-11-12 02:10:35 +08:00
|
|
|
out_layer_prop_.opacity = 0;
|
|
|
|
|
in_layer_prop_.opacity = (process_ - 0.5f) * 2;
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------
|
|
|
|
|
// MoveTransition
|
|
|
|
|
//-------------------------------------------------------
|
|
|
|
|
|
2018-11-14 16:39:24 +08:00
|
|
|
MoveTransition::MoveTransition(Duration const& duration, Direction direction)
|
2018-11-08 21:39:26 +08:00
|
|
|
: Transition(duration)
|
|
|
|
|
, direction_(direction)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-14 01:34:41 +08:00
|
|
|
void MoveTransition::Init(spScene const& prev, spScene const& next)
|
2018-11-08 21:39:26 +08:00
|
|
|
{
|
2018-11-14 01:34:41 +08:00
|
|
|
Transition::Init(prev, next);
|
2018-11-08 21:39:26 +08:00
|
|
|
|
|
|
|
|
switch (direction_)
|
|
|
|
|
{
|
|
|
|
|
case Direction::Up:
|
|
|
|
|
pos_delta_ = Point(0, -window_size_.height);
|
|
|
|
|
start_pos_ = Point(0, window_size_.height);
|
|
|
|
|
break;
|
|
|
|
|
case Direction::Down:
|
|
|
|
|
pos_delta_ = Point(0, window_size_.height);
|
|
|
|
|
start_pos_ = Point(0, -window_size_.height);
|
|
|
|
|
break;
|
|
|
|
|
case Direction::Left:
|
|
|
|
|
pos_delta_ = Point(-window_size_.width, 0);
|
|
|
|
|
start_pos_ = Point(window_size_.width, 0);
|
|
|
|
|
break;
|
|
|
|
|
case Direction::Right:
|
|
|
|
|
pos_delta_ = Point(window_size_.width, 0);
|
|
|
|
|
start_pos_ = Point(-window_size_.width, 0);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (out_scene_)
|
|
|
|
|
{
|
2018-11-16 17:19:03 +08:00
|
|
|
out_scene_->SetTransform(Transform{});
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (in_scene_)
|
|
|
|
|
{
|
2018-11-16 17:19:03 +08:00
|
|
|
auto transform = Transform{};
|
2018-11-14 16:39:24 +08:00
|
|
|
transform.position = start_pos_;
|
|
|
|
|
in_scene_->SetTransform(transform);
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-14 16:39:24 +08:00
|
|
|
void MoveTransition::Update(Duration const& dt)
|
2018-11-08 21:39:26 +08:00
|
|
|
{
|
2018-11-14 16:39:24 +08:00
|
|
|
Transition::Update(dt);
|
2018-11-08 21:39:26 +08:00
|
|
|
|
|
|
|
|
if (out_scene_)
|
|
|
|
|
{
|
2018-11-16 17:19:03 +08:00
|
|
|
auto transform = Transform{};
|
2018-11-14 16:39:24 +08:00
|
|
|
transform.position = pos_delta_ * process_;
|
|
|
|
|
out_scene_->SetTransform(transform);
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (in_scene_)
|
|
|
|
|
{
|
2018-11-16 17:19:03 +08:00
|
|
|
auto transform = Transform{};
|
2018-11-14 16:39:24 +08:00
|
|
|
transform.position = start_pos_ + pos_delta_ * process_;
|
|
|
|
|
in_scene_->SetTransform(transform);
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MoveTransition::Reset()
|
|
|
|
|
{
|
|
|
|
|
if (out_scene_)
|
|
|
|
|
{
|
2018-11-16 17:19:03 +08:00
|
|
|
out_scene_->SetTransform(Transform{});
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (in_scene_)
|
|
|
|
|
{
|
2018-11-16 17:19:03 +08:00
|
|
|
in_scene_->SetTransform(Transform{});
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------
|
|
|
|
|
// RotationTransition
|
|
|
|
|
//-------------------------------------------------------
|
|
|
|
|
|
2018-11-14 16:39:24 +08:00
|
|
|
RotationTransition::RotationTransition(Duration const& duration, float rotation)
|
2018-11-08 21:39:26 +08:00
|
|
|
: Transition(duration)
|
|
|
|
|
, rotation_(rotation)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-14 01:34:41 +08:00
|
|
|
void RotationTransition::Init(spScene const& prev, spScene const& next)
|
2018-11-08 21:39:26 +08:00
|
|
|
{
|
2018-11-14 01:34:41 +08:00
|
|
|
Transition::Init(prev, next);
|
2018-11-08 21:39:26 +08:00
|
|
|
|
2018-11-16 17:19:03 +08:00
|
|
|
auto transform = Transform{};
|
2018-11-14 16:39:24 +08:00
|
|
|
transform.pivot = Point{ 0.5f, 0.5f };
|
|
|
|
|
transform.position = Point{ window_size_.width / 2, window_size_.height / 2 };
|
|
|
|
|
|
2018-11-08 21:39:26 +08:00
|
|
|
if (out_scene_)
|
|
|
|
|
{
|
2018-11-14 16:39:24 +08:00
|
|
|
out_scene_->SetTransform(transform);
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (in_scene_)
|
|
|
|
|
{
|
2018-11-14 16:39:24 +08:00
|
|
|
in_scene_->SetTransform(transform);
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
2018-11-12 02:10:35 +08:00
|
|
|
in_layer_prop_.opacity = 0;
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
2018-11-14 16:39:24 +08:00
|
|
|
void RotationTransition::Update(Duration const& dt)
|
2018-11-08 21:39:26 +08:00
|
|
|
{
|
2018-11-14 16:39:24 +08:00
|
|
|
Transition::Update(dt);
|
2018-11-08 21:39:26 +08:00
|
|
|
|
|
|
|
|
if (process_ < .5f)
|
|
|
|
|
{
|
|
|
|
|
if (out_scene_)
|
|
|
|
|
{
|
2018-11-14 16:39:24 +08:00
|
|
|
auto transform = out_scene_->GetTransform();
|
|
|
|
|
transform.scale = Point{ (.5f - process_) * 2, (.5f - process_) * 2 };
|
|
|
|
|
transform.rotation = rotation_ * (.5f - process_) * 2;
|
|
|
|
|
out_scene_->SetTransform(transform);
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (in_scene_)
|
|
|
|
|
{
|
2018-11-12 02:10:35 +08:00
|
|
|
out_layer_prop_.opacity = 0;
|
|
|
|
|
in_layer_prop_.opacity = 1;
|
2018-11-08 21:39:26 +08:00
|
|
|
|
2018-11-14 16:39:24 +08:00
|
|
|
auto transform = in_scene_->GetTransform();
|
|
|
|
|
transform.scale = Point{ (process_ - .5f) * 2, (process_ - .5f) * 2 };
|
|
|
|
|
transform.rotation = rotation_ * (process_ - .5f) * 2;
|
|
|
|
|
|
|
|
|
|
in_scene_->SetTransform(transform);
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RotationTransition::Reset()
|
|
|
|
|
{
|
|
|
|
|
if (out_scene_)
|
|
|
|
|
{
|
2018-11-16 17:19:03 +08:00
|
|
|
out_scene_->SetTransform(Transform{});
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (in_scene_)
|
|
|
|
|
{
|
2018-11-16 17:19:03 +08:00
|
|
|
in_scene_->SetTransform(Transform{});
|
2018-11-08 21:39:26 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|