96 lines
3.6 KiB
C++
96 lines
3.6 KiB
C++
/*
|
|
Copyright 2014 Michele "King_DuckZ" Santullo
|
|
|
|
This file is part of CloonelJump.
|
|
|
|
CloonelJump is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
CloonelJump is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with CloonelJump. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "platform.hpp"
|
|
#include "texture.hpp"
|
|
#include "horzcollisionbar.hpp"
|
|
#include <cassert>
|
|
#include <algorithm>
|
|
|
|
namespace cloonel {
|
|
///--------------------------------------------------------------------------
|
|
///--------------------------------------------------------------------------
|
|
Platform::Platform (SDLMain* parSdlMain, const float2& parPos, Texture* parTexture, const float2& parSize) :
|
|
Placeable(parPos),
|
|
m_screenRatio(parSdlMain, &m_screenRatio),
|
|
m_size(parSize),
|
|
m_collisionTop(new HorzCollisionBar(parPos, parSize.x())),
|
|
m_surface(parTexture)
|
|
#if defined(WITH_DEBUG_VISUALS)
|
|
, m_collisionTopDrawable(parSdlMain, Colour(215, 181, 3), vector_cast<short2>(parPos), vector_cast<short2>(parPos + float2(parSize.x(), 0.0f)))
|
|
#endif
|
|
{
|
|
assert(m_surface);
|
|
}
|
|
|
|
///--------------------------------------------------------------------------
|
|
///--------------------------------------------------------------------------
|
|
Platform::Platform (Platform&& parOther) noexcept :
|
|
Placeable(parOther.GetPos()),
|
|
m_screenRatio(std::move(parOther.m_screenRatio)),
|
|
m_size(parOther.m_size),
|
|
m_collisionTop(std::move(parOther.m_collisionTop)),
|
|
m_surface(parOther.m_surface)
|
|
#if defined(WITH_DEBUG_VISUALS)
|
|
, m_collisionTopDrawable(parOther.m_collisionTopDrawable)
|
|
#endif
|
|
{
|
|
}
|
|
|
|
///--------------------------------------------------------------------------
|
|
///--------------------------------------------------------------------------
|
|
Platform::~Platform() noexcept {
|
|
}
|
|
|
|
///--------------------------------------------------------------------------
|
|
///--------------------------------------------------------------------------
|
|
void Platform::Draw() const {
|
|
m_surface->Render(TopLeft(), m_size, m_screenRatio.Ratio(), true);
|
|
#if defined(WITH_DEBUG_VISUALS)
|
|
m_collisionTopDrawable.Render(m_collisionTop->From(), m_screenRatio.Ratio());
|
|
m_collisionTopDrawable.Render(TopLeft(), m_screenRatio.Ratio());
|
|
#endif
|
|
}
|
|
|
|
///--------------------------------------------------------------------------
|
|
///--------------------------------------------------------------------------
|
|
Platform& Platform::operator= (const Platform& parOther) {
|
|
Drawable::operator= (parOther);
|
|
Placeable::operator= (parOther);
|
|
|
|
m_size = parOther.m_size;
|
|
m_surface = parOther.m_surface;
|
|
#if defined(WITH_DEBUG_VISUALS)
|
|
m_collisionTopDrawable = parOther.m_collisionTopDrawable;
|
|
#endif
|
|
return *this;
|
|
}
|
|
|
|
///--------------------------------------------------------------------------
|
|
///--------------------------------------------------------------------------
|
|
void Platform::OnRegister (Mover& parMover, Mover::PlaceableTicketType parParentTicket) {
|
|
parMover.RegisterPlaceable(m_collisionTop.get(), parParentTicket);
|
|
}
|
|
|
|
///--------------------------------------------------------------------------
|
|
///--------------------------------------------------------------------------
|
|
void Platform::CopyDrawables (std::vector<const Drawable*>& parOut) const {
|
|
parOut.push_back(this);
|
|
}
|
|
} //namespace cloonel
|