summaryrefslogblamecommitdiff
path: root/src/mmo/version.hpp
blob: 598bfd98da47ba6f4b830056a8a88058469bacce (plain) (tree)
1
            




















                                                                           
                  
 
                  
 


              
                                
                                   
 



                                   
 
                                                                                  
                                      



                                                               




                                                                            
 
                                                                         










                                




























                                                                       
  
                                                                                   
 

                               


                                            
 
                                      
 
                                              




                                   
                   
#pragma once
//    version.hpp - Prevent mass rebuild when conf/version.hpp changes.
//
//    Copyright © ????-2004 Athena Dev Teams
//    Copyright © 2004-2011 The Mana World Development Team
//    Copyright © 2011-2014 Ben Longbons <b.r.longbons@gmail.com>
//
//    This file is part of The Mana World (Athena server)
//
//    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 3 of the License, or
//    (at your option) 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 "fwd.hpp"

#include <cstdint>


namespace tmwa
{
// TODO make these bitwise enums
#define TMWA_FLAG_REGISTRATION 0x01

#define TMWA_SERVER_LOGIN      0x01
#define TMWA_SERVER_CHAR       0x02
#define TMWA_SERVER_INTER      0x04
#define TMWA_SERVER_MAP        0x08

// increase the min version when the protocol is incompatible with old m+ versions
// 1 = latest mana, old manaplus, bots
// 2 = manaplus 1.5.5.9 to manaplus 1.5.5.23
// 3 = manaplus 1.5.5.23 to manaplus 1.5.8.15
// 4 = manaplus 1.5.8.15 to manaplus 1.6.3.15
// 5 = manaplus 1.6.3.15 to 1.6.4.23 (adds SMSG_SCRIPT_MESSAGE)
// 6 = manaplus 1.6.4.23 to 1.6.5.7 (adds a filter to block remote commands)
// 7 = manaplus 1.6.5.7 to 1.8.9.1 (adds SMSG_MAP_SET_TILES_TYPE)
// 8 = manaplus 1.8.9.1 to ... (adds support for GM groups)
// 9 = manaplus ... to (adds support for player HP)
#define MIN_CLIENT_VERSION 6

// TODO now that I generate the protocol, split 'flags' out of the struct
struct Version
{
    uint8_t major;
    uint8_t minor; // flavor1
    uint8_t patch; // flavor2
    uint8_t devel; // flavor3

    uint8_t flags;
    uint8_t which;
    uint16_t vend;
    // can't add vendor name yet

    constexpr friend
    bool operator < (Version l, Version r)
    {
        return (l.major < r.major
                || (l.major == r.major
                    && (l.minor < r.minor
                        || (l.minor == r.minor
                            && (l.patch < r.patch
                                || (l.patch == r.patch
                                    && (l.devel < r.devel
                                        || (l.devel == r.devel
                                            && l.vend < r.vend))))))));
    }
    constexpr friend
    bool operator > (Version l, Version r)
    {
        return r < l;
    }
    constexpr friend
    bool operator <= (Version l, Version r)
    {
        return !(r < l);
    }
    constexpr friend
    bool operator >= (Version l, Version r)
    {
        return !(l < r);
    }
};
static_assert(sizeof(Version) == 8, "this is sent over the network, can't change");

extern Version CURRENT_VERSION;

extern Version CURRENT_LOGIN_SERVER_VERSION;
extern Version CURRENT_CHAR_SERVER_VERSION;
extern Version CURRENT_MAP_SERVER_VERSION;

extern LString CURRENT_VERSION_STRING;

bool impl_extract(XString str, Version *vers);

extern LString VERSION_INFO_HEADER;
extern LString VERSION_INFO_COMMIT;
extern LString VERSION_INFO_NUMBER;
extern LString VERSION_INFO_URL;
} // namespace tmwa