Archival snapshot of the Virtual World Entertainment Tesla cockpit software, 1994-1996: MUNGA engine and L4 pod layer source (Borland C++ 5.0), BT/RP game code, and game content (models, audio, maps, gauges, Division renderer data). Includes third-party libraries: Division dVS/DPL graphics, HMI SOS audio, WATTCP networking. Files are preserved byte-for-byte (.gitattributes disables all line-ending conversion). README.md documents the layout, target hardware, and toolchain. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
83 lines
2.9 KiB
Plaintext
83 lines
2.9 KiB
Plaintext
//===========================================================================//
|
|
// File: l4app.tcp //
|
|
// Contents: //
|
|
//---------------------------------------------------------------------------//
|
|
// Date Who Modification //
|
|
// -------- --- ---------------------------------------------------------- //
|
|
// 03/09/95 ECH Initial coding. //
|
|
//---------------------------------------------------------------------------//
|
|
// Copyright (C) 1994, Virtual World Entertainment, Inc. All Rights reserved //
|
|
// PROPRIETARY AND CONFIDENTIAL //
|
|
//===========================================================================//
|
|
|
|
#include "l4app.thp"
|
|
#include "entity.thp"
|
|
#include "registry.hpp"
|
|
|
|
//##########################################################################
|
|
//####################### L4TestApplication ##########################
|
|
//##########################################################################
|
|
|
|
//
|
|
//#############################################################################
|
|
//#############################################################################
|
|
//
|
|
L4TestApplication::L4TestApplication(StreamableResourceFile *resource_file):
|
|
L4Application(resource_file, (ApplicationID)0)
|
|
{
|
|
}
|
|
|
|
//
|
|
//#############################################################################
|
|
//#############################################################################
|
|
//
|
|
L4TestApplication::~L4TestApplication()
|
|
{
|
|
}
|
|
|
|
//
|
|
//#############################################################################
|
|
//#############################################################################
|
|
//
|
|
Registry*
|
|
L4TestApplication::MakeRegistry()
|
|
{
|
|
return new Registry;
|
|
}
|
|
|
|
//
|
|
//#############################################################################
|
|
//#############################################################################
|
|
//
|
|
Entity*
|
|
L4TestApplication::MakeViewpointEntity(Entity::MakeMessage *message)
|
|
{
|
|
return TestEntity::Make(message);
|
|
}
|
|
|
|
//##########################################################################
|
|
//########################## L4TestMission ###########################
|
|
//##########################################################################
|
|
|
|
//
|
|
//#############################################################################
|
|
//#############################################################################
|
|
//
|
|
L4TestMission::L4TestMission(
|
|
NotationFile *notation_file,
|
|
StreamableResourceFile *resources
|
|
):
|
|
Mission(notation_file, resources)
|
|
{
|
|
}
|
|
|
|
//
|
|
//#############################################################################
|
|
//#############################################################################
|
|
//
|
|
L4TestMission::~L4TestMission()
|
|
{
|
|
}
|
|
|
|
|