C++ modernize: Pragma once (#6264)

* Migrate cpp headers to pragma once
This commit is contained in:
Loïc Blot 2017-08-17 22:19:39 +02:00 committed by GitHub
parent c738d1eeab
commit 921151d97a
236 changed files with 288 additions and 1028 deletions

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef ACTIVEOBJECT_HEADER
#define ACTIVEOBJECT_HEADER
#pragma once
#include "irr_aabb3d.h"
#include <string>
@ -102,6 +101,3 @@ public:
protected:
u16 m_id; // 0 is invalid, "no id"
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef BAN_HEADER
#define BAN_HEADER
#pragma once
#include "util/string.h"
#include "threading/thread.h"
@ -48,5 +47,3 @@ private:
StringMap m_ips;
bool m_modified = false;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CAMERA_HEADER
#define CAMERA_HEADER
#pragma once
#include "irrlichttypes_extrabloated.h"
#include "inventory.h"
@ -232,5 +231,3 @@ private:
std::list<Nametag *> m_nametags;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CAVEGEN_HEADER
#define CAVEGEN_HEADER
#pragma once
#define VMANIP_FLAG_CAVE VOXELFLAG_CHECKED1
@ -241,5 +240,3 @@ private:
inline s16 getSurfaceFromHeightmap(v3s16 p);
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CHAT_HEADER
#define CHAT_HEADER
#pragma once
#include <string>
#include <vector>
@ -287,6 +286,3 @@ private:
ChatBuffer m_recent_buffer;
ChatPrompt m_prompt;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CHAT_INTERFACE_H
#define CHAT_INTERFACE_H
#pragma once
#include "util/container.h"
#include <string>
@ -78,5 +77,3 @@ struct ChatInterface {
MutexedQueue<ChatEvent *> command_queue; // chat backend --> server
MutexedQueue<ChatEvent *> outgoing_queue; // server --> chat backend
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MT_CHATMESSAGE_H
#define MT_CHATMESSAGE_H
#pragma once
#include <string>
#include <ctime>
@ -47,5 +46,3 @@ struct ChatMessage
std::wstring sender = L"";
std::time_t timestamp = std::time(0);
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CLIENT_HEADER
#define CLIENT_HEADER
#pragma once
#include "network/connection.h"
#include "clientenvironment.h"
@ -718,5 +717,3 @@ private:
u64 m_csm_flavour_limits = CSMFlavourLimit::CSM_FL_NONE;
u32 m_csm_noderange_limit = 8;
};
#endif // !CLIENT_HEADER

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef __CLIENT_LAUNCHER_H__
#define __CLIENT_LAUNCHER_H__
#pragma once
#include "irrlichttypes_extrabloated.h"
#include "client/inputhandler.h"
@ -69,5 +68,3 @@ protected:
std::string current_address = "does-not-exist";
int current_port = 0;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef INPUT_HANDLER_H
#define INPUT_HANDLER_H
#pragma once
#include "irrlichttypes_extrabloated.h"
#include "joystick_controller.h"
@ -393,5 +392,3 @@ private:
bool leftreleased = false;
bool rightreleased = false;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef JOYSTICK_HEADER
#define JOYSTICK_HEADER
#pragma once
#include "irrlichttypes_extrabloated.h"
#include "keys.h"
@ -168,5 +167,3 @@ private:
std::bitset<KeyType::INTERNAL_ENUM_COUNT> m_past_pressed_keys;
std::bitset<KeyType::INTERNAL_ENUM_COUNT> m_past_released_keys;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef KEYS_HEADER
#define KEYS_HEADER
#pragma once
#include <list>
@ -114,5 +113,3 @@ public:
};
typedef KeyType::T GameKeyType;
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef TILE_HEADER
#define TILE_HEADER
#pragma once
#include "irrlichttypes.h"
#include "irr_v3d.h"
@ -330,4 +329,3 @@ struct TileSpec
//! The first is base texture, the second is overlay.
TileLayer layers[MAX_TILE_LAYERS];
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CLIENT_ENVIRONMENT_HEADER
#define CLIENT_ENVIRONMENT_HEADER
#pragma once
#include <ISceneManager.h>
#include "environment.h"
@ -158,5 +157,3 @@ private:
std::list<std::string> m_player_names;
v3s16 m_camera_offset;
};
#endif

