Files
scummvm/engines/ags/shared/script/cc_error.cpp
T

67 lines
2.0 KiB
C++

/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* 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.
*
*/
#include <stdio.h>
#include <utility>
#include "script/script_common.h" // current_line
#include "util/string.h"
using namespace AGS::Common;
// Returns full script error message and callstack (if possible)
extern std::pair<String, String> cc_error_at_line(const char *error_msg);
// Returns script error message without location or callstack
extern String cc_error_without_line(const char *error_msg);
int ccError = 0;
int ccErrorLine = 0;
String ccErrorString;
String ccErrorCallStack;
bool ccErrorIsUserError = false;
const char *ccCurScriptName = "";
void cc_error(const char *descr, ...) {
ccErrorIsUserError = false;
if (descr[0] == '!') {
ccErrorIsUserError = true;
descr++;
}
va_list ap;
va_start(ap, descr);
String displbuf = String::FromFormatV(descr, ap);
va_end(ap);
if (currentline > 0) {
// [IKM] Implementation is project-specific
std::pair<String, String> errinfo = cc_error_at_line(displbuf);
ccErrorString = errinfo.first;
ccErrorCallStack = errinfo.second;
} else {
ccErrorString = cc_error_without_line(displbuf);
ccErrorCallStack = "";
}
ccError = 1;
ccErrorLine = currentline;
}