aboutsummaryrefslogtreecommitdiff
path: root/src/log.cpp
blob: 5798310962016ce7b42c46018030bfc8e59908ca (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*
Minetest-c55
Copyright (C) 2011 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 General Public License as published by
the Free Software Foundation; either version 2 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 General Public License for more details.

You should have received a copy of the GNU 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.
*/

#include "log.h"

#include <map>
#include <list>
#include <sstream>
#include <algorithm>
#include "threads.h"
#include "debug.h"
#include "gettime.h"

std::list<ILogOutput*> log_outputs[LMT_NUM_VALUES];
std::map<threadid_t, std::string> log_threadnames;

void log_add_output(ILogOutput *out, enum LogMessageLevel lev)
{
	log_outputs[lev].push_back(out);
}

void log_add_output_maxlev(ILogOutput *out, enum LogMessageLevel lev)
{
	for(int i=0; i<=lev; i++)
		log_outputs[i].push_back(out);
}

void log_add_output_all_levs(ILogOutput *out)
{
	for(int i=0; i<LMT_NUM_VALUES; i++)
		log_outputs[i].push_back(out);
}

void log_remove_output(ILogOutput *out)
{
	for(int i=0; i<LMT_NUM_VALUES; i++){
		std::list<ILogOutput*>::iterator it =
				std::find(log_outputs[i].begin(), log_outputs[i].end(), out);
		if(it != log_outputs[i].end())
			log_outputs[i].erase(it);
	}
}

void log_register_thread(const std::string &name)
{
	threadid_t id = get_current_thread_id();
	log_threadnames[id] = name;
}

void log_deregister_thread()
{
	threadid_t id = get_current_thread_id();
	log_threadnames.erase(id);
}

static std::string get_lev_string(enum LogMessageLevel lev)
{
	switch(lev){
	case LMT_ERROR:
		return "ERROR";
	case LMT_ACTION:
		return "ACTION";
	case LMT_INFO:
		return "INFO";
	case LMT_VERBOSE:
		return "VERBOSE";
	case LMT_NUM_VALUES:
		break;
	}
	return "(unknown level)";
}

void log_printline(enum LogMessageLevel lev, const std::string &text)
{
	std::string threadname = "(unknown thread)";
	std::map<threadid_t, std::string>::const_iterator i;
	i = log_threadnames.find(get_current_thread_id());
	if(i != log_threadnames.end())
		threadname = i->second;
	std::string levelname = get_lev_string(lev);
	std::ostringstream os(std::ios_base::binary);
	os<<getTimestamp()<<": "<<levelname<<"["<<threadname<<"]: "<<text;
	for(std::list<ILogOutput*>::iterator i = log_outputs[lev].begin();
			i != log_outputs[lev].end(); i++){
		ILogOutput *out = *i;
		out->printLog(os.str());
		out->printLog(os.str(), lev);
		out->printLog(lev, text);
	}
}

class Logbuf : public std::streambuf
{
public:
	Logbuf(enum LogMessageLevel lev):
		m_lev(lev)
	{
	}

	~Logbuf()
	{
	}

	int overflow(int c)
	{
		bufchar(c);
		return c;
	}
	std::streamsize xsputn(const char *s, std::streamsize n)
	{
		for(int i=0; i<n; i++)
			bufchar(s[i]);
		return n;
	}

	void printbuf()
	{
		log_printline(m_lev, m_buf);
	}

	void bufchar(char c)
	{
		if(c == '\n' || c == '\r'){
			if(m_buf != "")
				printbuf();
			m_buf = "";
			return;
		}
		m_buf += c;
	}
	
private:
	enum LogMessageLevel m_lev;
	std::string m_buf;
};

Logbuf errorbuf(LMT_ERROR);
Logbuf actionbuf(LMT_ACTION);
Logbuf infobuf(LMT_INFO);
Logbuf verbosebuf(LMT_VERBOSE);
std::ostream errorstream(&errorbuf);
std::ostream actionstream(&actionbuf);
std::ostream infostream(&infobuf);
std::ostream verbosestream(&verbosebuf);


pan> return "<circular reference>" end dumped[o] = true local t = {} for k,v in pairs(o) do t[#t+1] = "" .. k .. " = " .. dump(v, dumped) end return "{" .. table.concat(t, ", ") .. "}" elseif type(o) == "boolean" then return tostring(o) elseif type(o) == "function" then return "<function>" elseif type(o) == "userdata" then return "<userdata>" elseif type(o) == "nil" then return "nil" else error("cannot dump a " .. type(o)) return nil end end -- Textures: -- Mods should prefix their textures with modname_, eg. given the mod -- name "foomod", a texture could be called "foomod_superfurnace.png" -- -- Global functions: -- minetest.register_entity(name, prototype_table) -- minetest.register_globalstep(func) -- -- Global objects: -- minetest.env - environment reference -- -- Global tables: -- minetest.registered_entities -- ^ List of registered entity prototypes, indexed by name -- minetest.object_refs -- ^ List of object references, indexed by active object id -- minetest.luaentities -- ^ List of lua entities, indexed by active object id -- -- EnvRef methods: -- - add_node(pos, content); pos={x=num, y=num, z=num} -- -- ObjectRef methods: -- - remove(): remove object (after returning from Lua) -- - getpos(): returns {x=num, y=num, z=num} -- - setpos(pos); pos={x=num, y=num, z=num} -- - moveto(pos, continuous=false): interpolated move -- - add_to_inventory(itemstring): add an item to object inventory -- -- Registered entities: -- - Functions receive a "luaentity" as self: -- - It has the member .object, which is an ObjectRef pointing to the object -- - The original prototype stuff is visible directly via a metatable -- print("omg lol") print("minetest dump: "..dump(minetest)) -- Global environment step function function on_step(dtime) -- print("on_step") end minetest.register_globalstep(on_step) minetest.register_tool("WPick", { image = "tool_woodpick.png", basetime = 2.0, dt_weight = 0, dt_crackiness = -0.5, dt_crumbliness = 2, dt_cuttability = 0, basedurability = 30, dd_weight = 0, dd_crackiness = 0, dd_crumbliness = 0, dd_cuttability = 0, }) minetest.register_tool("STPick", { image = "tool_stonepick.png", basetime = 1.5, dt_weight = 0, dt_crackiness = -0.5, dt_crumbliness = 2, dt_cuttability = 0, basedurability = 100, dd_weight = 0, dd_crackiness = 0, dd_crumbliness = 0, dd_cuttability = 0, }) minetest.register_tool("SteelPick", { image = "tool_steelpick.png", basetime = 1.0, dt_weight = 0, dt_crackiness = -0.5, dt_crumbliness = 2, dt_cuttability = 0, basedurability = 333, dd_weight = 0, dd_crackiness = 0, dd_crumbliness = 0, dd_cuttability = 0, }) minetest.register_tool("MesePick", { image = "tool_mesepick.png", basetime = 0, dt_weight = 0, dt_crackiness = 0, dt_crumbliness = 0, dt_cuttability = 0, basedurability = 1337, dd_weight = 0, dd_crackiness = 0, dd_crumbliness = 0, dd_cuttability = 0, }) minetest.register_tool("WShovel", { image = "tool_woodshovel.png", basetime = 2.0, dt_weight = 0.5, dt_crackiness = 2, dt_crumbliness = -1.5, dt_cuttability = 0.3, basedurability = 30, dd_weight = 0, dd_crackiness = 0, dd_crumbliness = 0, dd_cuttability = 0, }) minetest.register_tool("STShovel", { image = "tool_stoneshovel.png", basetime = 1.5, dt_weight = 0.5, dt_crackiness = 2, dt_crumbliness = -1.5, dt_cuttability = 0.1, basedurability = 100, dd_weight = 0, dd_crackiness = 0, dd_crumbliness = 0, dd_cuttability = 0, }) minetest.register_tool("SteelShovel", { image = "tool_steelshovel.png", basetime = 1.0, dt_weight = 0.5, dt_crackiness = 2, dt_crumbliness = -1.5, dt_cuttability = 0.0, basedurability = 330, dd_weight = 0, dd_crackiness = 0, dd_crumbliness = 0, dd_cuttability = 0, }) minetest.register_tool("WAxe", { image = "tool_woodaxe.png", basetime = 2.0, dt_weight = 0.5, dt_crackiness = -0.2, dt_crumbliness = 1, dt_cuttability = -0.5, basedurability = 30, dd_weight = 0, dd_crackiness = 0, dd_crumbliness = 0, dd_cuttability = 0, }) minetest.register_tool("STAxe", { image = "tool_stoneaxe.png", basetime = 1.5, dt_weight = 0.5, dt_crackiness = -0.2, dt_crumbliness = 1, dt_cuttability = -0.5, basedurability = 100, dd_weight = 0, dd_crackiness = 0, dd_crumbliness = 0, dd_cuttability = 0, }) minetest.register_tool("SteelAxe", { image = "tool_steelaxe.png", basetime = 1.0, dt_weight = 0.5, dt_crackiness = -0.2, dt_crumbliness = 1, dt_cuttability = -0.5, basedurability = 330, dd_weight = 0, dd_crackiness = 0, dd_crumbliness = 0, dd_cuttability = 0, }) minetest.register_tool("WSword", { image = "tool_woodsword.png", basetime = 3.0, dt_weight = 3, dt_crackiness = 0, dt_crumbliness = 1, dt_cuttability = -1, basedurability = 30, dd_weight = 0, dd_crackiness = 0, dd_crumbliness = 0, dd_cuttability = 0, }) minetest.register_tool("STSword", { image = "tool_stonesword.png", basetime = 2.5, dt_weight = 3, dt_crackiness = 0, dt_crumbliness = 1, dt_cuttability = -1, basedurability = 100, dd_weight = 0, dd_crackiness = 0, dd_crumbliness = 0, dd_cuttability = 0, }) minetest.register_tool("SteelSword", { image = "tool_steelsword.png", basetime = 2.0, dt_weight = 3, dt_crackiness = 0, dt_crumbliness = 1, dt_cuttability = -1, basedurability = 330, dd_weight = 0, dd_crackiness = 0, dd_crumbliness = 0, dd_cuttability = 0, }) minetest.register_tool("", { image = "", basetime = 0.5, dt_weight = 1, dt_crackiness = 0, dt_crumbliness = -1, dt_cuttability = 0, basedurability = 50, dd_weight = 0, dd_crackiness = 0, dd_crumbliness = 0, dd_cuttability = 0, }) --[[ minetest.register_tool("horribletool", { image = "lava.png", basetime = 2.0 dt_weight = 0.2 dt_crackiness = 0.2 dt_crumbliness = 0.2 dt_cuttability = 0.2 basedurability = 50 dd_weight = -5 dd_crackiness = -5 dd_crumbliness = -5 dd_cuttability = -5 }) --]] local TNT = { -- Maybe handle gravity and collision this way? dunno physical = true, weight = 5, collisionbox = {-0.5,-0.5,-0.5, 0.5,0.5,0.5}, visual = "cube", textures = {"tnt_top.png","tnt_bottom.png","tnt_side.png","tnt_side.png","tnt_side.png","tnt_side.png"}, --visual = "single_sprite", --textures = {"mese.png^[forcesingle"}, -- Initial value for our timer timer = 0, -- List names of state variables, for serializing object state state_variables = {"timer"}, } -- Called periodically function TNT:on_step(dtime) --print("TNT:on_step()") end -- Called when object is punched function TNT:on_punch(hitter) print("TNT:on_punch()") self.object:remove() hitter:add_to_inventory("CraftItem testobject1 1") end -- Called when object is right-clicked function TNT:on_rightclick(clicker) pos = self.object:getpos() pos = {x=pos.x, y=pos.y+0.1, z=pos.z} self.object:moveto(pos, false) end print("TNT dump: "..dump(TNT)) print("Registering TNT"); minetest.register_entity("TNT", TNT) print("minetest.registered_entities:") dump2(minetest.registered_entities) --[[ function TNT:on_rightclick(clicker) print("TNT:on_rightclick()") print("self: "..dump(self)) print("getmetatable(self): "..dump(getmetatable(self))) print("getmetatable(getmetatable(self)): "..dump(getmetatable(getmetatable(self)))) pos = self.object:getpos() print("TNT:on_rightclick(): object position: "..dump(pos)) pos = {x=pos.x+0.5+1, y=pos.y+0.5, z=pos.z+0.5} --minetest.env:add_node(pos, 0) end --]] --[=[ register_block(0, { textures = "stone.png", makefacetype = 0, get_dig_duration = function(env, pos, digger) -- Check stuff like digger.current_tool return 1.5 end, on_dig = function(env, pos, digger) env:remove_node(pos) digger.inventory.put("MaterialItem2 0"); end, }) register_block(1, { textures = {"grass.png","mud.png","mud_grass_side.png","mud_grass_side.png","mud_grass_side.png","mud_grass_side.png"}, makefacetype = 0, get_dig_duration = function(env, pos, digger) -- Check stuff like digger.current_tool return 0.5 end, on_dig = function(env, pos, digger) env:remove_node(pos) digger.inventory.put("MaterialItem2 1"); end, }) -- Consider the "miscellaneous block namespace" to be 0xc00...0xfff = 3072...4095 register_block(3072, { textures = {"tnt_top.png","tnt_bottom.png","tnt_side.png","tnt_side.png","tnt_side.png","tnt_side.png"}, makefacetype = 0, get_dig_duration = function(env, pos, digger) -- Cannot be dug return nil end, -- on_dig = function(env, pos, digger) end, -- Not implemented on_hit = function(env, pos, hitter) -- Replace with TNT object, which will explode after timer, follow gravity, blink and stuff env:add_object("tnt", pos) env:remove_node(pos) end,