View File

@ -16,8 +16,8 @@ You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef _CLIENTIFACE_H_
#define _CLIENTIFACE_H_
#pragma once
#include "irr_v3d.h" // for irrlicht datatypes
@ -500,5 +500,3 @@ private:
static const char *statenames[];
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CLIENTMAP_HEADER
#define CLIENTMAP_HEADER
#pragma once
#include "irrlichttypes_extrabloated.h"
#include "map.h"
@ -137,6 +136,3 @@ private:
bool m_cache_bilinear_filter;
bool m_cache_anistropic_filter;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CLIENTMEDIA_HEADER
#define CLIENTMEDIA_HEADER
#pragma once
#include "irrlichttypes.h"
#include "filecache.h"
@ -147,5 +146,3 @@ private:
std::string m_name_bound = "";
};
#endif // !CLIENTMEDIA_HEADER

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CLIENTOBJECT_HEADER
#define CLIENTOBJECT_HEADER
#pragma once
#include "irrlichttypes_extrabloated.h"
#include "activeobject.h"
@ -106,5 +105,3 @@ struct DistanceSortedActiveObject
return d < other.d;
}
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CLIENTSIMPLEOBJECT_HEADER
#define CLIENTSIMPLEOBJECT_HEADER
#pragma once
#include "irrlichttypes_bloated.h"
class ClientEnvironment;
@ -34,5 +33,3 @@ public:
virtual void step(float dtime) {}
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CLOUDPARAMS_HEADER
#define CLOUDPARAMS_HEADER
#pragma once
struct CloudParams
{
@ -29,5 +28,3 @@ struct CloudParams
float height;
v2f speed;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CLOUDS_HEADER
#define CLOUDS_HEADER
#pragma once
#include "irrlichttypes_extrabloated.h"
#include <iostream>
@ -143,7 +142,3 @@ private:
bool m_camera_inside_cloud = false;
};
#endif

View File

@ -1,7 +1,6 @@
// Filled in by the build system
#ifndef CMAKE_CONFIG_H
#define CMAKE_CONFIG_H
#pragma once
#define PROJECT_NAME "@PROJECT_NAME@"
#define PROJECT_NAME_C "@PROJECT_NAME_CAPITALIZED@"
@ -34,6 +33,3 @@
#cmakedefine01 CURSES_HAVE_NCURSES_CURSES_H
#cmakedefine01 CURSES_HAVE_NCURSESW_NCURSES_H
#cmakedefine01 CURSES_HAVE_NCURSESW_CURSES_H
#endif

View File

@ -1,10 +1,6 @@
// Filled in by the build system
// Separated from cmake_config.h to avoid excessive rebuilds on every commit
#ifndef CMAKE_CONFIG_GITHASH_H
#define CMAKE_CONFIG_GITHASH_H
#pragma once
#define VERSION_GITHASH "@VERSION_GITHASH@"
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef COLLISION_HEADER
#define COLLISION_HEADER
#pragma once
#include "irrlichttypes_bloated.h"
#include <vector>
@ -76,7 +75,3 @@ bool wouldCollideWithCeiling(
const std::vector<aabb3f> &staticboxes,
const aabb3f &movingbox,
f32 y_increase, f32 d);
#endif

View File

