mirror of
				https://github.com/edubart/otclient.git
				synced 2025-11-04 12:46:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			117 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			117 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2010-2015 OTClient <https://github.com/edubart/otclient>
 | 
						|
 *
 | 
						|
 * 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 "particle.h"
 | 
						|
#include "graphics.h"
 | 
						|
#include <framework/core/clock.h>
 | 
						|
 | 
						|
Particle::Particle(const Point& pos, const Size& startSize, const Size& finalSize, const PointF& velocity, const PointF& acceleration, float duration, float ignorePhysicsAfter, const std::vector<Color>& colors, const std::vector<float>& colorsStops, Painter::CompositionMode compositionMode, TexturePtr texture)
 | 
						|
{
 | 
						|
    m_colors = colors;
 | 
						|
    m_colorsStops = colorsStops;
 | 
						|
 | 
						|
    m_position = PointF(pos.x, pos.y);
 | 
						|
    m_startSize = startSize;
 | 
						|
    m_finalSize = finalSize;
 | 
						|
    m_velocity = velocity;
 | 
						|
    m_acceleration = acceleration;
 | 
						|
 | 
						|
    m_compositionMode = compositionMode;
 | 
						|
    m_texture = texture;
 | 
						|
    m_duration = duration;
 | 
						|
    m_ignorePhysicsAfter = ignorePhysicsAfter;
 | 
						|
    m_elapsedTime = 0;
 | 
						|
    m_finished = false;
 | 
						|
}
 | 
						|
 | 
						|
void Particle::render()
 | 
						|
{
 | 
						|
    g_painter->setColor(m_color);
 | 
						|
 | 
						|
    if(!m_texture)
 | 
						|
        g_painter->drawFilledRect(m_rect);
 | 
						|
    else {
 | 
						|
        g_painter->setCompositionMode(m_compositionMode);
 | 
						|
        g_painter->drawTexturedRect(m_rect, m_texture);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void Particle::update(float elapsedTime)
 | 
						|
{
 | 
						|
    // check if finished
 | 
						|
    if(m_duration >= 0 && m_elapsedTime >= m_duration) {
 | 
						|
        m_finished = true;
 | 
						|
        return;
 | 
						|
    }
 | 
						|
 | 
						|
    updateColor();
 | 
						|
    updateSize();
 | 
						|
    updatePosition(elapsedTime);
 | 
						|
 | 
						|
    m_elapsedTime += elapsedTime;
 | 
						|
}
 | 
						|
 | 
						|
void Particle::updatePosition(float elapsedTime)
 | 
						|
{
 | 
						|
    if(m_ignorePhysicsAfter < 0 || m_elapsedTime < m_ignorePhysicsAfter ) {
 | 
						|
        // update position
 | 
						|
        PointF delta = m_velocity * elapsedTime;
 | 
						|
        delta.y *= -1; // painter orientate Y axis in the inverse direction
 | 
						|
 | 
						|
        PointF position = m_position + delta;
 | 
						|
 | 
						|
        if(m_position != position) {
 | 
						|
            m_position += delta;
 | 
						|
        }
 | 
						|
 | 
						|
        // update acceleration
 | 
						|
        m_velocity += m_acceleration * elapsedTime;
 | 
						|
    }
 | 
						|
 | 
						|
    m_rect.move((int)m_position.x - m_size.width() / 2, (int)m_position.y - m_size.height() / 2);
 | 
						|
}
 | 
						|
 | 
						|
void Particle::updateSize()
 | 
						|
{
 | 
						|
    m_size = m_startSize + (m_finalSize - m_startSize) / m_duration * m_elapsedTime;
 | 
						|
    m_rect.resize(m_size);
 | 
						|
}
 | 
						|
 | 
						|
void Particle::updateColor()
 | 
						|
{
 | 
						|
    float currentLife = m_elapsedTime / m_duration;
 | 
						|
    if(currentLife < m_colorsStops[1]) {
 | 
						|
        float range = m_colorsStops[1] - m_colorsStops[0];
 | 
						|
        float factor = (currentLife - m_colorsStops[0])/range;
 | 
						|
        m_color = m_colors[0] * (1.0f - factor) + m_colors[1] * factor;
 | 
						|
    } else {
 | 
						|
        if(m_colors.size() > 1) {
 | 
						|
            m_colors.erase(m_colors.begin());
 | 
						|
            m_colorsStops.erase(m_colorsStops.begin());
 | 
						|
        } else {
 | 
						|
            if(m_color != m_colors[0]) {
 | 
						|
                m_color = m_colors[0];
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |