GCC Code Coverage Report
Directory: src/ Exec Total Coverage
File: src/net/eathena/maphandler.cpp Lines: 0 23 0.0 %
Date: 2021-03-17 Branches: 0 24 0.0 %

Line Branch Exec Source
1
/*
2
 *  The ManaPlus Client
3
 *  Copyright (C) 2011-2019  The ManaPlus Developers
4
 *  Copyright (C) 2019-2021  Andrei Karas
5
 *
6
 *  This file is part of The ManaPlus Client.
7
 *
8
 *  This program is free software; you can redistribute it and/or modify
9
 *  it under the terms of the GNU General Public License as published by
10
 *  the Free Software Foundation; either version 2 of the License, or
11
 *  any later version.
12
 *
13
 *  This program is distributed in the hope that it will be useful,
14
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 *  GNU General Public License for more details.
17
 *
18
 *  You should have received a copy of the GNU General Public License
19
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
 */
21
22
#include "net/eathena/maphandler.h"
23
24
#include "net/eathena/messageout.h"
25
#include "net/eathena/protocolout.h"
26
27
#include "debug.h"
28
29
extern int packetVersion;
30
31
namespace EAthena
32
{
33
34
MapHandler::MapHandler() :
35
    Net::MapHandler()
36
{
37
    mapHandler = this;
38
}
39
40
MapHandler::~MapHandler()
41
{
42
    mapHandler = nullptr;
43
}
44
45
void MapHandler::blockPlayCancel() const
46
{
47
    createOutPacket(CMSG_MAP_BLOCK_PLAY_CANCEL);
48
}
49
50
void MapHandler::destroyInstance() const
51
{
52
    createOutPacket(CMSG_INSTANCE_COMMAND);
53
    outMsg.writeInt32(3, "command");
54
}
55
56
void MapHandler::camera(const int action,
57
                        const float range,
58
                        const float rotation,
59
                        const float latitude) const
60
{
61
    if (packetVersion < 20160525)
62
        return;
63
    createOutPacket(CMSG_CAMERA_INFO);
64
    outMsg.writeInt8(action, "action");
65
    outMsg.writeFloat(range, "range");
66
    outMsg.writeFloat(rotation, "rotation");
67
    outMsg.writeFloat(latitude, "latitude");
68
}
69
70
void MapHandler::clientVersion(const int version) const
71
{
72
    if (packetVersion < 20090406)
73
        return;
74
    createOutPacket(CMSG_CLIENT_VERSION);
75
    outMsg.writeInt32(version, "version");
76
}
77
78
}  // namespace EAthena