@ -3,8 +3,7 @@
Otherwise use default values
*/
#ifndef CONFIG_H
#define CONFIG_H
#pragma once
#define STRINGIFY(x) #x
#define STR(x) STRINGIFY(x)
@ -38,5 +37,3 @@
" USE_FREETYPE=" STR(USE_FREETYPE) \
" USE_LUAJIT=" STR(USE_LUAJIT) \
" STATIC_SHAREDIR=" STR(STATIC_SHAREDIR)
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CONSTANTS_HEADER
#define CONSTANTS_HEADER
#pragma once
/*
All kinds of constants.
@ -118,5 +117,3 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#define TTF_DEFAULT_FONT_SIZE (16)
#endif
#define DEFAULT_FONT_SIZE (10)
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CONTENT_CAO_HEADER
#define CONTENT_CAO_HEADER
#pragma once
#include <map>
#include "irrlichttypes_extrabloated.h"
@ -214,6 +213,3 @@ public:
return m_prop.infotext;
}
};
#endif

View File

@ -17,14 +17,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CONTENT_CSO_HEADER
#define CONTENT_CSO_HEADER
#pragma once
#include "irrlichttypes_extrabloated.h"
#include "clientsimpleobject.h"
ClientSimpleObject* createSmokePuff(scene::ISceneManager *smgr,
ClientEnvironment *env, v3f pos, v2f size);
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CONTENT_MAPBLOCK_HEADER
#define CONTENT_MAPBLOCK_HEADER
#pragma once
#include "nodedef.h"
#include <IMeshManipulator.h>
@ -146,5 +145,3 @@ public:
MapblockMeshGenerator(MeshMakeData *input, MeshCollector *output);
void generate();
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CONTENT_MAPNODE_HEADER
#define CONTENT_MAPNODE_HEADER
#pragma once
#include "mapnode.h"
@ -33,5 +32,3 @@ MapNode mapnode_translate_to_internal(MapNode n_from, u8 version);
// Get legacy node name mapping for loading old blocks
class NameIdMapping;
void content_mapnode_get_name_id_mapping(NameIdMapping *nimap);
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CONTENT_NODEMETA_HEADER
#define CONTENT_NODEMETA_HEADER
#pragma once
#include <iostream>
@ -33,6 +32,3 @@ class IItemDefManager;
void content_nodemeta_deserialize_legacy(std::istream &is,
NodeMetadataList *meta, NodeTimerList *timers,
IItemDefManager *item_def_mgr);
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CONTENT_SAO_HEADER
#define CONTENT_SAO_HEADER
#pragma once
#include <util/numeric.h>
#include "serverobject.h"
@ -412,5 +411,3 @@ public:
bool m_physics_override_new_move = true;
bool m_physics_override_sent = false;
};
#endif

View File

@ -17,12 +17,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef __CONVERT_JSON_H__
#define __CONVERT_JSON_H__
#pragma once
#include <json/json.h>
Json::Value fetchJsonValue(const std::string &url,
std::vector<std::string> *extra_headers);
#endif
Json::Value fetchJsonValue(const std::string &url,
std::vector<std::string> *extra_headers);

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CRAFTDEF_HEADER
#define CRAFTDEF_HEADER
#pragma once
#include <string>
#include <iostream>
@ -446,6 +445,3 @@ public:
};
IWritableCraftDefManager* createCraftDefManager();
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef DATABASE_DUMMY_HEADER
#define DATABASE_DUMMY_HEADER
#pragma once
#include <map>
#include <string>
@ -44,5 +43,3 @@ public:
private:
std::map<s64, std::string> m_database;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef DATABASE_FILES_HEADER
#define DATABASE_FILES_HEADER
#pragma once
// !!! WARNING !!!
// This backend is intended to be used on Minetest 0.4.16 only for the transition backend
@ -42,5 +41,3 @@ private:
std::string m_savedir;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef DATABASE_LEVELDB_HEADER
#define DATABASE_LEVELDB_HEADER
#pragma once
#include "config.h"
@ -47,5 +46,3 @@ private:
};
#endif // USE_LEVELDB
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef DATABASE_POSTGRESQL_HEADER
#define DATABASE_POSTGRESQL_HEADER
#pragma once
#include <string>
#include <libpq-fe.h>
@ -145,6 +144,3 @@ protected:
private:
bool playerDataExists(const std::string &playername);
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef DATABASE_REDIS_HEADER
#define DATABASE_REDIS_HEADER
#pragma once
#include "config.h"
@ -50,5 +49,3 @@ private:
};
#endif // USE_REDIS
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef DATABASE_SQLITE3_HEADER
#define DATABASE_SQLITE3_HEADER
#pragma once
#include <cstring>
#include <string>
@ -192,5 +191,3 @@ private:
sqlite3_stmt *m_stmt_player_metadata_remove = nullptr;
sqlite3_stmt *m_stmt_player_metadata_add = nullptr;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef DATABASE_HEADER
#define DATABASE_HEADER
#pragma once
#include <string>
#include <vector>
@ -61,5 +60,3 @@ public:
virtual bool removePlayer(const std::string &name) = 0;
virtual void listPlayers(std::vector<std::string> &res) = 0;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef DAYNIGHTRATIO_HEADER
#define DAYNIGHTRATIO_HEADER
#pragma once
inline u32 time_to_daynight_ratio(float time_of_day, bool smooth)
{
@ -64,6 +63,3 @@ inline u32 time_to_daynight_ratio(float time_of_day, bool smooth)
return 1000;
}
}
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef DEBUG_HEADER
#define DEBUG_HEADER
#pragma once
#include <iostream>
#include <exception>
@ -131,7 +130,3 @@ private:
#define BEGIN_DEBUG_EXCEPTION_HANDLER
#define END_DEBUG_EXCEPTION_HANDLER
#endif
#endif // DEBUG_HEADER

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef DEFAULTSETTINGS_HEADER
#define DEFAULTSETTINGS_HEADER
#pragma once
class Settings;
@ -34,5 +33,3 @@ void set_default_settings(Settings *settings);
* @param from source settings pointer
*/
void override_default_settings(Settings *settings, Settings *from);
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef DUNGEONGEN_HEADER
#define DUNGEONGEN_HEADER
#pragma once
#include "voxel.h"
#include "noise.h"
@ -109,5 +108,3 @@ public:
extern NoiseParams nparams_dungeon_density;
extern NoiseParams nparams_dungeon_alt_wall;
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef EMERGE_HEADER
#define EMERGE_HEADER
#pragma once
#include <map>
#include <mutex>
@ -174,5 +173,3 @@ private:
friend class EmergeThread;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef ENVIRONMENT_HEADER
#define ENVIRONMENT_HEADER
#pragma once
/*
This class is the game's environment.
@ -144,5 +143,3 @@ protected:
private:
std::mutex m_time_lock;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef EVENT_HEADER
#define EVENT_HEADER
#pragma once
class MtEvent
{
@ -67,6 +66,3 @@ public:
virtual void reg(MtEventReceiver *r, const char *type) = 0;
virtual void dereg(MtEventReceiver *r, const char *type) = 0;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef EVENT_MANAGER_HEADER
#define EVENT_MANAGER_HEADER
#pragma once
#include "event.h"
#include <list>
@ -110,6 +109,3 @@ public:
dereg(type, EventManager::receiverReceive, r);
}
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef EXCEPTIONS_HEADER
#define EXCEPTIONS_HEADER
#pragma once
#include <exception>
#include <string>
@ -129,6 +128,3 @@ public:
BaseException(s)
{}
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef FACE_POSITION_CACHE_HEADER
#define FACE_POSITION_CACHE_HEADER
#pragma once
#include "irr_v3d.h"
@ -40,5 +39,3 @@ private:
static std::unordered_map<u16, std::vector<v3s16>> cache;
static std::mutex cache_mutex;
};
#endif

View File

@ -18,8 +18,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef FILECACHE_HEADER
#define FILECACHE_HEADER
#pragma once
#include <iostream>
#include <string>
@ -41,5 +40,3 @@ private:
bool loadByPath(const std::string &path, std::ostream &os);
bool updateByPath(const std::string &path, const std::string &data);
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef FILESYS_HEADER
#define FILESYS_HEADER
#pragma once
#include <string>
#include <vector>
@ -118,6 +117,3 @@ bool safeWriteToFile(const std::string &path, const std::string &content);
bool Rename(const std::string &from, const std::string &to);
} // namespace fs
#endif

View File

@ -16,8 +16,8 @@ You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef __FONTENGINE_H__
#define __FONTENGINE_H__
#pragma once
#include <map>
#include <vector>
@ -135,5 +135,3 @@ private:
/** interface to access main font engine*/
extern FontEngine* g_fontengine;
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GAME_HEADER
#define GAME_HEADER
#pragma once
#include "irrlichttypes.h"
#include <string>
@ -52,5 +51,3 @@ void the_game(bool *kill,
bool *reconnect_requested,
const SubgameSpec &gamespec, // Used for local game
bool simple_singleplayer_mode);
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GAMEDEF_HEADER
#define GAMEDEF_HEADER
#pragma once
#include <string>
#include <vector>
@ -80,6 +79,3 @@ public:
virtual bool registerModStorage(ModMetadata *storage) = 0;
virtual void unregisterModStorage(const std::string &name) = 0;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GAME_PARAMS_H
#define GAME_PARAMS_H
#pragma once
#include "irrlichttypes.h"
@ -31,5 +30,3 @@ struct GameParams
SubgameSpec game_spec;
bool is_dedicated_server;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GENERICOBJECT_HEADER
#define GENERICOBJECT_HEADER
#pragma once
#include <string>
#include "irrlichttypes_bloated.h"
@ -83,6 +82,3 @@ std::string gob_cmd_update_nametag_attributes(video::SColor color);
std::string gob_cmd_update_infant(u16 id, u8 type,
const std::string &client_initialization_data);
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GETTEXT_HEADER
#define GETTEXT_HEADER
#pragma once
#include "config.h" // for USE_GETTEXT
#include <string>
@ -59,5 +58,3 @@ inline std::string strgettext(const std::string &text)
{
return gettext(text.c_str());
}
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GETTIME_HEADER
#define GETTIME_HEADER
#pragma once
#include "irrlichttypes.h"
#include <time.h>
@ -42,5 +41,3 @@ inline std::string getTimestamp()
strftime(cs, 20, "%Y-%m-%d %H:%M:%S", tm);
return cs;
}
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GUICHATCONSOLE_HEADER
#define GUICHATCONSOLE_HEADER
#pragma once
#include "irrlichttypes_extrabloated.h"
#include "modalMenu.h"
@ -132,7 +131,3 @@ private:
gui::IGUIFont *m_font = nullptr;
v2u32 m_fontsize;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GUI_ENGINE_H_
#define GUI_ENGINE_H_
#pragma once
/******************************************************************************/
/* Includes */
@ -303,5 +302,3 @@ private:
};
#endif /* GUI_ENGINE_H_ */

