Skip to content
Snippets Groups Projects
Commit b6738391 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

A C++ header-only library for dealing with Pascal data types

(e.g. those stored in files, e.g. EXITINFO.BBS).
parent 1ede0574
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
/* Library to deal with legacy Pascal (e.g. Borland Turbo Pascal) data types */
/****************************************************************************
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* See the GNU Lesser General Public License for more details: lgpl.txt or *
* https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html *
* *
* For Synchronet coding style and modification guidelines, see *
* http://www.synchro.net/source.html *
* *
* Note: If this box doesn't appear square, then you need to fix your tabs. *
****************************************************************************/
#include <climits>
#include <cstdint>
#include "gen_defs.h"
#include "xpendian.h"
namespace Pascal {
template <size_t size>
class String {
static_assert(size <= UCHAR_MAX, "PascalString size cannot be > 255");
uint8_t buf[size + 1]{};
public:
size_t len() {
return buf[0];
}
void operator = (const char* s) {
memset(buf, 0, size);
buf[0] = (uint8_t)min(size, strlen(s));
memcpy(buf + 1, s, len());
}
};
// Boolean is an 8-bit integer with only 2 possible values: TRUE and FALSE
class Boolean {
int8_t value{};
public:
void operator = (int nval) {
// Insure only TRUE or FALSE are stored in Booleans
value = INT_TO_BOOL(nval);
}
int8_t operator = (const Boolean&) {
return value;
}
};
// All multi-byte integer data types are all implicitly little-endian (x86),
// so provide automatic byte-swap (on big-endian systems) during assignment operations.
template <typename T>
class LittleEndianInteger {
T value{};
public:
void operator = (T nval) {
value = LE_INT(nval);
}
T operator = (const LittleEndianInteger&) {
return LE_INT(value);
}
};
using Integer = LittleEndianInteger<int16_t>; // Integer is a 16-bit signed integer
using Word = LittleEndianInteger<uint16_t>; // Word is a 16-bit unsigned integer
using LongInt = LittleEndianInteger<int32_t>; // LongInt is a 32-bit signed integer
using LongWord = LittleEndianInteger<uint32_t>; // LongWord is a 32-bit unsigned integer
using Byte = uint8_t; // Byte is an 8-bit unsigned integer
using Char = char; // Char is an 8-bit char
} // namespace Pascal
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment