1
0
forked from 0ad/0ad

s/Prometheus/Pyrogenesis/

This was SVN commit r1459.
This commit is contained in:
Ykkrosh 2004-12-05 21:56:09 +00:00
parent cf7f9dcc47
commit a2a6f29ab3
22 changed files with 31 additions and 31 deletions

View File

@ -13,7 +13,7 @@
#include "HFTracer.h" #include "HFTracer.h"
#include "TextureManager.h" #include "TextureManager.h"
#include "ObjectManager.h" #include "ObjectManager.h"
#include "Prometheus.h" #include "Pyrogenesis.h"
#include "Hotkey.h" #include "Hotkey.h"
#include "ConfigDB.h" #include "ConfigDB.h"

View File

@ -27,7 +27,7 @@ gee@pyro.nu
#include "ps/Xeromyces.h" #include "ps/Xeromyces.h"
#include "ps/Font.h" #include "ps/Font.h"
#include "Prometheus.h" #include "Pyrogenesis.h"
#include "input.h" #include "input.h"
#include "OverlayText.h" #include "OverlayText.h"
// TODO Gee: Whatever include CRect/CPos/CSize // TODO Gee: Whatever include CRect/CPos/CSize
@ -296,7 +296,7 @@ void CGUI::Initialize()
{ {
// Add base types! // Add base types!
// You can also add types outside the GUI to extend the flexibility of the GUI. // You can also add types outside the GUI to extend the flexibility of the GUI.
// Prometheus though will have all the object types inserted from here. // Pyrogenesis though will have all the object types inserted from here.
AddObjectType("empty", &CGUIDummyObject::ConstructObject); AddObjectType("empty", &CGUIDummyObject::ConstructObject);
AddObjectType("button", &CButton::ConstructObject); AddObjectType("button", &CButton::ConstructObject);
AddObjectType("image", &CImage::ConstructObject); AddObjectType("image", &CImage::ConstructObject);

View File

@ -33,7 +33,7 @@ gee@pyro.nu
#include <vector> #include <vector>
#include <stddef.h> #include <stddef.h>
#include "Prometheus.h" #include "Pyrogenesis.h"
#include "CStr.h" #include "CStr.h"
#include "types.h" #include "types.h"
#include "ogl.h" #include "ogl.h"

View File

@ -718,7 +718,7 @@ static void set_exception_handler()
// Split this into a separate function because destructors and __try don't mix // Split this into a separate function because destructors and __try don't mix
void i18n_display_fatal_msg(const wchar_t* errortext) { void i18n_display_fatal_msg(const wchar_t* errortext) {
CStrW title = translate(L"Prometheus Failure"); CStrW title = translate(L"Pyrogenesis Failure");
CStrW message = translate(L"A fatal error has occurred: $msg. Please report this to http://bugs.wildfiregames.com/ and attach the crashlog.txt and crashlog.dmp files from your 'data' folder.") << I18n::Raw(errortext); CStrW message = translate(L"A fatal error has occurred: $msg. Please report this to http://bugs.wildfiregames.com/ and attach the crashlog.txt and crashlog.dmp files from your 'data' folder.") << I18n::Raw(errortext);
wdisplay_msg(title.c_str(), message.c_str()); wdisplay_msg(title.c_str(), message.c_str());
} }
@ -845,7 +845,7 @@ int debug_main_exception_filter(unsigned int UNUSEDPARAM(code), PEXCEPTION_POINT
swprintf(message, 1024, L"A fatal error has occurred: %ls.\nPlease report this to http://bugs.wildfiregames.com/ and attach the crashlog.txt and crashlog.dmp files from your 'data' folder.", errortext); swprintf(message, 1024, L"A fatal error has occurred: %ls.\nPlease report this to http://bugs.wildfiregames.com/ and attach the crashlog.txt and crashlog.dmp files from your 'data' folder.", errortext);
message[1023] = 0; message[1023] = 0;
wdisplay_msg(L"Prometheus failure", message); wdisplay_msg(L"Pyrogenesis failure", message);
} }
@ -855,7 +855,7 @@ int debug_main_exception_filter(unsigned int UNUSEDPARAM(code), PEXCEPTION_POINT
} }
__except (EXCEPTION_EXECUTE_HANDLER) __except (EXCEPTION_EXECUTE_HANDLER)
{ {
wdisplay_msg(L"Prometheus failure", L"Error generating crash log."); wdisplay_msg(L"Pyrogenesis failure", L"Error generating crash log.");
} }
__try __try
@ -867,7 +867,7 @@ int debug_main_exception_filter(unsigned int UNUSEDPARAM(code), PEXCEPTION_POINT
} }
__except (EXCEPTION_EXECUTE_HANDLER) __except (EXCEPTION_EXECUTE_HANDLER)
{ {
wdisplay_msg(L"Prometheus failure", L"Error generating crash dump."); wdisplay_msg(L"Pyrogenesis failure", L"Error generating crash dump.");
} }
// Disable memory-leak reporting, because it's going to // Disable memory-leak reporting, because it's going to