View File

@ -17,9 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GUIINVENTORYMENU_HEADER
#define GUIINVENTORYMENU_HEADER
#pragma once
#include <utility>
#include <stack>
@ -567,5 +565,3 @@ public:
std::string m_formspec;
};
#endif

View File

@ -19,8 +19,7 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GUIKEYCHANGEMENU_HEADER
#define GUIKEYCHANGEMENU_HEADER
#pragma once
#include "irrlichttypes_extrabloated.h"
#include "modalMenu.h"
@ -73,5 +72,3 @@ private:
gui::IGUIStaticText *key_used_text = nullptr;
std::vector<key_setting *> key_settings;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GUIMAINMENU_HEADER
#define GUIMAINMENU_HEADER
#pragma once
#include "irrlichttypes_extrabloated.h"
#include "modalMenu.h"
@ -54,6 +53,3 @@ struct MainMenuData {
MainMenuData() {}
};
#endif

View File

@ -16,8 +16,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef GUIPASSWORDCHANGE_HEADER
#define GUIPASSWORDCHANGE_HEADER
#pragma once
#include "irrlichttypes_extrabloated.h"
#include "modalMenu.h"
@ -52,5 +51,3 @@ private:
std::wstring m_newpass = L"";
std::wstring m_newpass_confirm = L"";
};
#endif

