diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2011-12-27 00:23:05 +0100 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2011-12-27 00:23:05 +0100 |
commit | 0d8ecbeca1a93acab395326db3e90f444c8bbc18 (patch) | |
tree | 529ef281ab20829534f272157edede9d7cb087d4 /source | |
parent | Players can switch worlds on the fly with the command /gotoworld [worldName]. This uses the function cPlayer::MoveToWorld() (diff) | |
download | cuberite-0d8ecbeca1a93acab395326db3e90f444c8bbc18.tar cuberite-0d8ecbeca1a93acab395326db3e90f444c8bbc18.tar.gz cuberite-0d8ecbeca1a93acab395326db3e90f444c8bbc18.tar.bz2 cuberite-0d8ecbeca1a93acab395326db3e90f444c8bbc18.tar.lz cuberite-0d8ecbeca1a93acab395326db3e90f444c8bbc18.tar.xz cuberite-0d8ecbeca1a93acab395326db3e90f444c8bbc18.tar.zst cuberite-0d8ecbeca1a93acab395326db3e90f444c8bbc18.zip |
Diffstat (limited to 'source')
-rw-r--r-- | source/cChunk.cpp | 4 | ||||
-rw-r--r-- | source/cWorld.cpp | 22 | ||||
-rw-r--r-- | source/cWorld.h | 6 | ||||
-rw-r--r-- | source/cWorldGenerator_Test.cpp | 25 | ||||
-rw-r--r-- | source/cWorldGenerator_Test.h | 10 |
5 files changed, 55 insertions, 12 deletions
diff --git a/source/cChunk.cpp b/source/cChunk.cpp index 2c915d2ef..2e6e7a633 100644 --- a/source/cChunk.cpp +++ b/source/cChunk.cpp @@ -1,3 +1,4 @@ +
#ifndef _WIN32
#include <cstring>
#include <cstdlib>
@@ -133,8 +134,7 @@ void cChunk::Initialize() // Clear memory
memset( m_BlockData, 0x00, c_BlockDataSize );
- cWorldGenerator Generator;
- Generator.GenerateChunk( this );
+ m_World->GetWorldGenerator()->GenerateChunk( this );
CalculateHeightmap();
CalculateLighting();
diff --git a/source/cWorld.cpp b/source/cWorld.cpp index 7b181c982..85f8872ec 100644 --- a/source/cWorld.cpp +++ b/source/cWorld.cpp @@ -37,6 +37,7 @@ #include "cMakeDir.h"
#include "cChunkGenerator.h"
#include "MersenneTwister.h"
+#include "cWorldGenerator_Test.h"
#include "packets/cPacket_TimeUpdate.h"
@@ -141,6 +142,7 @@ cWorld::cWorld( const char* a_WorldName ) , m_SpawnMonsterTime( 0.f )
, m_RSList ( 0 )
, m_Weather ( 0 )
+ , m_WorldGenerator( 0 )
{
LOG("cWorld::cWorld(%s)", a_WorldName);
m_pState->WorldName = a_WorldName;
@@ -154,6 +156,8 @@ cWorld::cWorld( const char* a_WorldName ) m_WorldSeed = r1.randInt();
m_GameMode = 0;
+ std::string WorldGeneratorName;
+
cIniFile IniFile( m_pState->WorldName + "/world.ini");
if( IniFile.ReadFile() )
{
@@ -162,6 +166,7 @@ cWorld::cWorld( const char* a_WorldName ) m_SpawnZ = IniFile.GetValueF("SpawnPosition", "Z", m_SpawnZ );
m_WorldSeed = IniFile.GetValueI("Seed", "Seed", m_WorldSeed );
m_GameMode = IniFile.GetValueI("GameMode", "GameMode", m_GameMode );
+ WorldGeneratorName = IniFile.GetValue("Generator", "GeneratorName", "Default");
}
else
{
@@ -170,6 +175,7 @@ cWorld::cWorld( const char* a_WorldName ) IniFile.SetValueF("SpawnPosition", "Z", m_SpawnZ );
IniFile.SetValueI("Seed", "Seed", m_WorldSeed );
IniFile.SetValueI("GameMode", "GameMode", m_GameMode );
+ IniFile.SetValue("Generator", "GeneratorName", "Default" );
if( !IniFile.WriteFile() )
{
LOG("WARNING: Could not write to %s/world.ini", a_WorldName);
@@ -177,6 +183,11 @@ cWorld::cWorld( const char* a_WorldName ) }
LOGINFO("Seed: %i", m_WorldSeed );
+ if( WorldGeneratorName.compare("Test") == 0 )
+ m_WorldGenerator = new cWorldGenerator_Test();
+ else // Default
+ m_WorldGenerator = new cWorldGenerator();
+
cIniFile GenSettings("terrain.ini");
if( GenSettings.ReadFile() )
{
@@ -224,20 +235,15 @@ cWorld::cWorld( const char* a_WorldName ) m_ChunksCriticalSection = new cCriticalSection();
//Simulators:
- m_SimulatorManager = new cSimulatorManager();
-
m_WaterSimulator = new cWaterSimulator( this );
- m_SimulatorManager->RegisterSimulator(m_WaterSimulator, 6);
-
m_LavaSimulator = new cLavaSimulator( this );
- m_SimulatorManager->RegisterSimulator(m_LavaSimulator, 12);
-
m_SandSimulator = new cSandSimulator(this);
+ m_SimulatorManager = new cSimulatorManager();
+ m_SimulatorManager->RegisterSimulator(m_WaterSimulator, 6);
+ m_SimulatorManager->RegisterSimulator(m_LavaSimulator, 12);
m_SimulatorManager->RegisterSimulator(m_SandSimulator, 1);
-
-
memset( g_BlockLightValue, 0x0, 128 );
memset( g_BlockSpreadLightFalloff, 0xf, 128 ); // 0xf means total falloff
memset( g_BlockTransparent, 0x0, 128 );
diff --git a/source/cWorld.h b/source/cWorld.h index 44b89b5ab..72c6975d1 100644 --- a/source/cWorld.h +++ b/source/cWorld.h @@ -27,6 +27,7 @@ class cClientHandle; class cChunk;
class cEntity;
class cBlockEntity;
+class cWorldGenerator;
class cWorld //tolua_export
@@ -154,7 +155,7 @@ public: void SetWeather ( int ); //tolua_export
int GetWeather() { return m_Weather; }; //tolua_export
-
+ cWorldGenerator* GetWorldGenerator() { return m_WorldGenerator; }
private:
friend class cRoot;
cWorld( const char* a_WorldName );
@@ -184,10 +185,11 @@ private: cWaterSimulator* m_WaterSimulator;
cLavaSimulator* m_LavaSimulator;
-
cCriticalSection* m_ClientHandleCriticalSection;
cCriticalSection* m_EntitiesCriticalSection;
cCriticalSection* m_ChunksCriticalSection;
+
+ cWorldGenerator* m_WorldGenerator;
std::string m_Description;
unsigned int m_MaxPlayers;
diff --git a/source/cWorldGenerator_Test.cpp b/source/cWorldGenerator_Test.cpp new file mode 100644 index 000000000..d6cc2c00b --- /dev/null +++ b/source/cWorldGenerator_Test.cpp @@ -0,0 +1,25 @@ +#include "cWorldGenerator_Test.h"
+#include "cChunk.h"
+#include "BlockID.h"
+
+void cWorldGenerator_Test::GenerateTerrain( cChunk* a_Chunk )
+{
+ char* BlockType = a_Chunk->pGetType();
+
+ for(int x = 0; x < 16; x++)
+ {
+ for(int z = 0; z < 16; z++)
+ {
+ for( int y = 1; y < 128; ++y )
+ {
+ unsigned int idx = cChunk::MakeIndex(x, y, z);
+ BlockType[idx] = E_BLOCK_DIRT;
+ }
+ }
+ }
+}
+
+void cWorldGenerator_Test::GenerateFoliage( cChunk* a_Chunk )
+{
+ (void)a_Chunk;
+}
\ No newline at end of file diff --git a/source/cWorldGenerator_Test.h b/source/cWorldGenerator_Test.h new file mode 100644 index 000000000..cb08cf97c --- /dev/null +++ b/source/cWorldGenerator_Test.h @@ -0,0 +1,10 @@ +#pragma once
+
+#include "cWorldGenerator.h"
+
+class cWorldGenerator_Test : public cWorldGenerator
+{
+protected:
+ virtual void GenerateTerrain( cChunk* a_Chunk );
+ virtual void GenerateFoliage( cChunk* a_Chunk );
+};
\ No newline at end of file |