mirror of
https://github.com/electronicarts/CnC_Renegade.git
synced 2025-12-16 15:41:39 -05:00
Initial commit of Command & Conquer Renegade source code.
This commit is contained in:
171
Code/Tools/max2w3d/exportlog.cpp
Normal file
171
Code/Tools/max2w3d/exportlog.cpp
Normal file
@@ -0,0 +1,171 @@
|
||||
/*
|
||||
** Command & Conquer Renegade(tm)
|
||||
** Copyright 2025 Electronic Arts Inc.
|
||||
**
|
||||
** 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/>.
|
||||
*/
|
||||
|
||||
/***********************************************************************************************
|
||||
*** C O N F I D E N T I A L --- W E S T W O O D S T U D I O S ***
|
||||
***********************************************************************************************
|
||||
* *
|
||||
* Project Name : Max2W3d *
|
||||
* *
|
||||
* $Archive:: /Commando/Code/Tools/max2w3d/exportlog.cpp $*
|
||||
* *
|
||||
* Original Author:: Greg Hjelstrom *
|
||||
* *
|
||||
* $Author:: Greg_h $*
|
||||
* *
|
||||
* $Modtime:: 11/07/00 3:16p $*
|
||||
* *
|
||||
* $Revision:: 3 $*
|
||||
* *
|
||||
*---------------------------------------------------------------------------------------------*
|
||||
* Functions: *
|
||||
* ExportLog::Init -- Initialize the export logging system *
|
||||
* ExportLog::Shutdown -- Shutdown the export logging system *
|
||||
* ExportLog::printf -- Print a string to the log window *
|
||||
* ExportLog::rprintf -- Print a string over the last line printed *
|
||||
* ExportLog::updatebar -- Set the position of the progress bar *
|
||||
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
|
||||
|
||||
#include "exportlog.h"
|
||||
#include "logdlg.h"
|
||||
#include <assert.h>
|
||||
|
||||
|
||||
/*
|
||||
** Static variables
|
||||
*/
|
||||
LogDataDialogClass * _LogDialog = NULL;
|
||||
|
||||
|
||||
/*
|
||||
**
|
||||
** ExportLog implementation. Note, this is a class which only contains static functions.
|
||||
**
|
||||
*/
|
||||
|
||||
|
||||
/***********************************************************************************************
|
||||
* ExportLog::Init -- Initialize the export logging system *
|
||||
* *
|
||||
* INPUT: *
|
||||
* *
|
||||
* OUTPUT: *
|
||||
* *
|
||||
* WARNINGS: *
|
||||
* *
|
||||
* HISTORY: *
|
||||
* 10/30/2000 gth : Created. *
|
||||
*=============================================================================================*/
|
||||
void ExportLog::Init(HWND parent)
|
||||
{
|
||||
assert(_LogDialog == NULL);
|
||||
_LogDialog = new LogDataDialogClass(parent);
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************************************
|
||||
* ExportLog::Shutdown -- Shutdown the export logging system *
|
||||
* *
|
||||
* INPUT: *
|
||||
* wait_for_ok - should we wait for the user to press OK on the dialog? *
|
||||
* *
|
||||
* OUTPUT: *
|
||||
* *
|
||||
* WARNINGS: *
|
||||
* *
|
||||
* HISTORY: *
|
||||
* 10/30/2000 gth : Created. *
|
||||
*=============================================================================================*/
|
||||
void ExportLog::Shutdown(bool wait_for_ok)
|
||||
{
|
||||
if (_LogDialog != NULL) {
|
||||
|
||||
if (wait_for_ok) {
|
||||
_LogDialog->Wait_OK();
|
||||
}
|
||||
|
||||
delete _LogDialog;
|
||||
_LogDialog = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************************************
|
||||
* ExportLog::printf -- Print a string to the log window *
|
||||
* *
|
||||
* INPUT: *
|
||||
* *
|
||||
* OUTPUT: *
|
||||
* *
|
||||
* WARNINGS: *
|
||||
* *
|
||||
* HISTORY: *
|
||||
* 10/30/2000 gth : Created. *
|
||||
*=============================================================================================*/
|
||||
void ExportLog::printf(char * format, ...)
|
||||
{
|
||||
if (_LogDialog != NULL) {
|
||||
va_list arguments;
|
||||
va_start(arguments, format);
|
||||
_LogDialog->printf(format,arguments);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************************************
|
||||
* ExportLog::rprintf -- Print a string over the last line printed *
|
||||
* *
|
||||
* INPUT: *
|
||||
* *
|
||||
* OUTPUT: *
|
||||
* *
|
||||
* WARNINGS: *
|
||||
* *
|
||||
* HISTORY: *
|
||||
* 10/30/2000 gth : Created. *
|
||||
*=============================================================================================*/
|
||||
void ExportLog::rprintf(char * format, ...)
|
||||
{
|
||||
if (_LogDialog != NULL) {
|
||||
va_list arguments;
|
||||
va_start(arguments, format);
|
||||
_LogDialog->rprintf(format,arguments);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************************************
|
||||
* ExportLog::updatebar -- Set the position of the progress bar *
|
||||
* *
|
||||
* INPUT: *
|
||||
* *
|
||||
* OUTPUT: *
|
||||
* *
|
||||
* WARNINGS: *
|
||||
* *
|
||||
* HISTORY: *
|
||||
* 10/30/2000 gth : Created. *
|
||||
*=============================================================================================*/
|
||||
void ExportLog::updatebar(float position, float total)
|
||||
{
|
||||
if (_LogDialog != NULL) {
|
||||
_LogDialog->updatebar(position,total);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user