View File

@ -17,8 +17,7 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GUIFILESELECTMENU_H_
#define GUIFILESELECTMENU_H_
#pragma once
#include <string>
@ -58,5 +57,3 @@ private:
std::string m_formname;
bool m_file_select_dialog;
};
#endif /* GUIFILESELECTMENU_H_ */

View File

@ -17,9 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GUITABLE_HEADER
#define GUITABLE_HEADER
#pragma once
#include <map>
#include <set>
@ -256,6 +254,3 @@ protected:
static void alignContent(Cell *cell, s32 xmax, s32 content_width,
s32 align);
};
#endif

View File

@ -17,8 +17,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef GUIVOLUMECHANGE_HEADER
#define GUIVOLUMECHANGE_HEADER
#pragma once
#include "irrlichttypes_extrabloated.h"
#include "modalMenu.h"
@ -44,6 +43,3 @@ public:
bool pausesGame() { return true; }
};
#endif

View File

@ -15,8 +15,8 @@ You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef _GUI_SCALING_FILTER_H_
#define _GUI_SCALING_FILTER_H_
#pragma once
#include "irrlichttypes_extrabloated.h"
@ -48,5 +48,3 @@ void draw2DImageFilterScaled(video::IVideoDriver *driver, video::ITexture *txr,
const core::rect<s32> &destrect, const core::rect<s32> &srcrect,
const core::rect<s32> *cliprect = 0, const video::SColor *const colors = 0,
bool usealpha = false);
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef HTTPFETCH_HEADER
#define HTTPFETCH_HEADER
#pragma once
#include <vector>
#include "util/string.h"
@ -113,5 +112,3 @@ void httpfetch_caller_free(unsigned long caller);
// Performs a synchronous HTTP request. This blocks and therefore should
// only be used from background threads.
void httpfetch_sync(const HTTPFetchRequest &fetch_request, HTTPFetchResult &fetch_result);
#endif // !HTTPFETCH_HEADER

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef HUD_HEADER
#define HUD_HEADER
#pragma once
#include "irrlichttypes_extrabloated.h"
#include <string>
@ -197,5 +196,3 @@ void drawItemStack(video::IVideoDriver *driver,
ItemRotationKind rotation_kind);
#endif
#endif

