mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 13:55:38 +00:00
9ffce8b92a
Making changes to a header file should no longer force the entire project to recompile.
69 lines
2.2 KiB
C++
69 lines
2.2 KiB
C++
/**
|
|
** Supermodel
|
|
** A Sega Model 3 Arcade Emulator.
|
|
** Copyright 2011 Bart Trzynadlowski, Nik Henson
|
|
**
|
|
** This file is part of Supermodel.
|
|
**
|
|
** Supermodel 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.
|
|
**
|
|
** Supermodel 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 Supermodel. If not, see <http://www.gnu.org/licenses/>.
|
|
**/
|
|
|
|
/*
|
|
* Error.cpp
|
|
*
|
|
* Error reporting for 3D renderer. There are some situations in which it is
|
|
* appropriate to inform the user of an error during rendering. However, these
|
|
* will frequently lead to an avalanche of error messages. Therefore, error
|
|
* messages are managed by this interface, ensuring that they are displayed not
|
|
* more than once per frame.
|
|
*
|
|
* Error functions can always be counted on to return FAIL, like ErrorLog().
|
|
*/
|
|
|
|
#include "Supermodel.h"
|
|
#include "Legacy3D.h"
|
|
|
|
namespace Legacy3D {
|
|
|
|
// Error bit flags (must not conflict)
|
|
#define ERROR_LOCAL_VERTEX_OVERFLOW 0x1
|
|
#define ERROR_UNABLE_TO_CACHE_MODEL 0x2
|
|
|
|
|
|
// Overflow in the local vertex buffer, which holds one model
|
|
bool CLegacy3D::ErrorLocalVertexOverflow(void)
|
|
{
|
|
if ((errorMsgFlags&ERROR_LOCAL_VERTEX_OVERFLOW))
|
|
return FAIL;
|
|
errorMsgFlags |= ERROR_LOCAL_VERTEX_OVERFLOW;
|
|
return ErrorLog("Overflow in local vertex buffer!");
|
|
}
|
|
|
|
// Model could not be cached, even after dumping display list and re-caching
|
|
bool CLegacy3D::ErrorUnableToCacheModel(UINT32 modelAddr)
|
|
{
|
|
if ((errorMsgFlags&ERROR_UNABLE_TO_CACHE_MODEL))
|
|
return FAIL;
|
|
errorMsgFlags |= ERROR_UNABLE_TO_CACHE_MODEL;
|
|
return ErrorLog("Encountered a model that was too large to cache (at %08X)!", modelAddr);
|
|
}
|
|
|
|
// Call this every frame to clear the error flag, allowing errors to be printed
|
|
void CLegacy3D::ClearErrors(void)
|
|
{
|
|
errorMsgFlags = 0;
|
|
}
|
|
|
|
} // Legacy3D
|