5 #include "unicode_char.h"
10 ' ',
'A',
'B',
'C',
'D',
'E',
'F',
'G',
'H',
'I',
11 0xb4,
'J',
'K',
'L',
'M',
'N',
'O',
'P',
'Q',
'R',
12 0x2da, 0x2dd,
'S',
'T',
'U',
'V',
'W',
'X',
'Y',
'Z',
13 '0',
'1',
'2',
'3',
'4',
'5',
'6',
'7',
'8',
'9',
14 '.',
',',
'(',
')',
'+',
'-',
'*',
'/',
'=',
'$',
15 '<',
'>',
'@',
';',
':', 0x201a
19 return negative == word.negative && byte1 == word.byte1 &&
20 byte2 == word.byte2 && byte3 == word.byte3 &&
21 byte4 == word.byte4 && byte5 == word.byte5;
25 out << (word.negative ?
'-' :
'+');
26 for (
int i = 1; i <= 5; ++i) {
27 out << ' ' << static_cast<int>(word[i]);
44 uint8_t _byte1, uint8_t _byte2, uint8_t _byte3, uint8_t _byte4, uint8_t _byte5) :
45 negative(_negative), byte1(_byte1), byte2(_byte2), byte3(_byte3), byte4(_byte4), byte5(_byte5) {
49 negative(sign ==
'-'), byte1(_byte1), byte2(_byte2), byte3(_byte3), byte4(_byte4), byte5(_byte5) {
50 if (sign !=
'+' && sign !=
'-') {
51 throw std::runtime_error(
"Invalid sign: " + std::string(1, sign));
56 negative(_negative), byte1(bytes12 / 64), byte2(bytes12 % 64), byte3(_byte3), byte4(_byte4), byte5(_byte5) {
60 negative(sign ==
'-'), byte1(bytes12 / 64), byte2(bytes12 % 64), byte3(_byte3), byte4(_byte4), byte5(_byte5) {
61 if (sign !=
'+' && sign !=
'-') {
62 throw std::runtime_error(
"Invalid sign: " + std::string(1, sign));
68 byte1 = byte2 = byte3 = byte4 = byte5 = 0;
73 result += negative ?
'-' :
'+';
74 for (
int i = 1; i <= 5; ++i) {
76 if ((*
this)[i] < 10) {
79 result += std::to_string(
static_cast<int>((*
this)[i]));
85 if (index <= 0 || index > 5) {
86 throw std::runtime_error(
"Invalid index for a word: " + std::to_string(
index));
93 default:
return byte5;
98 if (index <= 0 || index > 5) {
99 throw std::runtime_error(
"Invalid index for a word: " + std::to_string(
index));
102 case 1:
return byte1;
103 case 2:
return byte2;
104 case 3:
return byte3;
105 case 4:
return byte4;
106 default:
return byte5;
111 int16_t high =
static_cast<int16_t
>(
static_cast<uint8_t
>((*this)[index1]));
112 int16_t low =
static_cast<int16_t
>(
static_cast<uint8_t
>((*this)[index2]));
113 return high * 64 + low;
133 int32_t
value =
static_cast<int32_t
>(byte1 << 24) |
134 static_cast<int32_t
>(byte2 << 18) |
135 static_cast<int32_t
>(byte3 << 12) |
136 static_cast<int32_t
>(byte4 << 6) |
137 static_cast<int32_t
>(byte5);
155 byte1 =
static_cast<uint8_t
>(
address / 64);
156 byte2 =
static_cast<uint8_t
>(
address % 64);
160 this->negative = negative;
161 byte1 =
static_cast<uint8_t
>(
address / 64);
162 byte2 =
static_cast<uint8_t
>(
address % 64);
167 for (
int i = 1; i <= 5; ++i) {
170 chars += unicode::toUTF8(
static_cast<unicode::UChar
>(code));
181 }
else if (
value < 0) {
185 for (
int i = 5; i >= 1; --i) {
186 set(i,
static_cast<uint8_t
>(
value & ((1 << 6) - 1)));
192 auto codes = unicode::fromUTF8(chars);
193 if (codes.size() != 5) {
194 throw std::runtime_error(
"Invalid length of characters for a word: " + chars);
197 for (
int i = 0; i < 5; ++i) {
200 if (
static_cast<uint16_t
>(codes[i]) ==
CHAR_CODES[j]) {
209 if (index <= 0 || index > 5) {
210 throw std::runtime_error(
"Invalid index for a word: " + std::to_string(
index));
213 case 1: byte1 = val;
break;
214 case 2: byte2 = val;
break;
215 case 3: byte3 = val;
break;
216 case 4: byte4 = val;
break;
217 default: byte5 = val;
221 void ComputerWord::set(
bool negative, uint8_t byte1, uint8_t byte2, uint8_t byte3, uint8_t byte4, uint8_t byte5) {
222 this->negative = negative;
230 void ComputerWord::set(
char sign, uint8_t byte1, uint8_t byte2, uint8_t byte3, uint8_t byte4, uint8_t byte5) {
231 if (sign !=
'+' && sign !=
'-') {
232 throw std::runtime_error(
"Invalid sign: " + std::string(1, sign));
234 this->negative = sign ==
'-';
242 void ComputerWord::set(
bool negative, uint16_t bytes12, uint8_t byte3, uint8_t byte4, uint8_t byte5) {
243 this->negative = negative;
244 this->byte1 =
static_cast<uint8_t
>(
bytes12 / 64);
245 this->byte2 =
static_cast<uint8_t
>(
bytes12 % 64);
251 void ComputerWord::set(
char sign, uint16_t bytes12, uint8_t byte3, uint8_t byte4, uint8_t byte5) {
252 if (sign !=
'+' && sign !=
'-') {
253 throw std::runtime_error(
"Invalid sign: " + std::string(1, sign));
255 this->negative = sign ==
'-';
256 this->byte1 =
static_cast<uint8_t
>(
bytes12 / 64);
257 this->byte2 =
static_cast<uint8_t
>(
bytes12 % 64);