View File

@ -16,8 +16,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef _IMAGE_FILTERS_H_
#define _IMAGE_FILTERS_H_
#pragma once
#include "irrlichttypes_extrabloated.h"
@ -42,5 +41,3 @@ void imageCleanTransparent(video::IImage *src, u32 threshold);
* and downscaling.
*/
void imageScaleNNAA(video::IImage *src, const core::rect<s32> &srcrect, video::IImage *dest);
#endif

View File

@ -2,8 +2,7 @@
// This file is part of the "Irrlicht Engine".
// For conditions of distribution and use, see copyright notice in irrlicht.h
#ifndef __C_INTL_GUI_EDIT_BOX_H_INCLUDED__
#define __C_INTL_GUI_EDIT_BOX_H_INCLUDED__
#pragma once
#include "IrrCompileConfig.h"
//#ifdef _IRR_COMPILE_WITH_GUI_
@ -182,4 +181,3 @@ namespace gui
} // end namespace irr
//#endif // _IRR_COMPILE_WITH_GUI_
#endif // __C_GUI_EDIT_BOX_H_INCLUDED__

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef INVENTORY_HEADER
#define INVENTORY_HEADER
#pragma once
#include "debug.h"
#include "itemdef.h"
@ -310,5 +309,3 @@ private:
IItemDefManager *m_itemdef;
bool m_dirty = false;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef INVENTORYMANAGER_HEADER
#define INVENTORYMANAGER_HEADER
#pragma once
#include "inventory.h"
#include <iostream>
@ -244,6 +243,3 @@ struct ICraftAction : public InventoryAction
bool getCraftingResult(Inventory *inv, ItemStack &result,
std::vector<ItemStack> &output_replacements,
bool decrementInput, IGameDef *gamedef);
#endif

View File