View File

@ -50,7 +50,7 @@ recondite_phreak@yahool.com
// Includes / Compiler directives // Includes / Compiler directives
//-------------------------------------------------------- //--------------------------------------------------------
#include "Prometheus.h" // Standard Engine Include #include "Pyrogenesis.h" // Standard Engine Include
#include <math.h> // Needed for fmod() #include <math.h> // Needed for fmod()
//-------------------------------------------------------- //--------------------------------------------------------

View File

@ -1,7 +1,7 @@
// JSInterface_Entity.h // JSInterface_Entity.h
// //
// //
// A JavaScript class representing a Prometheus CVector3D object. // A JavaScript class representing a Pyrogenesis CVector3D object.
// //
// Usage: Used when manipulating objects of class 'Vector3D' in JavaScript. // Usage: Used when manipulating objects of class 'Vector3D' in JavaScript.
// //

View File

@ -4,7 +4,7 @@
#include "CConsole.h" #include "CConsole.h"
#include "CLogger.h" #include "CLogger.h"
#include "Prometheus.h" #include "Pyrogenesis.h"
#include "sysdep/sysdep.h" #include "sysdep/sysdep.h"
#include "input.h" #include "input.h"
#include "Hotkey.h" #include "Hotkey.h"

View File

@ -50,7 +50,7 @@ enum PS_TRIM_MODE { PS_TRIM_LEFT, PS_TRIM_RIGHT, PS_TRIM_BOTH };
#if !defined(CSTR_H) || defined(IN_UNIDOUBLER) #if !defined(CSTR_H) || defined(IN_UNIDOUBLER)
#define CSTR_H #define CSTR_H
#include "Prometheus.h" #include "Pyrogenesis.h"
#include <string> // Used for basic string functionality #include <string> // Used for basic string functionality
#include <iostream> #include <iostream>
#include "ps/utf16string.h" #include "ps/utf16string.h"

View File

@ -1,6 +1,6 @@
#include "precompiled.h" #include "precompiled.h"
#include "Prometheus.h" #include "Pyrogenesis.h"
#include "Parser.h" #include "Parser.h"
#include "ConfigDB.h" #include "ConfigDB.h"
#include "CLogger.h" #include "CLogger.h"

View File

@ -33,7 +33,7 @@
#ifndef _ps_ConfigDB_H #ifndef _ps_ConfigDB_H
#define _ps_ConfigDB_H #define _ps_ConfigDB_H
#include "Prometheus.h" #include "Pyrogenesis.h"
#include "Parser.h" #include "Parser.h"
#include "CStr.h" #include "CStr.h"
#include "Singleton.h" #include "Singleton.h"

View File

@ -16,7 +16,7 @@ There may be a better way to do this but this looks alright to me.
*/ */
#include "Prometheus.h" #include "Pyrogenesis.h"
#ifndef ENCRYPTION_H #ifndef ENCRYPTION_H
#define ENCRYPTION_H #define ENCRYPTION_H

View File

@ -18,7 +18,7 @@
#include "Singleton.h" #include "Singleton.h"
#include "Prometheus.h" #include "Pyrogenesis.h"
#include <string> #include <string>

View File

@ -28,7 +28,7 @@ mark@markdellis.co.uk
// Includes / Compiler directives // Includes / Compiler directives
//-------------------------------------------------------- //--------------------------------------------------------
#include "Prometheus.h" #include "Pyrogenesis.h"
#include <string> #include <string>
#include <fstream> #include <fstream>

View File

