2022-02-15 03:12:20 +00:00
|
|
|
/**
|
|
|
|
* Furnace Tracker - multi-system chiptune tracker
|
2023-01-20 00:18:40 +00:00
|
|
|
* Copyright (C) 2021-2023 tildearrow and contributors
|
2022-02-15 03:12:20 +00:00
|
|
|
*
|
|
|
|
* 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 2 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, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2021-05-11 20:08:08 +00:00
|
|
|
#ifndef _TA_UTILS_H
|
|
|
|
#define _TA_UTILS_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <string>
|
|
|
|
|
2022-01-17 22:44:17 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <BaseTsd.h>
|
|
|
|
typedef SSIZE_T ssize_t;
|
|
|
|
#endif
|
|
|
|
|
2022-02-01 08:20:15 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define DIR_SEPARATOR '\\'
|
2022-03-02 05:02:52 +00:00
|
|
|
#define DIR_SEPARATOR_STR "\\"
|
2022-02-01 08:20:15 +00:00
|
|
|
#else
|
|
|
|
#define DIR_SEPARATOR '/'
|
2022-03-02 05:02:52 +00:00
|
|
|
#define DIR_SEPARATOR_STR "/"
|
2022-02-01 08:20:15 +00:00
|
|
|
#endif
|
|
|
|
|
2021-05-11 20:08:08 +00:00
|
|
|
typedef std::string String;
|
|
|
|
|
2021-05-18 00:18:59 +00:00
|
|
|
#define MIN(a,b) (((a)<(b))?(a):(b))
|
|
|
|
#define MAX(a,b) (((a)>(b))?(a):(b))
|
2022-06-01 21:35:39 +00:00
|
|
|
#define CLAMP(x,xMin,xMax) (MIN(MAX((x),(xMin)),(xMax)))
|
2021-05-17 20:36:14 +00:00
|
|
|
|
2021-12-16 20:51:19 +00:00
|
|
|
typedef std::wstring WString;
|
2021-05-28 20:25:55 +00:00
|
|
|
|
2022-04-25 20:54:31 +00:00
|
|
|
enum TAParamResult {
|
|
|
|
TA_PARAM_ERROR=0,
|
|
|
|
TA_PARAM_SUCCESS,
|
|
|
|
TA_PARAM_QUIT
|
|
|
|
};
|
|
|
|
|
2021-06-09 08:33:03 +00:00
|
|
|
struct TAParam {
|
|
|
|
String shortName;
|
|
|
|
String name;
|
|
|
|
String valName;
|
|
|
|
String desc;
|
|
|
|
bool value;
|
2022-04-25 20:54:31 +00:00
|
|
|
TAParamResult (*func)(String);
|
|
|
|
TAParam(const String& sn, const String& n, bool v, TAParamResult (*f)(String), const String& vn, const String& d):
|
2021-06-09 08:33:03 +00:00
|
|
|
shortName(sn),
|
|
|
|
name(n),
|
|
|
|
valName(vn),
|
|
|
|
desc(d),
|
|
|
|
value(v),
|
|
|
|
func(f) {}
|
|
|
|
};
|
|
|
|
|
2023-04-04 20:27:36 +00:00
|
|
|
void reportError(String what);
|
|
|
|
|
2021-05-17 20:36:14 +00:00
|
|
|
#endif
|