/* TiMidity++ -- MIDI to WAVE converter and player Copyright (C) 1999-2002 Masanao Izumo Copyright (C) 1995 Tuukka Toivonen 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA common.c */ #include #include #include #include #include "m_random.h" #include "common.h" namespace TimidityPlus { /* This'll allocate memory or die. */ void *safe_malloc(size_t count) { auto p = malloc(count); if (p == nullptr) { // I_FatalError("Out of memory"); } return p; } void *safe_large_malloc(size_t count) { return safe_malloc(count); } void *safe_realloc(void *ptr, size_t count) { auto p = realloc(ptr, count); if (p == nullptr) { // I_FatalError("Out of memory"); } return p; } char *safe_strdup(const char *s) { if (s == nullptr) s = ""; auto p = strdup(s); if (p == nullptr) { // I_FatalError("Out of memory"); } return p; } /* free ((void **)ptr_list)[0..count-1] and ptr_list itself */ void free_ptr_list(void *ptr_list, int count) { int i; for (i = 0; i < count; i++) free(((void **)ptr_list)[i]); free(ptr_list); } static int atoi_limited(const char *string, int v_min, int v_max) { int value = atoi(string); if (value <= v_min) value = v_min; else if (value > v_max) value = v_max; return value; } int string_to_7bit_range(const char *string_, int *start, int *end) { const char *string = string_; if (isdigit(*string)) { *start = atoi_limited(string, 0, 127); while (isdigit(*++string)); } else *start = 0; if (*string == '-') { string++; *end = isdigit(*string) ? atoi_limited(string, 0, 127) : 127; if (*start > *end) *end = *start; } else *end = *start; return string != string_; } static FRandom pr_rnd; int int_rand(int n) { return (int)pr_rnd.GenRand_Real1() * n; } double flt_rand() { return (int)pr_rnd.GenRand_Real1(); } struct timidity_file *open_file(const char *name, FSoundFontReader *sfreader) { FileReader fr; FString filename; if (name == nullptr) { fr = sfreader->OpenMainConfigFile(); filename = sfreader->basePath() + "timidity.cfg"; } else { auto res = sfreader->LookupFile(name); fr = std::move(res.first); filename = res.second; } if (!fr.isOpen()) return nullptr; auto tf = new timidity_file; tf->url = std::move(fr); tf->filename = filename.GetChars(); return tf; } /* This closes files opened with open_file */ void tf_close(struct timidity_file *tf) { tf->url.Close(); delete tf; } /* This is meant for skipping a few bytes. */ void skip(struct timidity_file *tf, size_t len) { tf->url.Seek((long)len, FileReader::SeekCur); } char *tf_gets(char *buff, int n, struct timidity_file *tf) { return tf->url.Gets(buff, n); } int tf_getc(struct timidity_file *tf) { unsigned char c; auto read = tf->url.Read(&c, 1); return read == 0 ? EOF : c; } long tf_read(void *buff, int32_t size, int32_t nitems, struct timidity_file *tf) { return (long)tf->url.Read(buff, size * nitems) / size; } long tf_seek(struct timidity_file *tf, long offset, int whence) { return (long)tf->url.Seek(offset, (FileReader::ESeek)whence); } long tf_tell(struct timidity_file *tf) { return (long)tf->url.Tell(); } }