@ -17,13 +17,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef IRR_AABB3D_HEADER
#define IRR_AABB3D_HEADER
#pragma once
#include "irrlichttypes.h"
#include <aabbox3d.h>
typedef core::aabbox3d<f32> aabb3f;
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef IRR_V2D_HEADER
#define IRR_V2D_HEADER
#pragma once
#include "irrlichttypes.h"
@ -29,5 +28,3 @@ typedef core::vector2d<s16> v2s16;
typedef core::vector2d<s32> v2s32;
typedef core::vector2d<u32> v2u32;
typedef core::vector2d<f32> v2f32;
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef IRR_V3D_HEADER
#define IRR_V3D_HEADER
#pragma once
#include "irrlichttypes.h"
@ -28,5 +27,3 @@ typedef core::vector3df v3f;
typedef core::vector3d<s16> v3s16;
typedef core::vector3d<u16> v3u16;
typedef core::vector3d<s32> v3s32;
#endif

View File

@ -29,8 +29,7 @@
john@suckerfreegames.com
*/
#ifndef __C_GUI_TTFONT_H_INCLUDED__
#define __C_GUI_TTFONT_H_INCLUDED__
#pragma once
#include <irrlicht.h>
#include <ft2build.h>
@ -390,5 +389,3 @@ namespace gui
} // end namespace gui
} // end namespace irr
#endif // __C_GUI_TTFONT_H_INCLUDED__

View File

@ -28,8 +28,7 @@
john@suckerfreegames.com
*/
#ifndef __IRR_USTRING_H_INCLUDED__
#define __IRR_USTRING_H_INCLUDED__
#pragma once
#if (__cplusplus > 199711L) || (_MSC_VER >= 1600) || defined(__GXX_EXPERIMENTAL_CXX0X__)
# define USTRING_CPP0X
@ -3890,5 +3889,3 @@ class hash : public std::unary_function<core::ustring, size_t>
} // end namespace core
} // end namespace irr
#endif

View File

