mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
125 lines
4.0 KiB
C++
125 lines
4.0 KiB
C++
//
|
|
// FILE: currency.cpp
|
|
// AUTHOR: Rob Tillaart
|
|
// VERSION: 0.1.6
|
|
// PURPOSE: Currency library for Arduino
|
|
// URL: https://github.com/RobTillaart/Currency
|
|
//
|
|
// HISTORY
|
|
// 0.1.0 2021-02-27 initial version
|
|
// 0.1.1 2021-05-27 fix library.properties
|
|
// 0.1.2 2021-10-20 update build-CI + badges
|
|
// added pound, renamed roubles
|
|
// 0.1.3 2021-12-14 update library.json, license, minor edits.
|
|
// 0.1.4 2021-12-14 fix version number for PlatformIO
|
|
// 0.1.5 2021-12-15 improve performance / size
|
|
// 0.1.6 2022-04-15 fix #5 split .h in .h and .cpp
|
|
|
|
|
|
#include "currency.h"
|
|
|
|
|
|
char * currency(int32_t value, int decimals, char decimalSeparator, char thousandSeparator, char symbol)
|
|
{
|
|
static char tmp[16];
|
|
uint8_t index = 0;
|
|
|
|
int32_t v = value;
|
|
bool negative = v < 0;
|
|
if (negative) v = -v;
|
|
|
|
int pos = -decimals; // decimal places
|
|
|
|
while ((pos < 1) || (v > 0))
|
|
{
|
|
// separators
|
|
if ((pos == 0) && (decimals > 0) ) tmp[index++] = decimalSeparator;
|
|
if ((pos > 0) && (pos % 3 == 0) ) tmp[index++] = thousandSeparator;
|
|
pos++;
|
|
|
|
tmp[index++] = (v % 10) + '0';
|
|
v /= 10;
|
|
}
|
|
if (negative) tmp[index++] = '-';
|
|
else tmp[index++] = ' ';
|
|
tmp[index++] = symbol;
|
|
tmp[index] = '\0';
|
|
|
|
// reverse string
|
|
for (uint8_t i = 0, j = index - 1; i < index / 2; i++, j--)
|
|
{
|
|
char c = tmp[i];
|
|
tmp[i] = tmp[j];
|
|
tmp[j] = c;
|
|
}
|
|
return tmp;
|
|
}
|
|
|
|
|
|
char * currency64(int64_t value, int decimals, char decimalSeparator, char thousandSeparator, char symbol)
|
|
{
|
|
static char tmp[32];
|
|
int index = 0;
|
|
|
|
int64_t v = value;
|
|
bool negative = v < 0;
|
|
if (negative) v = -v;
|
|
|
|
int pos = -decimals; // decimal places
|
|
|
|
while ((pos < 1) || (v > 0))
|
|
{
|
|
// separators
|
|
if ((pos == 0) && (decimals > 0) ) tmp[index++] = decimalSeparator;
|
|
if ((pos > 0) && (pos % 3 == 0) ) tmp[index++] = thousandSeparator;
|
|
pos++;
|
|
|
|
tmp[index++] = (v % 10) + '0';
|
|
v /= 10;
|
|
}
|
|
if (negative) tmp[index++] = '-';
|
|
else tmp[index++] = ' ';
|
|
tmp[index++] = symbol;
|
|
tmp[index] = '\0';
|
|
|
|
// reverse string
|
|
for (uint8_t i = 0, j = index - 1; i < index / 2; i++, j--)
|
|
{
|
|
char c = tmp[i];
|
|
tmp[i] = tmp[j];
|
|
tmp[j] = c;
|
|
}
|
|
return tmp;
|
|
}
|
|
|
|
|
|
//
|
|
// DERIVED FUNCTIONS
|
|
//
|
|
char * bitcoin(int32_t value) { return currency(value, 6, '.', ',', 'B'); }
|
|
char * dollar(int32_t value) { return currency(value, 2, '.', ',', '$'); }
|
|
char * euro(int32_t value) { return currency(value, 2, ',', '.', 'E'); }
|
|
char * pound(int32_t value) { return currency(value, 2, ',', '.', 'L'); }
|
|
char * roubles(int32_t value) { return currency(value, 2, ',', '.', 'P'); }
|
|
char * yen(int32_t value) { return currency(value, 2, '.', ',', 'Y'); }
|
|
char * yuan(int32_t value) { return currency(value, 2, '.', ',', 'R'); }
|
|
|
|
char * bitcoin64(int64_t value) { return currency64(value, 6, '.', ',', 'B'); }
|
|
char * dollar64(int64_t value) { return currency64(value, 2, '.', ',', '$'); }
|
|
char * euro64(int64_t value) { return currency64(value, 2, ',', '.', 'E'); }
|
|
char * pound64(int64_t value) { return currency64(value, 2, ',', '.', 'L'); }
|
|
char * roubles64(int64_t value) { return currency64(value, 2, ',', '.', 'P'); }
|
|
char * yen64(int64_t value) { return currency64(value, 2, '.', ',', 'Y'); }
|
|
char * yuan64(int64_t value) { return currency64(value, 2, '.', ',', 'R'); }
|
|
|
|
char * bitcoinf(double value) { return currency64(round(value * 1000000), 6, '.', ',', 'B'); }
|
|
char * dollarf(double value) { return currency64(round(value * 100), 2, '.', ',', '$'); }
|
|
char * eurof(double value) { return currency64(round(value * 100), 2, ',', '.', 'E'); }
|
|
char * poundf(double value) { return currency64(round(value * 100), 2, ',', '.', 'L'); }
|
|
char * roublesf(double value) { return currency64(round(value * 100), 2, ',', '.', 'P'); }
|
|
char * yenf(double value) { return currency64(round(value * 100), 2, '.', ',', 'Y'); }
|
|
char * yuanf(double value) { return currency64(round(value * 100), 2, '.', ',', 'R'); }
|
|
|
|
|
|
// -- END OF FILE --
|