@ -47,7 +47,7 @@ MORE INFO
#include "posix.h" #include "posix.h"
#include "types.h" #include "types.h"
#include "Prometheus.h" #include "Pyrogenesis.h"
#include "ThreadUtil.h" #include "ThreadUtil.h"
#include "Singleton.h" #include "Singleton.h"

View File

@ -7,7 +7,7 @@
#include "posix.h" #include "posix.h"
#include "types.h" #include "types.h"
#include "Prometheus.h" #include "Pyrogenesis.h"
#include <string.h> #include <string.h>
#include "CStr.h" #include "CStr.h"

View File

@ -2,7 +2,7 @@
#define _StreamSocket_H #define _StreamSocket_H
#include "types.h" #include "types.h"
#include "Prometheus.h" #include "Pyrogenesis.h"
#include "Network.h" #include "Network.h"
#include "SocketBase.h" #include "SocketBase.h"

View File

@ -25,7 +25,7 @@ will exist, and it's up to the system to figure out which one acquired.
#ifndef __PARSER_H #ifndef __PARSER_H
#define __PARSER_H #define __PARSER_H
#include "Prometheus.h" #include "Pyrogenesis.h"
#pragma warning(disable:4786) #pragma warning(disable:4786)

View File

@ -1,6 +1,6 @@
#include "precompiled.h" #include "precompiled.h"
#include "Prometheus.h" #include "Pyrogenesis.h"
DEFINE_ERROR(PS_OK, "OK"); DEFINE_ERROR(PS_OK, "OK");
DEFINE_ERROR(PS_FAIL, "Fail"); DEFINE_ERROR(PS_FAIL, "Fail");

View File

@ -1,13 +1,13 @@
/* /*
Prometheus.h Pyrogenesis.h
by Raj Sharma by Raj Sharma
rsharma@uiuc.edu rsharma@uiuc.edu
Standard declarations which are included in all projects. Standard declarations which are included in all projects.
*/ */
#ifndef PROMETHEUS_H #ifndef PYROGENESIS_H
#define PROMETHEUS_H #define PYROGENESIS_H
typedef const char * PS_RESULT; typedef const char * PS_RESULT;

View File

@ -1,5 +1,5 @@
/* /*
Xerces Error Handler for Prometheus (and the GUI) Xerces Error Handler for Pyrogenesis (and the GUI)
by Gustav Larsson by Gustav Larsson
gee@pyro.nu gee@pyro.nu
*/ */
@ -14,7 +14,7 @@ gee@pyro.nu
#include <iostream> #include <iostream>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include "Prometheus.h" #include "Pyrogenesis.h"
#include "CLogger.h" #include "CLogger.h"
#define LOG_CATEGORY "xml" #define LOG_CATEGORY "xml"

View File

@ -1,5 +1,5 @@
/* /*
Xerces Error Handler for Prometheus (and the GUI) Xerces Error Handler for Pyrogenesis (and the GUI)
by Gustav Larsson by Gustav Larsson
gee@pyro.nu gee@pyro.nu
@ -7,7 +7,7 @@ gee@pyro.nu
This is a class that that will let us output This is a class that that will let us output
Xerces C++ Parser errors in our own Log Xerces C++ Parser errors in our own Log
or whatever, fit to Prometheus and foremost or whatever, fit to Pyrogenesis and foremost
the GUI. the GUI.
--More info-- --More info--
@ -28,7 +28,7 @@ gee@pyro.nu
* @author Gustav Larsson * @author Gustav Larsson
* *
* Adapter function that catches Xerces Reading Exceptions * Adapter function that catches Xerces Reading Exceptions
* and lets us output them in Prometheus CLogFile. * and lets us output them in Pyrogenesis CLogFile.
* *
* Used for all Xerces C++ Parser reading. * Used for all Xerces C++ Parser reading.
* *

View File

@ -5,7 +5,7 @@
// Entity Templates // Entity Templates
// //
// Usage: These templates are used as the default values for entity properties. // Usage: These templates are used as the default values for entity properties.
// Due to Prometheus' data-inheritance model for these properties, // Due to Pyrogenesis' data-inheritance model for these properties,
// templates specify a base-template, then override only those properties // templates specify a base-template, then override only those properties
// in that template that need to change. // in that template that need to change.
// Similarly, entities need only specify properties they possess that are // Similarly, entities need only specify properties they possess that are