From c8b4bedaa89ac5246161b1bb9e3826dcce083fcf Mon Sep 17 00:00:00 2001 From: Tim Date: Sat, 23 Jul 2016 13:29:53 +0200 Subject: Builtin: Add core.MAP_BLOCKSIZE constant --- builtin/game/constants.lua | 5 +++++ builtin/game/forceloading.lua | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'builtin') diff --git a/builtin/game/constants.lua b/builtin/game/constants.lua index d0b7c753c..56fca9289 100644 --- a/builtin/game/constants.lua +++ b/builtin/game/constants.lua @@ -4,14 +4,19 @@ -- Constants values for use with the Lua API -- +-- mapnode.h -- Built-in Content IDs (for use with VoxelManip API) core.CONTENT_UNKNOWN = 125 core.CONTENT_AIR = 126 core.CONTENT_IGNORE = 127 +-- emerge.h -- Block emerge status constants (for use with core.emerge_area) core.EMERGE_CANCELLED = 0 core.EMERGE_ERRORED = 1 core.EMERGE_FROM_MEMORY = 2 core.EMERGE_FROM_DISK = 3 core.EMERGE_GENERATED = 4 + +-- constants.h +core.MAP_BLOCKSIZE = 16 diff --git a/builtin/game/forceloading.lua b/builtin/game/forceloading.lua index 8c9fbf512..468572e6e 100644 --- a/builtin/game/forceloading.lua +++ b/builtin/game/forceloading.lua @@ -7,7 +7,7 @@ core.forceload_free_block = nil local blocks_forceloaded local total_forceloaded = 0 -local BLOCKSIZE = 16 +local BLOCKSIZE = core.MAP_BLOCKSIZE local function get_blockpos(pos) return { x = math.floor(pos.x/BLOCKSIZE), -- cgit v1.2.3 modifiedstate.h?h=release&id=da9707950e0f69d8a906572fc55f516277e057c4'>treecommitdiff
path: root/src/modifiedstate.h
blob: 98004619f0da3341f26b20308ddeed1ddc79fc75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
Minetest-c55
Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.

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 MODIFIEDSTATE_HEADER
#define MODIFIEDSTATE_HEADER

enum ModifiedState
{
	// Has not been modified.