Descent3/sndlib/ssl_lib.cpp

82 lines
2.0 KiB
C++
Raw Permalink Normal View History

/*
* Descent 3
* Copyright (C) 2024 Parallax Software
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
--- HISTORICAL COMMENTS FOLLOW ---
2024-04-16 03:43:29 +00:00
* $Source: $
* $Revision: 3 $
* $Author: Chris $
* $Date: 10/08/99 4:28p $
*
* This takes care of any code not exclusive to Win32 Ds3dlib.cpp but part of library
*
* $Log: /DescentIII/Main/dd_sndlib/ssl_lib.cpp $
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 3 10/08/99 4:28p Chris
* Added the forcefield and glass breaking override options
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 2 4/06/99 8:29p Samir
* added error check system.
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 1 4/06/99 8:16p Samir
* Initial rev.
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
*/
2024-04-27 19:30:57 +00:00
#include <cstdarg>
#include <cstdio>
#include <cstring>
2024-04-27 19:30:57 +00:00
2024-04-16 03:43:29 +00:00
#include "ssl_lib.h"
2024-04-16 18:56:40 +00:00
llsSystem::llsSystem() {
m_lib_error_code = SSL_OK;
m_geometry = NULL;
2024-04-16 03:43:29 +00:00
}
2024-04-16 18:56:40 +00:00
void llsSystem::CheckForErrors() {
// if a fatal error occurred, quit and display an error
// non fatal errors should be put inside a logfile, or just mprinted out.
2024-04-16 03:43:29 +00:00
2024-04-16 18:56:40 +00:00
strcpy(m_error_text, "Internal Sound Error: ");
m_lib_error_code = SSL_OK;
2024-04-16 03:43:29 +00:00
}
void llsSystem::ErrorText(const char *fmt, ...) {
2024-04-27 19:30:57 +00:00
std::va_list arglist;
2024-04-16 18:56:40 +00:00
char buf[128];
int len, slen;
2024-04-16 03:43:29 +00:00
2024-04-16 18:56:40 +00:00
slen = strlen(m_error_text);
2024-04-16 03:43:29 +00:00
2024-04-16 18:56:40 +00:00
if ((slen + 2) > sizeof(m_error_text)) {
return;
}
2024-04-16 03:43:29 +00:00
2024-04-16 18:56:40 +00:00
strcat(m_error_text, "\n");
va_start(arglist, fmt);
2024-04-27 19:30:57 +00:00
len = std::vsnprintf(buf, 128, fmt, arglist);
2024-04-16 18:56:40 +00:00
va_end(arglist);
if (len < 0)
return;
2024-04-16 03:43:29 +00:00
2024-04-16 18:56:40 +00:00
if ((slen + strlen(buf) + 1) > sizeof(m_error_text)) {
return;
}
strcat(m_error_text, buf);
2024-04-27 19:30:57 +00:00
}