Compare commits
No commits in common. "8a47f3be5d8d097fa8f552faa21606f2ac58b2c3" and "6db258f59fcb267e3f146df7cbeab2da7c3b6cf7" have entirely different histories.
8a47f3be5d
...
6db258f59f
3 changed files with 15 additions and 42 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,4 +5,3 @@ compile_commands.commands.json
|
|||
compile_commands.json
|
||||
.clangd/
|
||||
.cache/
|
||||
/objects/
|
||||
|
|
25
Makefile
25
Makefile
|
@ -1,34 +1,17 @@
|
|||
COMMON_CXXFLAGS = -Wall -Wextra -Wpedantic -std=c++20 \
|
||||
-Wformat -Wformat=2 -Wconversion -Wimplicit-fallthrough \
|
||||
-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 \
|
||||
-D_GLIBCXX_ASSERTIONS \
|
||||
-fstrict-flex-arrays=3 \
|
||||
-fstack-clash-protection -fstack-protector-strong \
|
||||
-Wl,-z,nodlopen -Wl,-z,noexecstack \
|
||||
-Wl,-z,relro -Wl,-z,now
|
||||
COMMON_CXXFLAGS = -Wall -Wextra -Wpedantic -std=c++20
|
||||
ifdef DEBUG
|
||||
CXXFLAGS = -Og -g ${COMMON_CXXFLAGS}
|
||||
else
|
||||
CXXFLAGS = -O2 ${COMMON_CXXFLAGS}
|
||||
CXXFLAGS = -O3 ${COMMON_CXXFLAGS}
|
||||
endif
|
||||
|
||||
OBJDIR = objects
|
||||
|
||||
SOURCES = src/main.cpp
|
||||
|
||||
OBJECTS = $(addprefix ${OBJDIR}/,$(patsubst %.cpp,%.cpp.o,${SOURCES}))
|
||||
|
||||
all: KoreanNumbers
|
||||
|
||||
KoreanNumbers: ${OBJECTS}
|
||||
KoreanNumbers: src/main.o
|
||||
$(CXX) $(CXXFLAGS) -o KoreanNumbers $^
|
||||
|
||||
${OBJDIR}/%.cpp.o: %.cpp
|
||||
@mkdir -p $(dir $@)
|
||||
$(CXX) $(CXXFLAGS) -c -o $@ $<
|
||||
|
||||
.PHONY:
|
||||
|
||||
clean:
|
||||
rm -f KoreanNumbers
|
||||
rm -rf ${OBJDIR}
|
||||
rm -f src/*.o
|
||||
|
|
31
src/main.cpp
31
src/main.cpp
|
@ -3,6 +3,7 @@
|
|||
#include <cstdlib>
|
||||
#include <random>
|
||||
#include <chrono>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
#include <algorithm>
|
||||
|
@ -59,7 +60,7 @@ void help() {
|
|||
puts(" [-l | --list] - list \"base\" numbers (can combine with --alt)");
|
||||
}
|
||||
|
||||
const char8_t* digit_to_kword(unsigned long long n) {
|
||||
const char8_t* digit_to_kword(int n) {
|
||||
switch(n) {
|
||||
case 9:
|
||||
return gu;
|
||||
|
@ -88,10 +89,6 @@ std::u8string value_to_korean(unsigned long long value) {
|
|||
std::u8string s;
|
||||
|
||||
unsigned long long temp;
|
||||
|
||||
bool requires_uc = false;
|
||||
bool requires_man = false;
|
||||
|
||||
if(temp = (value / 1000000000000) % 10; temp > 0) {
|
||||
if(!s.empty()) { s.push_back(' '); }
|
||||
if(temp != 1) { s.append(digit_to_kword(temp)); }
|
||||
|
@ -101,52 +98,46 @@ std::u8string value_to_korean(unsigned long long value) {
|
|||
if(!s.empty()) { s.push_back(' '); }
|
||||
if(temp != 1) { s.append(digit_to_kword(temp)); }
|
||||
s.append(chun);
|
||||
requires_uc = true;
|
||||
}
|
||||
if(temp = (value / 10000000000) % 10; temp > 0) {
|
||||
if(!s.empty()) { s.push_back(' '); }
|
||||
if(temp != 1) { s.append(digit_to_kword(temp)); }
|
||||
s.append(bec);
|
||||
requires_uc = true;
|
||||
}
|
||||
if(temp = (value / 1000000000) % 10; temp > 0) {
|
||||
if(!s.empty()) { s.push_back(' '); }
|
||||
if(temp != 1) { s.append(digit_to_kword(temp)); }
|
||||
s.append(ship);
|
||||
requires_uc = true;
|
||||
}
|
||||
if(temp = (value / 100000000) % 10; temp > 0) {
|
||||
if(!s.empty()) { s.push_back(' '); }
|
||||
if (temp > 0) { s.append(digit_to_kword(temp)); }
|
||||
if(temp != 1) { s.append(digit_to_kword(temp)); }
|
||||
s.append(uc);
|
||||
} else if (requires_uc) {
|
||||
s.push_back(' ');
|
||||
} else if(!s.empty()) {
|
||||
if(!s.empty()) { s.push_back(' '); }
|
||||
s.append(il);
|
||||
s.append(uc);
|
||||
}
|
||||
if(temp = (value / 10000000) % 10; temp > 0) {
|
||||
if(!s.empty()) { s.push_back(' '); }
|
||||
if(temp != 1) { s.append(digit_to_kword(temp)); }
|
||||
s.append(chun);
|
||||
requires_man = true;
|
||||
}
|
||||
if(temp = (value / 1000000) % 10; temp > 0) {
|
||||
if(!s.empty()) { s.push_back(' '); }
|
||||
if(temp != 1) { s.append(digit_to_kword(temp)); }
|
||||
s.append(bec);
|
||||
requires_man = true;
|
||||
}
|
||||
if(temp = (value / 100000) % 10; temp > 0) {
|
||||
if(!s.empty()) { s.push_back(' '); }
|
||||
if(temp != 1) { s.append(digit_to_kword(temp)); }
|
||||
s.append(ship);
|
||||
requires_man = true;
|
||||
}
|
||||
if(temp = (value / 10000) % 10; temp > 0) {
|
||||
if(!s.empty()) { s.push_back(' '); }
|
||||
if(temp != 1) { s.append(digit_to_kword(temp)); }
|
||||
s.append(man);
|
||||
} else if (requires_man) {
|
||||
s.push_back(' ');
|
||||
} else if(!s.empty()) {
|
||||
s.append(man);
|
||||
}
|
||||
if(temp = (value / 1000) % 10; temp > 0) {
|
||||
|
@ -261,7 +252,7 @@ void printValue(unsigned long long value) {
|
|||
unsigned char count = 0;
|
||||
while(temp > 0) {
|
||||
++count;
|
||||
s.push_back('0' + (char)(temp % 10));
|
||||
s.push_back('0' + temp % 10);
|
||||
temp /= 10;
|
||||
if(count == 3 && temp > 0) {
|
||||
s.push_back(',');
|
||||
|
@ -289,13 +280,13 @@ unsigned long long clamp_digits(unsigned int digits, unsigned long long value) {
|
|||
}
|
||||
|
||||
std::ostream& operator<<(std::ostream &os, const std::u8string &str) {
|
||||
os.write(reinterpret_cast<const char*>(str.data()), (long)str.size());
|
||||
os.write(reinterpret_cast<const char*>(str.data()), str.size());
|
||||
return os;
|
||||
}
|
||||
|
||||
std::ostream& operator<<(std::ostream &os, const char8_t *str8) {
|
||||
const char *cstr = reinterpret_cast<const char*>(str8);
|
||||
os.write(cstr, (long)strlen(cstr));
|
||||
os.write(cstr, strlen(cstr));
|
||||
return os;
|
||||
}
|
||||
|
||||
|
@ -410,7 +401,7 @@ int main(int argc, char **argv) {
|
|||
|
||||
unsigned long long value;
|
||||
{
|
||||
std::default_random_engine r_eng((unsigned long)std::chrono::steady_clock::now().time_since_epoch().count());
|
||||
std::default_random_engine r_eng(std::chrono::steady_clock::now().time_since_epoch().count());
|
||||
if(!isAlt && randomizeDigits) {
|
||||
unsigned int min_digits = 0;
|
||||
for (unsigned long long min_copy = min; min_copy > 0; min_copy /= 10) {
|
||||
|
|
Loading…
Reference in a new issue