summaryrefslogtreecommitdiff
path: root/src/net/manaserv/effecthandler.cpp
blob: 22d1f9cf12fbfa07db42d3c287811add41b4b339 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
 *  The Mana Client
 *  Copyright (C) 2004-2009  The Mana World Development Team
 *  Copyright (C) 2009-2012  The Mana Developers
 *
 *  This file is part of The Mana Client.
 *
 *  This program 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 2 of the License, or
 *  any later version.
 *
 *  This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "net/manaserv/effecthandler.h"

#include "actorspritemanager.h"
#include "effectmanager.h"
#include "localplayer.h"
#include "log.h"

#include "gui/viewport.h"

#include "net/manaserv/manaserv_protocol.h"
#include "net/manaserv/messagein.h"

namespace ManaServ {

EffectHandler::EffectHandler()
{
    static const uint16_t _messages[] = {
        GPMSG_CREATE_EFFECT_POS,
        GPMSG_CREATE_EFFECT_BEING,
        GPMSG_CREATE_TEXT_PARTICLE,
        GPMSG_SHAKE,
        0
    };
    handledMessages = _messages;
}

void EffectHandler::handleMessage(MessageIn &msg)
{
    switch (msg.getId())
    {
        case GPMSG_CREATE_EFFECT_POS:
            handleCreateEffectPos(msg);
            break;
        case GPMSG_CREATE_EFFECT_BEING:
            handleCreateEffectBeing(msg);
            break;
        case GPMSG_CREATE_TEXT_PARTICLE:
            handleCreateTextParticle(msg);
            break;
        case GPMSG_SHAKE:
            handleShake(msg);
            break;
        default:
            break;
    }
}

void EffectHandler::handleCreateEffectPos(MessageIn &msg)
{
    int id = msg.readInt16();
    uint16_t x = msg.readInt16();
    uint16_t y = msg.readInt16();
    effectManager->trigger(id, x, y);
}

void EffectHandler::handleCreateEffectBeing(MessageIn &msg)
{
    int eid = msg.readInt16();
    int bid = msg.readInt16();
    Being* b = actorSpriteManager->findBeing(bid);
    if (b)
        effectManager->trigger(eid, b);
    else
        logger->log("Warning: CreateEffect called for unknown being #%d", bid);
}

void EffectHandler::handleCreateTextParticle(MessageIn &msg)
{
    const std::string &text = msg.readString();
    if (local_player)
        local_player->addMessageToQueue(text);
}

void EffectHandler::handleShake(MessageIn &msg)
{
    int16_t intensityX = 0;
    int16_t intensityY = 0;
    float decay;
    int duration;

    switch (msg.getUnreadLength())
    {
        case 4:
            intensityX =  msg.readInt16();
            intensityY =  msg.readInt16();
            viewport->shakeScreen(intensityX, intensityY);
            break;
        case 6:
            intensityX =  msg.readInt16();
            intensityY =  msg.readInt16();
            decay =  msg.readInt16() / 10000.0f;
            viewport->shakeScreen(intensityX, intensityY, decay);
            break;
        case 8:
            intensityX =  msg.readInt16();
            intensityY =  msg.readInt16();
            decay =  msg.readInt16() / 10000.0f;
            duration =  msg.readInt16();
            viewport->shakeScreen(intensityX, intensityY, decay, duration);
            break;
        default:
            logger->log("Warning: Received GPMSG_SHAKE message with unexpected length of %d bytes", msg.getUnreadLength());
    }
}

} // namespace ManaServ