@ -4,8 +4,7 @@
// This file is part of the "Irrlicht Engine".
// For conditions of distribution and use, see copyright notice in irrlicht.h
#ifndef __C_GUI_STATIC_TEXT_H_INCLUDED__
#define __C_GUI_STATIC_TEXT_H_INCLUDED__
#pragma once
#include "IrrCompileConfig.h"
#ifdef _IRR_COMPILE_WITH_GUI_
@ -264,5 +263,3 @@ inline void setStaticText(irr::gui::IGUIStaticText *static_text, const wchar_t *
}
#endif // _IRR_COMPILE_WITH_GUI_
#endif // C_GUI_STATIC_TEXT_H_INCLUDED

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef IRRLICHTTYPES_HEADER
#define IRRLICHTTYPES_HEADER
#pragma once
/* Ensure that <stdint.h> is included before <irrTypes.h>, unless building on
* MSVC, to address an irrlicht issue: https://sourceforge.net/p/irrlicht/bugs/433/
@ -62,5 +61,3 @@ using namespace irr;
#define U16_MAX 0xFFFF
#define U32_MAX 0xFFFFFFFF
#define U64_MAX 0xFFFFFFFFFFFFFFFF
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef IRRLICHTTYPES_BLOATED_HEADER
#define IRRLICHTTYPES_BLOATED_HEADER
#pragma once
#include "irrlichttypes.h"
@ -27,5 +26,3 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "irr_aabb3d.h"
#include <SColor.h>
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef IRRLICHTTYPES_EXTRABLOATED_HEADER
#define IRRLICHTTYPES_EXTRABLOATED_HEADER
#pragma once
#include "irrlichttypes_bloated.h"
@ -34,5 +33,3 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <IGUIElement.h>
#include <IGUIEnvironment.h>
#endif
#endif

View File

@ -18,8 +18,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef ITEMDEF_HEADER
#define ITEMDEF_HEADER
#pragma once
#include "irrlichttypes_extrabloated.h"
#include <string>
@ -174,5 +173,3 @@ public:
};
IWritableItemDefManager* createItemDefManager();
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef ITEMGROUP_HEADER
#define ITEMGROUP_HEADER
#pragma once
#include <string>
#include <unordered_map>
@ -32,5 +31,3 @@ static inline int itemgroup_get(const ItemGroupList &groups, const std::string &
return 0;
return i->second;
}
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef ITEMSTACKMETADATA_HEADER
#define ITEMSTACKMETADATA_HEADER
#pragma once
#include "metadata.h"
@ -31,5 +30,3 @@ public:
void serialize(std::ostream &os) const;
void deSerialize(std::istream &is);
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef KEYCODE_HEADER
#define KEYCODE_HEADER
#pragma once
#include "irrlichttypes.h"
#include "Keycodes.h"
@ -65,5 +64,3 @@ KeyPress getKeySetting(const char *settingname);
void clearKeyCache();
irr::EKEY_CODE keyname_to_keycode(const char *name);
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef LIGHT_HEADER
#define LIGHT_HEADER
#pragma once
#include "irrlichttypes.h"
@ -124,5 +123,3 @@ inline u8 blend_light(u32 daylight_factor, u8 lightday, u8 lightnight)
l = LIGHT_SUN;
return l;
}
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef LOCALPLAYER_HEADER
#define LOCALPLAYER_HEADER
#pragma once
#include "player.h"
#include "environment.h"
@ -183,5 +182,3 @@ private:
GenericCAO *m_cao = nullptr;
Client *m_client;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef LOG_HEADER
#define LOG_HEADER
#pragma once
#include <map>
#include <queue>
@ -212,6 +211,3 @@ extern std::ostream dstream;
#define dout_client (*dout_client_ptr)
#define derr_client (*derr_client_ptr)
#endif
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MAINMENUMANAGER_HEADER
#define MAINMENUMANAGER_HEADER
#pragma once
/*
All kinds of stuff that needs to be exposed from main.cpp
@ -168,6 +167,3 @@ public:
};
extern MainGameCallback *g_gamecallback;
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MAP_HEADER
#define MAP_HEADER
#pragma once
#include <iostream>
#include <sstream>
@ -525,5 +524,3 @@ protected:
*/
std::map<v3s16, u8> m_loaded_blocks;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MAP_SETTINGS_MANAGER_HEADER
#define MAP_SETTINGS_MANAGER_HEADER
#pragma once
#include <string>
@ -75,5 +74,3 @@ private:
Settings *m_map_settings;
Settings *m_user_settings;
};
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MAPBLOCK_HEADER
#define MAPBLOCK_HEADER
#pragma once
#include <set>
#include "debug.h"
@ -671,5 +670,3 @@ inline void getNodeSectorPosWithOffset(const v2s16 &p, v2s16 &block, v2s16 &offs
Get a quick string to describe what a block actually contains
*/
std::string analyze_block(MapBlock *block);
#endif

View File

@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MAPBLOCK_MESH_HEADER
#define MAPBLOCK_MESH_HEADER
#pragma once
#include "irrlichttypes_extrabloated.h"
#include "client/tile.h"
@ -267,6 +266,3 @@ void final_color_blend(video::SColor *result,
// TileFrame vector copy cost very much to client
void getNodeTileN(MapNode mn, v3s16 p, u8 tileindex, MeshMakeData *data, TileSpec &tile);
void getNodeTile(MapNode mn, v3s16 p, v3s16 dir, MeshMakeData *data, TileSpec &tile);
#endif

View File

@ -19,8 +19,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MAPGEN_HEADER
#define MAPGEN_HEADER
#pragma once
#include "noise.h"
#include "nodedef.h"
@ -299,5 +298,3 @@ protected:
float cavern_threshold;
int lava_depth;
};
#endif

View File

@ -19,8 +19,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MAPGEN_CARPATHIAN_HEADER
#define MAPGEN_CARPATHIAN_HEADER
#pragma once
#include "mapgen.h"
@ -101,5 +100,3 @@ private:
float terrainLevelAtPoint(s16 x, s16 z);
int generateTerrain();
};
#endif

View File

@ -18,8 +18,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MAPGEN_FLAT_HEADER
#define MAPGEN_FLAT_HEADER
#pragma once
#include "mapgen.h"
@ -75,5 +74,3 @@ private:
float hill_steepness;
Noise *noise_terrain;
};
#endif

Some files were not shown because too many files have changed in this diff Show More