2010-11-26 18:02:21 -05:00
|
|
|
/*
|
2010-11-27 10:18:34 -05:00
|
|
|
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 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.
|
|
|
|
*/
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2010-11-27 10:18:34 -05:00
|
|
|
/*
|
|
|
|
=============================== NOTES ==============================
|
2010-11-29 16:07:03 -05:00
|
|
|
NOTE: Things starting with TODO are sometimes only suggestions.
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
NOTE: VBO cannot be turned on for fast-changing stuff because there
|
2010-11-29 03:52:07 -05:00
|
|
|
is an apparanet memory leak in irrlicht when using it (not sure)
|
|
|
|
|
|
|
|
NOTE: iostream.imbue(std::locale("C")) is very slow
|
|
|
|
NOTE: Global locale is now set at initialization
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2010-12-18 06:10:37 -05:00
|
|
|
SUGG: Fix address to be ipv6 compatible
|
2010-11-29 03:52:07 -05:00
|
|
|
|
2010-12-18 06:10:37 -05:00
|
|
|
FIXME: When a new sector is generated, it may change the ground level
|
|
|
|
of it's and it's neighbors border that two blocks that are
|
|
|
|
above and below each other and that are generated before and
|
|
|
|
after the sector heightmap generation (order doesn't matter),
|
|
|
|
can have a small gap between each other at the border.
|
|
|
|
SUGGESTION: Use same technique for sector heightmaps as what we're
|
|
|
|
using for UnlimitedHeightmap? (getting all neighbors
|
|
|
|
when generating)
|
|
|
|
|
|
|
|
SUGG: Transfer more blocks in a single packet
|
|
|
|
SUGG: A blockdata combiner class, to which blocks are added and at
|
|
|
|
destruction it sends all the stuff in as few packets as possible.
|
|
|
|
|
|
|
|
SUGG: If player is on ground, mainly fetch ground-level blocks
|
|
|
|
SUGG: Fetch stuff mainly from the viewing direction
|
|
|
|
|
|
|
|
SUGG: Expose Connection's seqnums and ACKs to server and client.
|
|
|
|
- This enables saving many packets and making a faster connection
|
|
|
|
- This also enables server to check if client has received the
|
|
|
|
most recent block sent, for example.
|
|
|
|
SUGG: Add a sane bandwidth throttling system to Connection
|
|
|
|
|
|
|
|
SUGG: More fine-grained control of client's dumping of blocks from
|
|
|
|
memory
|
|
|
|
- ...What does this mean in the first place?
|
|
|
|
|
|
|
|
SUGG: A map editing mode (similar to dedicated server mode)
|
|
|
|
|
|
|
|
SUGG: Add a time value to the param of footstepped grass and check it
|
|
|
|
against a global timer when a block is accessed, to make old
|
|
|
|
steps fade away.
|
|
|
|
|
|
|
|
SUGG: Make a copy of close-range environment on client for showing
|
|
|
|
on screen, with minimal mutexes to slow down the main loop
|
|
|
|
|
|
|
|
SUGG: Make a PACKET_COMBINED which contains many subpackets. Utilize
|
|
|
|
it by sending more stuff in a single packet.
|
|
|
|
- Add a packet queue to RemoteClient, from which packets will be
|
|
|
|
combined with object data packets
|
|
|
|
- This is not exactly trivial: the object data packets are
|
|
|
|
sometimes very big by themselves
|
|
|
|
|
|
|
|
SUGG: Split MapBlockObject serialization to to-client and to-disk
|
|
|
|
- This will allow saving ages of rats on disk but not sending
|
|
|
|
them to clients
|
|
|
|
|
|
|
|
SUGG: Implement lighting using VoxelManipulator
|
|
|
|
- Would it be significantly faster?
|
|
|
|
|
|
|
|
FIXME: Rats somehow go underground sometimes (you can see it in water)
|
|
|
|
- Does their position get saved to a border value or something?
|
|
|
|
- Does this happen anymore?
|
|
|
|
|
|
|
|
SUGG: MovingObject::move and Player::move are basically the same.
|
|
|
|
combine them.
|
|
|
|
|
|
|
|
SUGG: Implement a "Fast check queue" (a queue with a map for checking
|
|
|
|
if something is already in it)
|
|
|
|
- Use it in active block queue in water flowing
|
|
|
|
|
|
|
|
SUGG: Signs could be done in the same way as torches. For this, blocks
|
|
|
|
need an additional metadata field for the texts
|
|
|
|
|
|
|
|
SUGG: Precalculate lighting translation table at runtime (at startup)
|
|
|
|
|
|
|
|
SUGG: A version number to blocks, which increments when the block is
|
|
|
|
modified (node add/remove, water update, lighting update)
|
|
|
|
- This can then be used to make sure the most recent version of
|
|
|
|
a block has been sent to client
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
TODO: Stop player if focus of window is taken away (go to pause mode)
|
2010-12-18 06:10:37 -05:00
|
|
|
|
|
|
|
TODO: Combine MapBlock's face caches to so big pieces that VBO
|
|
|
|
gets used
|
|
|
|
- That is >500 vertices
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
TODO: Better dungeons
|
2010-12-18 06:10:37 -05:00
|
|
|
TODO: Cliffs, arcs
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
TODO: Menus
|
|
|
|
|
|
|
|
TODO: Mobs
|
|
|
|
- Server:
|
|
|
|
- One single map container with ids as keys
|
|
|
|
- Client:
|
|
|
|
- ?
|
|
|
|
TODO: - Keep track of the place of the mob in the last few hundreth's
|
|
|
|
of a second - then, if a player hits it, take the value that is
|
|
|
|
avg_rtt/2 before the moment the packet is received.
|
|
|
|
TODO: - Scripting
|
|
|
|
|
2010-11-29 16:07:03 -05:00
|
|
|
TODO: Moving players more smoothly. Calculate moving animation
|
|
|
|
in a way that doesn't make the player jump to the right place
|
|
|
|
immediately when the server sends a new position
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
TODO: There are some lighting-related todos and fixmes in
|
|
|
|
ServerMap::emergeBlock
|
|
|
|
|
2010-12-01 08:20:12 -05:00
|
|
|
TODO: Proper handling of spawning place (try to find something that
|
|
|
|
is not in the middle of an ocean (some land to stand on at
|
|
|
|
least) and save it in map config.
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
TODO: Make the amount of blocks sending to client and the total
|
|
|
|
amount of blocks dynamically limited. Transferring blocks is the
|
|
|
|
main network eater of this system, so it is the one that has
|
|
|
|
to be throttled so that RTTs stay low.
|
|
|
|
|
|
|
|
TODO: Server to load starting inventory from disk
|
|
|
|
|
2010-12-18 06:10:37 -05:00
|
|
|
TODO: Players to only be hidden when the client quits.
|
2010-11-26 18:02:21 -05:00
|
|
|
TODO: - Players to be saved on disk, with inventory
|
|
|
|
TODO: Players to be saved as text in map/players/<name>
|
|
|
|
|
|
|
|
TODO: Make fetching sector's blocks more efficient when rendering
|
|
|
|
sectors that have very large amounts of blocks (on client)
|
|
|
|
|
|
|
|
TODO: Make the video backend selectable
|
|
|
|
|
2010-11-27 10:18:34 -05:00
|
|
|
Block object server side:
|
2010-11-26 18:02:21 -05:00
|
|
|
- A "near blocks" buffer, in which some nearby blocks are stored.
|
|
|
|
- For all blocks in the buffer, objects are stepped(). This
|
|
|
|
means they are active.
|
2010-11-29 03:52:07 -05:00
|
|
|
- TODO: A global active buffer is needed for the server
|
2010-12-18 06:10:37 -05:00
|
|
|
- TODO: A timestamp to blocks
|
2010-11-29 03:52:07 -05:00
|
|
|
- TODO: All blocks going in and out of the buffer are recorded.
|
2010-12-18 06:10:37 -05:00
|
|
|
- TODO: For outgoing blocks, timestamp is written.
|
|
|
|
- TODO: For incoming blocks, time difference is calculated and
|
2010-11-26 18:02:21 -05:00
|
|
|
objects are stepped according to it.
|
2010-11-29 03:52:07 -05:00
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
TODO: Add config parameters for server's sending and generating distance
|
|
|
|
|
|
|
|
TODO: Copy the text of the last picked sign to inventory in creative
|
|
|
|
mode
|
|
|
|
|
|
|
|
TODO: Untie client network operations from framerate
|
2010-11-29 16:07:03 -05:00
|
|
|
- Needs some input queues or something
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2010-11-29 03:52:07 -05:00
|
|
|
TODO: Get rid of GotSplitPacketException
|
|
|
|
|
|
|
|
TODO: Check what goes wrong with caching map to disk (Kray)
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2010-11-29 07:03:40 -05:00
|
|
|
TODO: Remove LazyMeshUpdater. It is not used as supposed.
|
|
|
|
|
2010-12-19 09:51:45 -05:00
|
|
|
TODO: Add server unused sector deletion settings to settings
|
|
|
|
|
|
|
|
TODO: TOSERVER_LEAVE
|
|
|
|
|
2010-12-12 07:33:13 -05:00
|
|
|
Doing now:
|
|
|
|
======================================================================
|
2010-12-01 08:20:12 -05:00
|
|
|
|
2010-12-20 07:04:31 -05:00
|
|
|
TODO: Node cracking animation when digging
|
|
|
|
- TODO: A way to generate new textures by combining textures
|
|
|
|
- TODO: Mesh update to fetch cracked faces from the former
|
|
|
|
|
2010-12-20 15:03:49 -05:00
|
|
|
TODO: A thread-safe wrapper for irrlicht for threads, to get rid of
|
|
|
|
g_device
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
======================================================================
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Setting this to 1 enables a special camera mode that forces
|
|
|
|
the renderers to think that the camera statically points from
|
|
|
|
the starting place to a static direction.
|
|
|
|
|
|
|
|
This allows one to move around with the player and see what
|
2010-11-29 03:52:07 -05:00
|
|
|
is actually drawn behind solid things and behind the player.
|
2010-11-26 18:02:21 -05:00
|
|
|
*/
|
|
|
|
#define FIELD_OF_VIEW_TEST 0
|
|
|
|
|
|
|
|
#ifdef UNITTEST_DISABLE
|
|
|
|
#ifdef _WIN32
|
|
|
|
#pragma message ("Disabling unit tests")
|
|
|
|
#else
|
|
|
|
#warning "Disabling unit tests"
|
|
|
|
#endif
|
|
|
|
// Disable unit tests
|
|
|
|
#define ENABLE_TESTS 0
|
|
|
|
#else
|
|
|
|
// Enable unit tests
|
|
|
|
#define ENABLE_TESTS 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma comment(lib, "Irrlicht.lib")
|
|
|
|
#pragma comment(lib, "jthread.lib")
|
2010-12-13 18:56:24 -05:00
|
|
|
#pragma comment(lib, "zlibwapi.lib")
|
2010-11-26 18:02:21 -05:00
|
|
|
// This would get rid of the console window
|
|
|
|
//#pragma comment(linker, "/subsystem:windows /ENTRY:mainCRTStartup")
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
|
|
|
#define sleep_ms(x) Sleep(x)
|
|
|
|
#else
|
|
|
|
#include <unistd.h>
|
|
|
|
#define sleep_ms(x) usleep(x*1000)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <time.h>
|
|
|
|
#include <jmutexautolock.h>
|
2010-12-13 20:07:13 -05:00
|
|
|
#include <locale.h>
|
2010-11-26 18:02:21 -05:00
|
|
|
#include "common_irrlicht.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "map.h"
|
|
|
|
#include "player.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "test.h"
|
|
|
|
#include "environment.h"
|
|
|
|
#include "server.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "serialization.h"
|
|
|
|
#include "constants.h"
|
|
|
|
#include "strfnd.h"
|
|
|
|
#include "porting.h"
|
2010-12-13 20:07:13 -05:00
|
|
|
#include "guiPauseMenu.h"
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2010-12-20 15:03:49 -05:00
|
|
|
IrrlichtWrapper *g_irrlicht;
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
// All range-related stuff below is locked behind this
|
|
|
|
JMutex g_range_mutex;
|
|
|
|
|
|
|
|
// Blocks are viewed in this range from the player
|
|
|
|
s16 g_viewing_range_nodes = 60;
|
2010-12-14 06:14:43 -05:00
|
|
|
//s16 g_viewing_range_nodes = 0;
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
// This is updated by the client's fetchBlocks routine
|
|
|
|
//s16 g_actual_viewing_range_nodes = VIEWING_RANGE_NODES_DEFAULT;
|
|
|
|
|
|
|
|
// If true, the preceding value has no meaning and all blocks
|
|
|
|
// already existing in memory are drawn
|
|
|
|
bool g_viewing_range_all = false;
|
|
|
|
|
|
|
|
// This is the freetime ratio imposed by the dynamic viewing
|
|
|
|
// range changing code.
|
|
|
|
// It is controlled by the main loop to the smallest value that
|
|
|
|
// inhibits glitches (dtime jitter) in the main loop.
|
|
|
|
//float g_freetime_ratio = FREETIME_RATIO_MAX;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Settings.
|
|
|
|
These are loaded from the config file.
|
|
|
|
*/
|
|
|
|
|
2010-11-29 03:52:07 -05:00
|
|
|
Settings g_settings;
|
|
|
|
|
2010-12-20 07:04:31 -05:00
|
|
|
extern void set_default_settings();
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Random stuff
|
|
|
|
*/
|
|
|
|
|
|
|
|
//u16 g_selected_material = 0;
|
|
|
|
u16 g_selected_item = 0;
|
|
|
|
|
|
|
|
bool g_esc_pressed = false;
|
|
|
|
|
|
|
|
std::wstring g_text_buffer;
|
|
|
|
bool g_text_buffer_accepted = false;
|
|
|
|
|
|
|
|
// When true, the mouse and keyboard are grabbed
|
|
|
|
bool g_game_focused = true;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Debug streams
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Connection
|
|
|
|
std::ostream *dout_con_ptr = &dummyout;
|
|
|
|
std::ostream *derr_con_ptr = &dstream_no_stderr;
|
|
|
|
//std::ostream *dout_con_ptr = &dstream_no_stderr;
|
|
|
|
//std::ostream *derr_con_ptr = &dstream_no_stderr;
|
|
|
|
//std::ostream *dout_con_ptr = &dstream;
|
|
|
|
//std::ostream *derr_con_ptr = &dstream;
|
|
|
|
|
|
|
|
// Server
|
|
|
|
std::ostream *dout_server_ptr = &dstream;
|
|
|
|
std::ostream *derr_server_ptr = &dstream;
|
|
|
|
|
|
|
|
// Client
|
|
|
|
std::ostream *dout_client_ptr = &dstream;
|
|
|
|
std::ostream *derr_client_ptr = &dstream;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Timestamp stuff
|
|
|
|
*/
|
|
|
|
|
|
|
|
JMutex g_timestamp_mutex;
|
|
|
|
//std::string g_timestamp;
|
|
|
|
|
|
|
|
std::string getTimestamp()
|
|
|
|
{
|
|
|
|
if(g_timestamp_mutex.IsInitialized()==false)
|
|
|
|
return "";
|
|
|
|
JMutexAutoLock lock(g_timestamp_mutex);
|
|
|
|
//return g_timestamp;
|
|
|
|
time_t t = time(NULL);
|
|
|
|
struct tm *tm = localtime(&t);
|
|
|
|
char cs[20];
|
|
|
|
strftime(cs, 20, "%H:%M:%S", tm);
|
|
|
|
return cs;
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyEventReceiver : public IEventReceiver
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// This is the one method that we have to implement
|
|
|
|
virtual bool OnEvent(const SEvent& event)
|
|
|
|
{
|
|
|
|
// Remember whether each key is down or up
|
|
|
|
if(event.EventType == irr::EET_KEY_INPUT_EVENT)
|
|
|
|
{
|
|
|
|
keyIsDown[event.KeyInput.Key] = event.KeyInput.PressedDown;
|
|
|
|
|
|
|
|
if(event.KeyInput.PressedDown)
|
|
|
|
{
|
|
|
|
//dstream<<"Pressed key: "<<(char)event.KeyInput.Key<<std::endl;
|
|
|
|
if(g_game_focused == false)
|
|
|
|
{
|
|
|
|
s16 key = event.KeyInput.Key;
|
|
|
|
if(key == irr::KEY_RETURN || key == irr::KEY_ESCAPE)
|
|
|
|
{
|
|
|
|
g_text_buffer_accepted = true;
|
|
|
|
}
|
|
|
|
else if(key == irr::KEY_BACK)
|
|
|
|
{
|
|
|
|
if(g_text_buffer.size() > 0)
|
|
|
|
g_text_buffer = g_text_buffer.substr
|
|
|
|
(0, g_text_buffer.size()-1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wchar_t wc = event.KeyInput.Char;
|
|
|
|
if(wc != 0)
|
|
|
|
g_text_buffer += wc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(event.KeyInput.Key == irr::KEY_ESCAPE)
|
|
|
|
{
|
2010-12-13 20:07:13 -05:00
|
|
|
//TODO: Not used anymore?
|
2010-11-26 18:02:21 -05:00
|
|
|
if(g_game_focused == true)
|
|
|
|
{
|
|
|
|
dstream<<DTIME<<"ESC pressed"<<std::endl;
|
|
|
|
g_esc_pressed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Material selection
|
|
|
|
if(event.KeyInput.Key == irr::KEY_KEY_F)
|
|
|
|
{
|
|
|
|
if(g_game_focused == true)
|
|
|
|
{
|
|
|
|
if(g_selected_item < PLAYER_INVENTORY_SIZE-1)
|
|
|
|
g_selected_item++;
|
|
|
|
else
|
|
|
|
g_selected_item = 0;
|
|
|
|
dstream<<DTIME<<"Selected item: "
|
|
|
|
<<g_selected_item<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Viewing range selection
|
|
|
|
if(event.KeyInput.Key == irr::KEY_KEY_R
|
|
|
|
&& g_game_focused)
|
|
|
|
{
|
|
|
|
JMutexAutoLock lock(g_range_mutex);
|
|
|
|
if(g_viewing_range_all)
|
|
|
|
{
|
|
|
|
g_viewing_range_all = false;
|
|
|
|
dstream<<DTIME<<"Disabled full viewing range"<<std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_viewing_range_all = true;
|
|
|
|
dstream<<DTIME<<"Enabled full viewing range"<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
2010-11-29 10:55:07 -05:00
|
|
|
|
|
|
|
// Print debug stacks
|
|
|
|
if(event.KeyInput.Key == irr::KEY_KEY_P
|
|
|
|
&& g_game_focused)
|
|
|
|
{
|
|
|
|
dstream<<"-----------------------------------------"
|
|
|
|
<<std::endl;
|
|
|
|
dstream<<DTIME<<"Printing debug stacks:"<<std::endl;
|
|
|
|
dstream<<"-----------------------------------------"
|
|
|
|
<<std::endl;
|
|
|
|
debug_stacks_print();
|
|
|
|
}
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(event.EventType == irr::EET_MOUSE_INPUT_EVENT)
|
|
|
|
{
|
2010-12-18 06:10:37 -05:00
|
|
|
left_active = event.MouseInput.isLeftPressed();
|
|
|
|
middle_active = event.MouseInput.isMiddlePressed();
|
|
|
|
right_active = event.MouseInput.isRightPressed();
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
if(event.MouseInput.Event == EMIE_LMOUSE_PRESSED_DOWN)
|
|
|
|
{
|
|
|
|
leftclicked = true;
|
|
|
|
}
|
|
|
|
if(event.MouseInput.Event == EMIE_RMOUSE_PRESSED_DOWN)
|
|
|
|
{
|
|
|
|
rightclicked = true;
|
|
|
|
}
|
2010-12-18 06:10:37 -05:00
|
|
|
if(event.MouseInput.Event == EMIE_LMOUSE_LEFT_UP)
|
|
|
|
{
|
|
|
|
leftreleased = true;
|
|
|
|
}
|
|
|
|
if(event.MouseInput.Event == EMIE_RMOUSE_LEFT_UP)
|
|
|
|
{
|
|
|
|
rightreleased = true;
|
|
|
|
}
|
2010-11-26 18:02:21 -05:00
|
|
|
if(event.MouseInput.Event == EMIE_MOUSE_WHEEL)
|
|
|
|
{
|
|
|
|
/*dstream<<"event.MouseInput.Wheel="
|
|
|
|
<<event.MouseInput.Wheel<<std::endl;*/
|
|
|
|
if(event.MouseInput.Wheel < 0)
|
|
|
|
{
|
|
|
|
if(g_selected_item < PLAYER_INVENTORY_SIZE-1)
|
|
|
|
g_selected_item++;
|
|
|
|
else
|
|
|
|
g_selected_item = 0;
|
|
|
|
}
|
|
|
|
else if(event.MouseInput.Wheel > 0)
|
|
|
|
{
|
|
|
|
if(g_selected_item > 0)
|
|
|
|
g_selected_item--;
|
|
|
|
else
|
|
|
|
g_selected_item = PLAYER_INVENTORY_SIZE-1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is used to check whether a key is being held down
|
|
|
|
virtual bool IsKeyDown(EKEY_CODE keyCode) const
|
|
|
|
{
|
|
|
|
return keyIsDown[keyCode];
|
|
|
|
}
|
|
|
|
|
|
|
|
MyEventReceiver()
|
|
|
|
{
|
|
|
|
for (u32 i=0; i<KEY_KEY_CODES_COUNT; ++i)
|
|
|
|
keyIsDown[i] = false;
|
|
|
|
leftclicked = false;
|
|
|
|
rightclicked = false;
|
2010-12-18 06:10:37 -05:00
|
|
|
leftreleased = false;
|
|
|
|
rightreleased = false;
|
|
|
|
|
|
|
|
left_active = false;
|
|
|
|
middle_active = false;
|
|
|
|
right_active = false;
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
bool leftclicked;
|
|
|
|
bool rightclicked;
|
2010-12-18 06:10:37 -05:00
|
|
|
bool leftreleased;
|
|
|
|
bool rightreleased;
|
|
|
|
|
|
|
|
bool left_active;
|
|
|
|
bool middle_active;
|
|
|
|
bool right_active;
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
private:
|
|
|
|
// We use this array to store the current state of each key
|
|
|
|
bool keyIsDown[KEY_KEY_CODES_COUNT];
|
|
|
|
//s32 mouseX;
|
|
|
|
//s32 mouseY;
|
|
|
|
};
|
|
|
|
|
|
|
|
class InputHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
InputHandler()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
virtual ~InputHandler()
|
|
|
|
{
|
|
|
|
}
|
2010-12-18 06:10:37 -05:00
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
virtual bool isKeyDown(EKEY_CODE keyCode) = 0;
|
2010-12-18 06:10:37 -05:00
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
virtual v2s32 getMousePos() = 0;
|
|
|
|
virtual void setMousePos(s32 x, s32 y) = 0;
|
2010-12-18 06:10:37 -05:00
|
|
|
|
|
|
|
virtual bool getLeftState() = 0;
|
|
|
|
virtual bool getRightState() = 0;
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
virtual bool getLeftClicked() = 0;
|
|
|
|
virtual bool getRightClicked() = 0;
|
|
|
|
virtual void resetLeftClicked() = 0;
|
|
|
|
virtual void resetRightClicked() = 0;
|
2010-12-18 06:10:37 -05:00
|
|
|
|
|
|
|
virtual bool getLeftReleased() = 0;
|
|
|
|
virtual bool getRightReleased() = 0;
|
|
|
|
virtual void resetLeftReleased() = 0;
|
|
|
|
virtual void resetRightReleased() = 0;
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
virtual void step(float dtime) {};
|
|
|
|
|
|
|
|
virtual void clear() {};
|
|
|
|
};
|
|
|
|
|
|
|
|
InputHandler *g_input = NULL;
|
|
|
|
|
|
|
|
void focusGame()
|
|
|
|
{
|
|
|
|
g_input->clear();
|
|
|
|
g_game_focused = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void unFocusGame()
|
|
|
|
{
|
|
|
|
g_game_focused = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
class RealInputHandler : public InputHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RealInputHandler(IrrlichtDevice *device, MyEventReceiver *receiver):
|
|
|
|
m_device(device),
|
|
|
|
m_receiver(receiver)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
virtual bool isKeyDown(EKEY_CODE keyCode)
|
|
|
|
{
|
|
|
|
return m_receiver->IsKeyDown(keyCode);
|
|
|
|
}
|
|
|
|
virtual v2s32 getMousePos()
|
|
|
|
{
|
|
|
|
return m_device->getCursorControl()->getPosition();
|
|
|
|
}
|
|
|
|
virtual void setMousePos(s32 x, s32 y)
|
|
|
|
{
|
|
|
|
m_device->getCursorControl()->setPosition(x, y);
|
|
|
|
}
|
|
|
|
|
2010-12-18 06:10:37 -05:00
|
|
|
virtual bool getLeftState()
|
|
|
|
{
|
|
|
|
return m_receiver->left_active;
|
|
|
|
}
|
|
|
|
virtual bool getRightState()
|
|
|
|
{
|
|
|
|
return m_receiver->right_active;
|
|
|
|
}
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
virtual bool getLeftClicked()
|
|
|
|
{
|
|
|
|
if(g_game_focused == false)
|
|
|
|
return false;
|
|
|
|
return m_receiver->leftclicked;
|
|
|
|
}
|
|
|
|
virtual bool getRightClicked()
|
|
|
|
{
|
|
|
|
if(g_game_focused == false)
|
|
|
|
return false;
|
|
|
|
return m_receiver->rightclicked;
|
|
|
|
}
|
|
|
|
virtual void resetLeftClicked()
|
|
|
|
{
|
|
|
|
m_receiver->leftclicked = false;
|
|
|
|
}
|
|
|
|
virtual void resetRightClicked()
|
|
|
|
{
|
|
|
|
m_receiver->rightclicked = false;
|
|
|
|
}
|
|
|
|
|
2010-12-18 06:10:37 -05:00
|
|
|
virtual bool getLeftReleased()
|
|
|
|
{
|
|
|
|
if(g_game_focused == false)
|
|
|
|
return false;
|
|
|
|
return m_receiver->leftreleased;
|
|
|
|
}
|
|
|
|
virtual bool getRightReleased()
|
|
|
|
{
|
|
|
|
if(g_game_focused == false)
|
|
|
|
return false;
|
|
|
|
return m_receiver->rightreleased;
|
|
|
|
}
|
|
|
|
virtual void resetLeftReleased()
|
|
|
|
{
|
|
|
|
m_receiver->leftreleased = false;
|
|
|
|
}
|
|
|
|
virtual void resetRightReleased()
|
|
|
|
{
|
|
|
|
m_receiver->rightreleased = false;
|
|
|
|
}
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
void clear()
|
|
|
|
{
|
|
|
|
resetRightClicked();
|
|
|
|
resetLeftClicked();
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
IrrlichtDevice *m_device;
|
|
|
|
MyEventReceiver *m_receiver;
|
|
|
|
};
|
|
|
|
|
|
|
|
class RandomInputHandler : public InputHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RandomInputHandler()
|
|
|
|
{
|
|
|
|
leftclicked = false;
|
|
|
|
rightclicked = false;
|
|
|
|
for(u32 i=0; i<KEY_KEY_CODES_COUNT; ++i)
|
|
|
|
keydown[i] = false;
|
|
|
|
}
|
|
|
|
virtual bool isKeyDown(EKEY_CODE keyCode)
|
|
|
|
{
|
|
|
|
return keydown[keyCode];
|
|
|
|
}
|
|
|
|
virtual v2s32 getMousePos()
|
|
|
|
{
|
|
|
|
return mousepos;
|
|
|
|
}
|
|
|
|
virtual void setMousePos(s32 x, s32 y)
|
|
|
|
{
|
|
|
|
mousepos = v2s32(x,y);
|
|
|
|
}
|
|
|
|
|
2010-12-18 06:10:37 -05:00
|
|
|
virtual bool getLeftState()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
virtual bool getRightState()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
virtual bool getLeftClicked()
|
|
|
|
{
|
|
|
|
return leftclicked;
|
|
|
|
}
|
|
|
|
virtual bool getRightClicked()
|
|
|
|
{
|
|
|
|
return rightclicked;
|
|
|
|
}
|
|
|
|
virtual void resetLeftClicked()
|
|
|
|
{
|
|
|
|
leftclicked = false;
|
|
|
|
}
|
|
|
|
virtual void resetRightClicked()
|
|
|
|
{
|
|
|
|
rightclicked = false;
|
|
|
|
}
|
|
|
|
|
2010-12-18 06:10:37 -05:00
|
|
|
virtual bool getLeftReleased()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
virtual bool getRightReleased()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
virtual void resetLeftReleased()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
virtual void resetRightReleased()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
virtual void step(float dtime)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
static float counter1 = 0;
|
|
|
|
counter1 -= dtime;
|
|
|
|
if(counter1 < 0.0)
|
|
|
|
{
|
|
|
|
counter1 = 0.1*Rand(1,10);
|
2010-12-12 20:19:12 -05:00
|
|
|
/*if(g_selected_material < USEFUL_CONTENT_COUNT-1)
|
2010-11-26 18:02:21 -05:00
|
|
|
g_selected_material++;
|
|
|
|
else
|
|
|
|
g_selected_material = 0;*/
|
|
|
|
if(g_selected_item < PLAYER_INVENTORY_SIZE-1)
|
|
|
|
g_selected_item++;
|
|
|
|
else
|
|
|
|
g_selected_item = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
static float counter1 = 0;
|
|
|
|
counter1 -= dtime;
|
|
|
|
if(counter1 < 0.0)
|
|
|
|
{
|
|
|
|
counter1 = 0.1*Rand(1, 40);
|
|
|
|
keydown[irr::KEY_SPACE] = !keydown[irr::KEY_SPACE];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
static float counter1 = 0;
|
|
|
|
counter1 -= dtime;
|
|
|
|
if(counter1 < 0.0)
|
|
|
|
{
|
|
|
|
counter1 = 0.1*Rand(1, 40);
|
|
|
|
keydown[irr::KEY_KEY_2] = !keydown[irr::KEY_KEY_2];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
static float counter1 = 0;
|
|
|
|
counter1 -= dtime;
|
|
|
|
if(counter1 < 0.0)
|
|
|
|
{
|
|
|
|
counter1 = 0.1*Rand(1, 40);
|
|
|
|
keydown[irr::KEY_KEY_W] = !keydown[irr::KEY_KEY_W];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
static float counter1 = 0;
|
|
|
|
counter1 -= dtime;
|
|
|
|
if(counter1 < 0.0)
|
|
|
|
{
|
|
|
|
counter1 = 0.1*Rand(1, 40);
|
|
|
|
keydown[irr::KEY_KEY_A] = !keydown[irr::KEY_KEY_A];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
static float counter1 = 0;
|
|
|
|
counter1 -= dtime;
|
|
|
|
if(counter1 < 0.0)
|
|
|
|
{
|
|
|
|
counter1 = 0.1*Rand(1, 20);
|
|
|
|
mousespeed = v2s32(Rand(-20,20), Rand(-15,20));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
static float counter1 = 0;
|
|
|
|
counter1 -= dtime;
|
|
|
|
if(counter1 < 0.0)
|
|
|
|
{
|
|
|
|
counter1 = 0.1*Rand(1, 30);
|
|
|
|
leftclicked = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
static float counter1 = 0;
|
|
|
|
counter1 -= dtime;
|
|
|
|
if(counter1 < 0.0)
|
|
|
|
{
|
|
|
|
counter1 = 0.1*Rand(1, 20);
|
|
|
|
rightclicked = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mousepos += mousespeed;
|
|
|
|
}
|
|
|
|
|
|
|
|
s32 Rand(s32 min, s32 max)
|
|
|
|
{
|
|
|
|
return (rand()%(max-min+1))+min;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
bool keydown[KEY_KEY_CODES_COUNT];
|
|
|
|
v2s32 mousepos;
|
|
|
|
v2s32 mousespeed;
|
|
|
|
bool leftclicked;
|
|
|
|
bool rightclicked;
|
|
|
|
};
|
|
|
|
|
|
|
|
void updateViewingRange(f32 frametime, Client *client)
|
|
|
|
{
|
|
|
|
// Range_all messes up frametime_avg
|
|
|
|
if(g_viewing_range_all == true)
|
|
|
|
return;
|
2010-11-29 03:52:07 -05:00
|
|
|
|
|
|
|
float wanted_fps = g_settings.getFloat("wanted_fps");
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
// Initialize to the target value
|
2010-11-29 03:52:07 -05:00
|
|
|
static float frametime_avg = 1.0/wanted_fps;
|
2010-12-19 09:51:45 -05:00
|
|
|
//frametime_avg = frametime_avg * 0.9 + frametime * 0.1;
|
|
|
|
frametime_avg = frametime_avg * 0.7 + frametime * 0.3;
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
static f32 counter = 0;
|
|
|
|
if(counter > 0){
|
|
|
|
counter -= frametime;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
//counter = 1.0; //seconds
|
|
|
|
counter = 0.5; //seconds
|
|
|
|
|
|
|
|
//float freetime_ratio = 0.2;
|
|
|
|
//float freetime_ratio = 0.4;
|
|
|
|
float freetime_ratio = FREETIME_RATIO;
|
|
|
|
|
2010-11-29 03:52:07 -05:00
|
|
|
float frametime_wanted = (1.0/(wanted_fps/(1.0-freetime_ratio)));
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
float fraction = sqrt(frametime_avg / frametime_wanted);
|
|
|
|
|
2010-12-19 09:51:45 -05:00
|
|
|
/*float fraction = sqrt(frametime_avg / frametime_wanted) / 2.0
|
|
|
|
+ frametime_avg / frametime_wanted / 2.0;*/
|
|
|
|
|
|
|
|
//float fraction = frametime_avg / frametime_wanted;
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
static bool fraction_is_good = false;
|
|
|
|
|
2010-12-20 15:03:49 -05:00
|
|
|
//float fraction_good_threshold = 0.1;
|
2010-12-14 06:14:43 -05:00
|
|
|
//float fraction_bad_threshold = 0.25;
|
2010-12-20 15:03:49 -05:00
|
|
|
float fraction_good_threshold = 0.075;
|
|
|
|
float fraction_bad_threshold = 0.125;
|
2010-11-26 18:02:21 -05:00
|
|
|
float fraction_limit;
|
|
|
|
// Use high limit if fraction is good AND the fraction would
|
|
|
|
// lower the range. We want to keep the range fairly high.
|
|
|
|
if(fraction_is_good && fraction > 1.0)
|
|
|
|
fraction_limit = fraction_bad_threshold;
|
|
|
|
else
|
|
|
|
fraction_limit = fraction_good_threshold;
|
|
|
|
|
|
|
|
if(fabs(fraction - 1.0) < fraction_limit)
|
|
|
|
{
|
|
|
|
fraction_is_good = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fraction_is_good = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//dstream<<"frametime_avg="<<frametime_avg<<std::endl;
|
|
|
|
//dstream<<"frametime_wanted="<<frametime_wanted<<std::endl;
|
|
|
|
/*dstream<<"fetching="<<client->isFetchingBlocks()
|
|
|
|
<<" faction = "<<fraction<<std::endl;*/
|
|
|
|
|
|
|
|
JMutexAutoLock lock(g_range_mutex);
|
|
|
|
|
2010-11-29 03:52:07 -05:00
|
|
|
s16 viewing_range_nodes_min = g_settings.getS16("viewing_range_nodes_min");
|
|
|
|
s16 viewing_range_nodes_max = g_settings.getS16("viewing_range_nodes_max");
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
s16 n = (float)g_viewing_range_nodes / fraction;
|
2010-11-29 03:52:07 -05:00
|
|
|
if(n < viewing_range_nodes_min)
|
|
|
|
n = viewing_range_nodes_min;
|
|
|
|
if(n > viewing_range_nodes_max)
|
|
|
|
n = viewing_range_nodes_max;
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
bool can_change = true;
|
|
|
|
|
|
|
|
if(client->isFetchingBlocks() == true && n > g_viewing_range_nodes)
|
|
|
|
can_change = false;
|
|
|
|
|
|
|
|
if(can_change)
|
|
|
|
g_viewing_range_nodes = n;
|
|
|
|
|
|
|
|
/*dstream<<"g_viewing_range_nodes = "
|
|
|
|
<<g_viewing_range_nodes<<std::endl;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
class GUIQuickInventory : public IEventReceiver
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GUIQuickInventory(
|
|
|
|
gui::IGUIEnvironment* env,
|
|
|
|
gui::IGUIElement* parent,
|
|
|
|
v2s32 pos,
|
|
|
|
s32 itemcount,
|
|
|
|
Inventory *inventory):
|
|
|
|
m_itemcount(itemcount),
|
|
|
|
m_inventory(inventory)
|
|
|
|
{
|
|
|
|
core::rect<s32> imgsize(0,0,48,48);
|
|
|
|
core::rect<s32> textsize(0,0,48,16);
|
|
|
|
v2s32 spacing(0, 64);
|
|
|
|
for(s32 i=0; i<m_itemcount; i++)
|
|
|
|
{
|
|
|
|
m_images.push_back(env->addImage(
|
|
|
|
imgsize + pos + spacing*i
|
|
|
|
));
|
|
|
|
m_images[i]->setScaleImage(true);
|
|
|
|
m_texts.push_back(env->addStaticText(
|
|
|
|
L"",
|
|
|
|
textsize + pos + spacing*i,
|
|
|
|
false, false
|
|
|
|
));
|
|
|
|
m_texts[i]->setBackgroundColor(
|
|
|
|
video::SColor(128,0,0,0));
|
|
|
|
m_texts[i]->setTextAlignment(
|
|
|
|
gui::EGUIA_CENTER,
|
|
|
|
gui::EGUIA_UPPERLEFT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool OnEvent(const SEvent& event)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setSelection(s32 i)
|
|
|
|
{
|
|
|
|
m_selection = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
void update()
|
|
|
|
{
|
|
|
|
s32 start = 0;
|
|
|
|
|
|
|
|
start = m_selection - m_itemcount / 2;
|
|
|
|
|
|
|
|
for(s32 i=0; i<m_itemcount; i++)
|
|
|
|
{
|
|
|
|
s32 j = i + start;
|
|
|
|
|
|
|
|
if(j > (s32)m_inventory->getSize() - 1)
|
|
|
|
j -= m_inventory->getSize();
|
|
|
|
if(j < 0)
|
|
|
|
j += m_inventory->getSize();
|
|
|
|
|
|
|
|
InventoryItem *item = m_inventory->getItem(j);
|
|
|
|
// Null items
|
|
|
|
if(item == NULL)
|
|
|
|
{
|
|
|
|
m_images[i]->setImage(NULL);
|
|
|
|
|
|
|
|
wchar_t t[10];
|
|
|
|
if(m_selection == j)
|
|
|
|
swprintf(t, 10, L"<-");
|
|
|
|
else
|
|
|
|
swprintf(t, 10, L"");
|
|
|
|
m_texts[i]->setText(t);
|
|
|
|
|
|
|
|
// The next ifs will segfault with a NULL pointer
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
m_images[i]->setImage(item->getImage());
|
|
|
|
|
|
|
|
wchar_t t[10];
|
|
|
|
if(m_selection == j)
|
|
|
|
swprintf(t, 10, SWPRINTF_CHARSTRING L" <-", item->getText().c_str());
|
|
|
|
else
|
|
|
|
swprintf(t, 10, SWPRINTF_CHARSTRING, item->getText().c_str());
|
|
|
|
m_texts[i]->setText(t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
s32 m_itemcount;
|
|
|
|
core::array<gui::IGUIStaticText*> m_texts;
|
|
|
|
core::array<gui::IGUIImage*> m_images;
|
|
|
|
Inventory *m_inventory;
|
|
|
|
s32 m_selection;
|
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
Low-level initialization
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool disable_stderr = false;
|
|
|
|
#ifdef _WIN32
|
|
|
|
disable_stderr = true;
|
|
|
|
#endif
|
|
|
|
|
2010-11-29 03:52:07 -05:00
|
|
|
// Initialize debug streams
|
2010-11-26 18:02:21 -05:00
|
|
|
debugstreams_init(disable_stderr, DEBUGFILE);
|
2010-11-29 03:52:07 -05:00
|
|
|
// Initialize debug stacks
|
2010-11-26 18:02:21 -05:00
|
|
|
debug_stacks_init();
|
|
|
|
|
|
|
|
DSTACK(__FUNCTION_NAME);
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
|
2010-12-14 08:16:49 -05:00
|
|
|
/*
|
|
|
|
Parse command line
|
|
|
|
*/
|
|
|
|
|
2010-12-19 09:51:45 -05:00
|
|
|
// List all allowed options
|
2010-12-14 08:16:49 -05:00
|
|
|
core::map<std::string, ValueSpec> allowed_options;
|
|
|
|
allowed_options.insert("help", ValueSpec(VALUETYPE_FLAG));
|
|
|
|
allowed_options.insert("server", ValueSpec(VALUETYPE_FLAG,
|
|
|
|
"Run server directly"));
|
|
|
|
allowed_options.insert("config", ValueSpec(VALUETYPE_STRING,
|
|
|
|
"Load configuration from specified file"));
|
|
|
|
allowed_options.insert("port", ValueSpec(VALUETYPE_STRING));
|
2010-12-19 09:51:45 -05:00
|
|
|
allowed_options.insert("address", ValueSpec(VALUETYPE_STRING));
|
|
|
|
allowed_options.insert("random-input", ValueSpec(VALUETYPE_FLAG));
|
|
|
|
allowed_options.insert("disable-unittests", ValueSpec(VALUETYPE_FLAG));
|
|
|
|
allowed_options.insert("enable-unittests", ValueSpec(VALUETYPE_FLAG));
|
2010-12-14 08:16:49 -05:00
|
|
|
|
|
|
|
Settings cmd_args;
|
|
|
|
|
|
|
|
bool ret = cmd_args.parseCommandLine(argc, argv, allowed_options);
|
|
|
|
|
|
|
|
if(ret == false || cmd_args.getFlag("help"))
|
|
|
|
{
|
|
|
|
dstream<<"Allowed options:"<<std::endl;
|
|
|
|
for(core::map<std::string, ValueSpec>::Iterator
|
|
|
|
i = allowed_options.getIterator();
|
|
|
|
i.atEnd() == false; i++)
|
|
|
|
{
|
|
|
|
dstream<<" --"<<i.getNode()->getKey();
|
|
|
|
if(i.getNode()->getValue().type == VALUETYPE_FLAG)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dstream<<" <value>";
|
|
|
|
}
|
|
|
|
dstream<<std::endl;
|
|
|
|
|
|
|
|
if(i.getNode()->getValue().help != NULL)
|
|
|
|
{
|
|
|
|
dstream<<" "<<i.getNode()->getValue().help
|
|
|
|
<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_args.getFlag("help") ? 0 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
/*
|
|
|
|
Basic initialization
|
|
|
|
*/
|
|
|
|
|
2010-11-29 03:52:07 -05:00
|
|
|
// Initialize default settings
|
|
|
|
set_default_settings();
|
|
|
|
|
|
|
|
// Print startup message
|
2010-11-26 18:02:21 -05:00
|
|
|
dstream<<DTIME<<"minetest-c55"
|
|
|
|
" with SER_FMT_VER_HIGHEST="<<(int)SER_FMT_VER_HIGHEST
|
|
|
|
<<", ENABLE_TESTS="<<ENABLE_TESTS
|
|
|
|
<<std::endl;
|
|
|
|
|
|
|
|
// Set locale. This is for forcing '.' as the decimal point.
|
|
|
|
std::locale::global(std::locale("C"));
|
|
|
|
// This enables printing all characters in bitmap font
|
|
|
|
setlocale(LC_CTYPE, "en_US");
|
|
|
|
|
|
|
|
// Initialize sockets
|
|
|
|
sockets_init();
|
|
|
|
atexit(sockets_cleanup);
|
|
|
|
|
|
|
|
// Initialize timestamp mutex
|
|
|
|
g_timestamp_mutex.Init();
|
|
|
|
|
|
|
|
/*
|
|
|
|
Initialization
|
|
|
|
*/
|
|
|
|
|
2010-12-14 08:16:49 -05:00
|
|
|
/*
|
|
|
|
Read config file
|
|
|
|
*/
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2010-12-14 08:16:49 -05:00
|
|
|
// Path of configuration file in use
|
|
|
|
std::string configpath = "";
|
|
|
|
|
|
|
|
if(cmd_args.exists("config"))
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2010-12-14 08:16:49 -05:00
|
|
|
bool r = g_settings.readConfigFile(cmd_args.get("config").c_str());
|
|
|
|
if(r == false)
|
|
|
|
{
|
|
|
|
dstream<<"Could not read configuration from \""
|
|
|
|
<<cmd_args.get("config")<<"\""<<std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
configpath = cmd_args.get("config");
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const char *filenames[2] =
|
|
|
|
{
|
|
|
|
"../minetest.conf",
|
|
|
|
"../../minetest.conf"
|
|
|
|
};
|
|
|
|
|
|
|
|
for(u32 i=0; i<2; i++)
|
|
|
|
{
|
2010-11-29 03:52:07 -05:00
|
|
|
bool r = g_settings.readConfigFile(filenames[i]);
|
2010-11-26 18:02:21 -05:00
|
|
|
if(r)
|
2010-12-14 08:16:49 -05:00
|
|
|
{
|
|
|
|
configpath = filenames[i];
|
2010-11-26 18:02:21 -05:00
|
|
|
break;
|
2010-12-14 08:16:49 -05:00
|
|
|
}
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize random seed
|
|
|
|
srand(time(0));
|
|
|
|
|
2010-12-19 09:51:45 -05:00
|
|
|
/*
|
|
|
|
Run unit tests
|
|
|
|
*/
|
|
|
|
if((ENABLE_TESTS && cmd_args.getFlag("disable-unittests") == false)
|
|
|
|
|| cmd_args.getFlag("enable-unittests") == true)
|
|
|
|
{
|
|
|
|
run_tests();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Global range mutex
|
|
|
|
*/
|
2010-11-26 18:02:21 -05:00
|
|
|
g_range_mutex.Init();
|
|
|
|
assert(g_range_mutex.IsInitialized());
|
|
|
|
|
2010-11-29 03:52:07 -05:00
|
|
|
// Read map parameters from settings
|
|
|
|
|
|
|
|
HMParams hm_params;
|
|
|
|
hm_params.blocksize = g_settings.getU16("heightmap_blocksize");
|
|
|
|
hm_params.randmax = g_settings.get("height_randmax");
|
|
|
|
hm_params.randfactor = g_settings.get("height_randfactor");
|
|
|
|
hm_params.base = g_settings.get("height_base");
|
|
|
|
|
|
|
|
MapParams map_params;
|
|
|
|
map_params.plants_amount = g_settings.getFloat("plants_amount");
|
2010-11-29 07:03:40 -05:00
|
|
|
map_params.ravines_amount = g_settings.getFloat("ravines_amount");
|
2010-11-29 03:52:07 -05:00
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
/*
|
|
|
|
Ask some stuff
|
|
|
|
*/
|
|
|
|
|
|
|
|
std::cout<<std::endl<<std::endl;
|
2010-11-30 08:35:03 -05:00
|
|
|
|
|
|
|
std::cout
|
|
|
|
<<" .__ __ __ "<<std::endl
|
|
|
|
<<" _____ |__| ____ _____/ |_ ____ _______/ |_ "<<std::endl
|
|
|
|
<<" / \\| |/ \\_/ __ \\ __\\/ __ \\ / ___/\\ __\\"<<std::endl
|
|
|
|
<<"| Y Y \\ | | \\ ___/| | \\ ___/ \\___ \\ | | "<<std::endl
|
|
|
|
<<"|__|_| /__|___| /\\___ >__| \\___ >____ > |__| "<<std::endl
|
|
|
|
<<" \\/ \\/ \\/ \\/ \\/ "<<std::endl
|
|
|
|
<<std::endl
|
|
|
|
<<"Now with more waterish water!"
|
|
|
|
<<std::endl;
|
|
|
|
|
|
|
|
std::cout<<std::endl;
|
2010-11-26 18:02:21 -05:00
|
|
|
char templine[100];
|
|
|
|
|
2010-11-29 03:52:07 -05:00
|
|
|
// Port?
|
2010-12-14 08:16:49 -05:00
|
|
|
u16 port = 30000;
|
|
|
|
if(cmd_args.exists("port"))
|
|
|
|
{
|
|
|
|
port = cmd_args.getU16("port");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
port = g_settings.getU16Ask("port", "Port", 30000);
|
|
|
|
std::cout<<"-> "<<port<<std::endl;
|
|
|
|
}
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2010-12-14 08:16:49 -05:00
|
|
|
if(cmd_args.getFlag("server"))
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
DSTACK("Dedicated server branch");
|
|
|
|
|
|
|
|
std::cout<<std::endl;
|
|
|
|
std::cout<<"========================"<<std::endl;
|
|
|
|
std::cout<<"Running dedicated server"<<std::endl;
|
|
|
|
std::cout<<"========================"<<std::endl;
|
|
|
|
std::cout<<std::endl;
|
|
|
|
|
2010-11-29 03:52:07 -05:00
|
|
|
Server server("../map", hm_params, map_params);
|
2010-11-26 18:02:21 -05:00
|
|
|
server.start(port);
|
|
|
|
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
// This is kind of a hack but can be done like this
|
|
|
|
// because server.step() is very light
|
2010-11-29 03:52:07 -05:00
|
|
|
sleep_ms(30);
|
|
|
|
server.step(0.030);
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
static int counter = 0;
|
|
|
|
counter--;
|
|
|
|
if(counter <= 0)
|
|
|
|
{
|
|
|
|
counter = 10;
|
|
|
|
|
|
|
|
core::list<PlayerInfo> list = server.getPlayerInfo();
|
|
|
|
core::list<PlayerInfo>::Iterator i;
|
|
|
|
static u32 sum_old = 0;
|
|
|
|
u32 sum = PIChecksum(list);
|
|
|
|
if(sum != sum_old)
|
|
|
|
{
|
|
|
|
std::cout<<DTIME<<"Player info:"<<std::endl;
|
|
|
|
for(i=list.begin(); i!=list.end(); i++)
|
|
|
|
{
|
|
|
|
i->PrintLine(&std::cout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sum_old = sum;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool hosting = false;
|
|
|
|
char connect_name[100] = "";
|
|
|
|
|
2010-12-19 09:51:45 -05:00
|
|
|
if(cmd_args.exists("address"))
|
|
|
|
{
|
|
|
|
snprintf(connect_name, 100, "%s", cmd_args.get("address").c_str());
|
|
|
|
}
|
|
|
|
else if(g_settings.get("address") != "" && is_yes(g_settings.get("host_game")) == false)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2010-11-29 03:52:07 -05:00
|
|
|
std::cout<<g_settings.get("address")<<std::endl;
|
|
|
|
snprintf(connect_name, 100, "%s", g_settings.get("address").c_str());
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-12-19 09:51:45 -05:00
|
|
|
std::cout<<"Address to connect to [empty = host a game]: ";
|
2010-11-26 18:02:21 -05:00
|
|
|
std::cin.getline(connect_name, 100);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(connect_name[0] == 0){
|
|
|
|
snprintf(connect_name, 100, "127.0.0.1");
|
|
|
|
hosting = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(hosting)
|
2010-12-19 09:51:45 -05:00
|
|
|
std::cout<<"> Hosting game"<<std::endl;
|
2010-11-26 18:02:21 -05:00
|
|
|
else
|
2010-12-19 09:51:45 -05:00
|
|
|
std::cout<<"> Connecting to "<<connect_name<<std::endl;
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
char playername[PLAYERNAME_SIZE] = "";
|
2010-11-29 03:52:07 -05:00
|
|
|
if(g_settings.get("name") != "")
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2010-11-29 03:52:07 -05:00
|
|
|
snprintf(playername, PLAYERNAME_SIZE, "%s", g_settings.get("name").c_str());
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cout<<"Name of player: ";
|
|
|
|
std::cin.getline(playername, PLAYERNAME_SIZE);
|
|
|
|
}
|
|
|
|
std::cout<<"-> \""<<playername<<"\""<<std::endl;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Resolution selection
|
|
|
|
*/
|
2010-12-20 15:03:49 -05:00
|
|
|
|
|
|
|
bool fullscreen = false;
|
|
|
|
u16 screenW = atoi(g_settings.get("screenW").c_str());
|
|
|
|
u16 screenH = atoi(g_settings.get("screenH").c_str());
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2010-12-20 15:03:49 -05:00
|
|
|
#if 0
|
2010-11-26 18:02:21 -05:00
|
|
|
u16 screenW;
|
|
|
|
u16 screenH;
|
|
|
|
bool fullscreen = false;
|
|
|
|
|
2010-11-29 03:52:07 -05:00
|
|
|
if(g_settings.get("screenW") != "" && g_settings.get("screenH") != "")
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2010-11-29 03:52:07 -05:00
|
|
|
screenW = atoi(g_settings.get("screenW").c_str());
|
|
|
|
screenH = atoi(g_settings.get("screenH").c_str());
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
u16 resolutions[][3] = {
|
|
|
|
//W, H, fullscreen
|
|
|
|
{640,480, 0},
|
|
|
|
{800,600, 0},
|
|
|
|
{1024,768, 0},
|
|
|
|
{1280,1024, 0},
|
|
|
|
/*{640,480, 1},
|
|
|
|
{800,600, 1},
|
|
|
|
{1024,768, 1},
|
|
|
|
{1280,1024, 1},*/
|
|
|
|
};
|
|
|
|
|
|
|
|
u16 res_count = sizeof(resolutions)/sizeof(resolutions[0]);
|
|
|
|
|
|
|
|
for(u16 i=0; i<res_count; i++)
|
|
|
|
{
|
|
|
|
std::cout<<(i+1)<<": "<<resolutions[i][0]<<"x"
|
|
|
|
<<resolutions[i][1];
|
|
|
|
if(resolutions[i][2])
|
|
|
|
std::cout<<" fullscreen"<<std::endl;
|
|
|
|
else
|
|
|
|
std::cout<<" windowed"<<std::endl;
|
|
|
|
}
|
|
|
|
std::cout<<"Select a window resolution number [empty = 2]: ";
|
|
|
|
std::cin.getline(templine, 100);
|
|
|
|
|
|
|
|
u16 r0;
|
|
|
|
if(templine[0] == 0)
|
|
|
|
r0 = 2;
|
|
|
|
else
|
|
|
|
r0 = atoi(templine);
|
|
|
|
|
|
|
|
if(r0 > res_count || r0 == 0)
|
|
|
|
r0 = 2;
|
|
|
|
|
|
|
|
{
|
|
|
|
u16 i = r0-1;
|
|
|
|
std::cout<<"-> ";
|
|
|
|
std::cout<<(i+1)<<": "<<resolutions[i][0]<<"x"
|
|
|
|
<<resolutions[i][1];
|
|
|
|
if(resolutions[i][2])
|
|
|
|
std::cout<<" fullscreen"<<std::endl;
|
|
|
|
else
|
|
|
|
std::cout<<" windowed"<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
screenW = resolutions[r0-1][0];
|
|
|
|
screenH = resolutions[r0-1][1];
|
|
|
|
fullscreen = resolutions[r0-1][2];
|
|
|
|
}
|
2010-12-20 15:03:49 -05:00
|
|
|
#endif
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
MyEventReceiver receiver;
|
|
|
|
|
|
|
|
video::E_DRIVER_TYPE driverType;
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
//driverType = video::EDT_DIRECT3D9; // Doesn't seem to work
|
|
|
|
driverType = video::EDT_OPENGL;
|
|
|
|
#else
|
|
|
|
driverType = video::EDT_OPENGL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// create device and exit if creation failed
|
|
|
|
|
|
|
|
IrrlichtDevice *device;
|
|
|
|
device = createDevice(driverType,
|
|
|
|
core::dimension2d<u32>(screenW, screenH),
|
|
|
|
16, fullscreen, false, false, &receiver);
|
|
|
|
// With vsync
|
|
|
|
/*device = createDevice(driverType,
|
|
|
|
core::dimension2d<u32>(screenW, screenH),
|
|
|
|
16, fullscreen, false, true, &receiver);*/
|
|
|
|
|
|
|
|
if (device == 0)
|
|
|
|
return 1; // could not create selected driver.
|
2010-12-20 15:03:49 -05:00
|
|
|
|
|
|
|
g_irrlicht = new IrrlichtWrapper(device);
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2010-12-20 15:03:49 -05:00
|
|
|
//g_device = device;
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
device->setResizable(true);
|
|
|
|
|
2010-12-19 09:51:45 -05:00
|
|
|
bool random_input = g_settings.getBool("random_input")
|
|
|
|
|| cmd_args.getFlag("random-input");
|
|
|
|
if(random_input)
|
2010-11-26 18:02:21 -05:00
|
|
|
g_input = new RandomInputHandler();
|
|
|
|
else
|
|
|
|
g_input = new RealInputHandler(device, &receiver);
|
|
|
|
|
|
|
|
/*
|
|
|
|
Continue initialization
|
|
|
|
*/
|
|
|
|
|
|
|
|
video::IVideoDriver* driver = device->getVideoDriver();
|
|
|
|
// These make the textures not to show at all
|
|
|
|
//driver->setTextureCreationFlag(video::ETCF_ALWAYS_16_BIT);
|
|
|
|
//driver->setTextureCreationFlag(video::ETCF_OPTIMIZED_FOR_SPEED );
|
|
|
|
|
|
|
|
//driver->setMinHardwareBufferVertexCount(1);
|
|
|
|
|
|
|
|
scene::ISceneManager* smgr = device->getSceneManager();
|
2010-12-13 20:07:13 -05:00
|
|
|
|
|
|
|
// Pause menu
|
|
|
|
guiPauseMenu pauseMenu(device, &receiver);
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
gui::IGUIEnvironment* guienv = device->getGUIEnvironment();
|
|
|
|
gui::IGUISkin* skin = guienv->getSkin();
|
|
|
|
gui::IGUIFont* font = guienv->getFont("../data/fontlucida.png");
|
|
|
|
if(font)
|
|
|
|
skin->setFont(font);
|
|
|
|
//skin->setColor(gui::EGDC_BUTTON_TEXT, video::SColor(255,0,0,0));
|
|
|
|
skin->setColor(gui::EGDC_BUTTON_TEXT, video::SColor(255,255,255,255));
|
|
|
|
//skin->setColor(gui::EGDC_3D_HIGH_LIGHT, video::SColor(0,0,0,0));
|
|
|
|
//skin->setColor(gui::EGDC_3D_SHADOW, video::SColor(0,0,0,0));
|
|
|
|
skin->setColor(gui::EGDC_3D_HIGH_LIGHT, video::SColor(255,0,0,0));
|
|
|
|
skin->setColor(gui::EGDC_3D_SHADOW, video::SColor(255,0,0,0));
|
|
|
|
|
|
|
|
const wchar_t *text = L"Loading and connecting...";
|
|
|
|
core::vector2d<s32> center(screenW/2, screenH/2);
|
|
|
|
core::dimension2d<u32> textd = font->getDimension(text);
|
|
|
|
std::cout<<DTIME<<"Text w="<<textd.Width<<" h="<<textd.Height<<std::endl;
|
|
|
|
// Have to add a bit to disable the text from word wrapping
|
|
|
|
//core::vector2d<s32> textsize(textd.Width+4, textd.Height);
|
|
|
|
core::vector2d<s32> textsize(300, textd.Height);
|
|
|
|
core::rect<s32> textrect(center - textsize/2, center + textsize/2);
|
|
|
|
|
|
|
|
gui::IGUIStaticText *gui_loadingtext = guienv->addStaticText(
|
|
|
|
text, textrect, false, false);
|
|
|
|
gui_loadingtext->setTextAlignment(gui::EGUIA_CENTER, gui::EGUIA_UPPERLEFT);
|
|
|
|
|
|
|
|
driver->beginScene(true, true, video::SColor(255,0,0,0));
|
|
|
|
guienv->drawAll();
|
|
|
|
driver->endScene();
|
|
|
|
|
2010-12-12 20:19:12 -05:00
|
|
|
/*
|
|
|
|
Preload some random textures that are used in threads
|
|
|
|
*/
|
2010-12-20 15:03:49 -05:00
|
|
|
#if 0
|
2010-12-12 20:19:12 -05:00
|
|
|
g_texturecache.set("torch", driver->getTexture("../data/torch.png"));
|
|
|
|
g_texturecache.set("torch_on_floor", driver->getTexture("../data/torch_on_floor.png"));
|
|
|
|
g_texturecache.set("torch_on_ceiling", driver->getTexture("../data/torch_on_ceiling.png"));
|
2010-12-20 15:03:49 -05:00
|
|
|
g_texturecache.set("crack", driver->getTexture("../data/crack.png"));
|
2010-12-13 17:21:18 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Load tile textures
|
|
|
|
*/
|
|
|
|
for(s32 i=0; i<TILES_COUNT; i++)
|
|
|
|
{
|
|
|
|
if(g_tile_texture_names[i] == NULL)
|
|
|
|
continue;
|
|
|
|
std::string name = g_tile_texture_names[i];
|
|
|
|
std::string filename;
|
|
|
|
filename += "../data/";
|
|
|
|
filename += name;
|
|
|
|
filename += ".png";
|
|
|
|
g_texturecache.set(name, driver->getTexture(filename.c_str()));
|
|
|
|
}
|
|
|
|
|
2010-12-20 15:03:49 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//tile_materials_preload(g_texturecache);
|
|
|
|
tile_materials_preload(g_irrlicht);
|
|
|
|
//tile_materials_init();
|
2010-12-12 20:19:12 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Make a scope here for the client so that it gets removed
|
|
|
|
before the irrlicht device
|
|
|
|
*/
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
|
|
|
|
std::cout<<DTIME<<"Creating server and client"<<std::endl;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Create server
|
|
|
|
*/
|
|
|
|
SharedPtr<Server> server;
|
|
|
|
if(hosting){
|
2010-11-29 03:52:07 -05:00
|
|
|
server = new Server("../map", hm_params, map_params);
|
2010-11-26 18:02:21 -05:00
|
|
|
server->start(port);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Create client
|
|
|
|
*/
|
|
|
|
|
2010-12-19 12:11:05 -05:00
|
|
|
Client client(device, playername,
|
|
|
|
g_range_mutex,
|
|
|
|
g_viewing_range_nodes,
|
|
|
|
g_viewing_range_all);
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
Address connect_address(0,0,0,0, port);
|
|
|
|
try{
|
|
|
|
connect_address.Resolve(connect_name);
|
|
|
|
}
|
|
|
|
catch(ResolveError &e)
|
|
|
|
{
|
|
|
|
std::cout<<DTIME<<"Couldn't resolve address"<<std::endl;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout<<DTIME<<"Connecting to server..."<<std::endl;
|
|
|
|
client.connect(connect_address);
|
|
|
|
|
|
|
|
try{
|
|
|
|
while(client.connectedAndInitialized() == false)
|
|
|
|
{
|
|
|
|
client.step(0.1);
|
|
|
|
if(server != NULL){
|
|
|
|
server->step(0.1);
|
|
|
|
}
|
|
|
|
sleep_ms(100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(con::PeerNotFoundException &e)
|
|
|
|
{
|
|
|
|
std::cout<<DTIME<<"Timed out."<<std::endl;
|
|
|
|
return 0;
|
|
|
|
}
|
2010-12-12 20:19:12 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Create skybox
|
|
|
|
*/
|
2010-12-19 09:51:45 -05:00
|
|
|
/*scene::ISceneNode* skybox;
|
2010-12-13 17:21:18 -05:00
|
|
|
skybox = smgr->addSkyBoxSceneNode(
|
2010-12-12 20:19:12 -05:00
|
|
|
driver->getTexture("../data/skybox2.png"),
|
|
|
|
driver->getTexture("../data/skybox3.png"),
|
|
|
|
driver->getTexture("../data/skybox1.png"),
|
|
|
|
driver->getTexture("../data/skybox1.png"),
|
|
|
|
driver->getTexture("../data/skybox1.png"),
|
2010-12-19 09:51:45 -05:00
|
|
|
driver->getTexture("../data/skybox1.png"));*/
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Create the camera node
|
|
|
|
*/
|
|
|
|
|
|
|
|
scene::ICameraSceneNode* camera = smgr->addCameraSceneNode(
|
|
|
|
0, // Camera parent
|
|
|
|
v3f(BS*100, BS*2, BS*100), // Look from
|
|
|
|
v3f(BS*100+1, BS*2, BS*100), // Look to
|
|
|
|
-1 // Camera ID
|
|
|
|
);
|
|
|
|
|
|
|
|
if(camera == NULL)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
video::SColor skycolor = video::SColor(255,90,140,200);
|
|
|
|
|
|
|
|
camera->setFOV(FOV_ANGLE);
|
|
|
|
|
|
|
|
// Just so big a value that everything rendered is visible
|
|
|
|
camera->setFarValue(100000*BS);
|
|
|
|
|
|
|
|
f32 camera_yaw = 0; // "right/left"
|
|
|
|
f32 camera_pitch = 0; // "up/down"
|
2010-12-14 06:14:43 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Move into game
|
|
|
|
*/
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
gui_loadingtext->remove();
|
|
|
|
|
2010-12-14 06:14:43 -05:00
|
|
|
pauseMenu.setVisible(true);
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
/*
|
|
|
|
Add some gui stuff
|
|
|
|
*/
|
|
|
|
|
|
|
|
// First line of debug text
|
|
|
|
gui::IGUIStaticText *guitext = guienv->addStaticText(
|
|
|
|
L"Minetest-c55",
|
2010-12-14 06:14:43 -05:00
|
|
|
core::rect<s32>(5, 5, 795, 5+textsize.Y),
|
2010-11-26 18:02:21 -05:00
|
|
|
false, false);
|
|
|
|
// Second line of debug text
|
|
|
|
gui::IGUIStaticText *guitext2 = guienv->addStaticText(
|
|
|
|
L"",
|
2010-12-14 06:14:43 -05:00
|
|
|
core::rect<s32>(5, 5+(textsize.Y+5)*1, 795, (5+textsize.Y)*2),
|
2010-11-26 18:02:21 -05:00
|
|
|
false, false);
|
|
|
|
|
|
|
|
// At the middle of the screen
|
|
|
|
// Object infos are shown in this
|
|
|
|
gui::IGUIStaticText *guitext_info = guienv->addStaticText(
|
|
|
|
L"test",
|
|
|
|
core::rect<s32>(100, 70, 100+400, 70+(textsize.Y+5)),
|
|
|
|
false, false);
|
|
|
|
|
|
|
|
// This is a copy of the inventory that the client's environment has
|
|
|
|
Inventory local_inventory(PLAYER_INVENTORY_SIZE);
|
|
|
|
|
|
|
|
GUIQuickInventory *quick_inventory = new GUIQuickInventory
|
|
|
|
(guienv, NULL, v2s32(10, 70), 5, &local_inventory);
|
|
|
|
|
|
|
|
/*
|
|
|
|
Some statistics are collected in these
|
|
|
|
*/
|
|
|
|
u32 drawtime = 0;
|
2010-12-14 06:14:43 -05:00
|
|
|
u32 beginscenetime = 0;
|
2010-11-26 18:02:21 -05:00
|
|
|
u32 scenetime = 0;
|
|
|
|
u32 endscenetime = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Text input system
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct TextDest
|
|
|
|
{
|
|
|
|
virtual void sendText(std::string text) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct TextDestSign : public TextDest
|
|
|
|
{
|
|
|
|
TextDestSign(v3s16 blockpos, s16 id, Client *client)
|
|
|
|
{
|
|
|
|
m_blockpos = blockpos;
|
|
|
|
m_id = id;
|
|
|
|
m_client = client;
|
|
|
|
}
|
|
|
|
void sendText(std::string text)
|
|
|
|
{
|
|
|
|
dstream<<"Changing text of a sign object: "
|
|
|
|
<<text<<std::endl;
|
|
|
|
m_client->sendSignText(m_blockpos, m_id, text);
|
|
|
|
}
|
|
|
|
|
|
|
|
v3s16 m_blockpos;
|
|
|
|
s16 m_id;
|
|
|
|
Client *m_client;
|
|
|
|
};
|
|
|
|
|
|
|
|
TextDest *textbuf_dest = NULL;
|
|
|
|
|
|
|
|
//gui::IGUIWindow* input_window = NULL;
|
|
|
|
gui::IGUIStaticText* input_guitext = NULL;
|
|
|
|
|
2010-12-18 06:10:37 -05:00
|
|
|
/*
|
|
|
|
Digging animation
|
|
|
|
*/
|
|
|
|
//f32
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
/*
|
|
|
|
Main loop
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool first_loop_after_window_activation = true;
|
|
|
|
|
|
|
|
// Time is in milliseconds
|
|
|
|
// NOTE: getRealTime() without run()s causes strange problems in wine
|
|
|
|
// NOTE: Have to call run() between calls of this to update the timer
|
|
|
|
u32 lasttime = device->getTimer()->getTime();
|
|
|
|
|
|
|
|
while(device->run())
|
|
|
|
{
|
2010-12-20 15:03:49 -05:00
|
|
|
/*
|
|
|
|
Run global IrrlichtWrapper's main thread processing stuff
|
|
|
|
*/
|
|
|
|
g_irrlicht->Run();
|
|
|
|
|
2010-12-13 20:07:13 -05:00
|
|
|
/*
|
|
|
|
Random calculations
|
|
|
|
*/
|
|
|
|
v2u32 screensize = driver->getScreenSize();
|
|
|
|
core::vector2d<s32> displaycenter(screensize.X/2,screensize.Y/2);
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
// Hilight boxes collected during the loop and displayed
|
|
|
|
core::list< core::aabbox3d<f32> > hilightboxes;
|
|
|
|
|
|
|
|
// Info text
|
|
|
|
std::wstring infotext;
|
|
|
|
|
2010-12-20 15:03:49 -05:00
|
|
|
//TimeTaker //timer1("//timer1", g_irrlicht);
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
// Time of frame without fps limit
|
|
|
|
float busytime;
|
|
|
|
u32 busytime_u32;
|
|
|
|
{
|
|
|
|
// not using getRealTime is necessary for wine
|
|
|
|
u32 time = device->getTimer()->getTime();
|
|
|
|
if(time > lasttime)
|
|
|
|
busytime_u32 = time - lasttime;
|
|
|
|
else
|
|
|
|
busytime_u32 = 0;
|
|
|
|
busytime = busytime_u32 / 1000.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//std::cout<<"busytime_u32="<<busytime_u32<<std::endl;
|
|
|
|
|
|
|
|
// Absolutelu necessary for wine!
|
|
|
|
device->run();
|
|
|
|
|
|
|
|
/*
|
|
|
|
Viewing range
|
|
|
|
*/
|
|
|
|
|
|
|
|
//updateViewingRange(dtime, &client);
|
|
|
|
updateViewingRange(busytime, &client);
|
|
|
|
|
|
|
|
/*
|
|
|
|
FPS limiter
|
|
|
|
*/
|
|
|
|
|
|
|
|
{
|
2010-11-29 03:52:07 -05:00
|
|
|
float fps_max = g_settings.getFloat("fps_max");
|
2010-11-26 18:02:21 -05:00
|
|
|
u32 frametime_min = 1000./fps_max;
|
|
|
|
|
|
|
|
if(busytime_u32 < frametime_min)
|
|
|
|
{
|
|
|
|
u32 sleeptime = frametime_min - busytime_u32;
|
|
|
|
device->sleep(sleeptime);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Absolutelu necessary for wine!
|
|
|
|
device->run();
|
|
|
|
|
|
|
|
/*
|
|
|
|
Time difference calculation
|
|
|
|
*/
|
|
|
|
f32 dtime; // in seconds
|
|
|
|
|
|
|
|
u32 time = device->getTimer()->getTime();
|
|
|
|
if(time > lasttime)
|
|
|
|
dtime = (time - lasttime) / 1000.0;
|
|
|
|
else
|
|
|
|
dtime = 0;
|
|
|
|
lasttime = time;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Time average and jitter calculation
|
|
|
|
*/
|
|
|
|
|
|
|
|
static f32 dtime_avg1 = 0.0;
|
|
|
|
dtime_avg1 = dtime_avg1 * 0.98 + dtime * 0.02;
|
|
|
|
f32 dtime_jitter1 = dtime - dtime_avg1;
|
|
|
|
|
|
|
|
static f32 dtime_jitter1_max_sample = 0.0;
|
|
|
|
static f32 dtime_jitter1_max_fraction = 0.0;
|
|
|
|
{
|
|
|
|
static f32 jitter1_max = 0.0;
|
|
|
|
static f32 counter = 0.0;
|
|
|
|
if(dtime_jitter1 > jitter1_max)
|
|
|
|
jitter1_max = dtime_jitter1;
|
|
|
|
counter += dtime;
|
|
|
|
if(counter > 0.0)
|
|
|
|
{
|
|
|
|
counter -= 3.0;
|
|
|
|
dtime_jitter1_max_sample = jitter1_max;
|
|
|
|
dtime_jitter1_max_fraction
|
|
|
|
= dtime_jitter1_max_sample / (dtime_avg1+0.001);
|
|
|
|
jitter1_max = 0.0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Control freetime ratio
|
|
|
|
*/
|
|
|
|
/*if(dtime_jitter1_max_fraction > DTIME_JITTER_MAX_FRACTION)
|
|
|
|
{
|
|
|
|
if(g_freetime_ratio < FREETIME_RATIO_MAX)
|
|
|
|
g_freetime_ratio += 0.01;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(g_freetime_ratio > FREETIME_RATIO_MIN)
|
|
|
|
g_freetime_ratio -= 0.01;
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Busytime average and jitter calculation
|
|
|
|
*/
|
|
|
|
|
|
|
|
static f32 busytime_avg1 = 0.0;
|
|
|
|
busytime_avg1 = busytime_avg1 * 0.98 + busytime * 0.02;
|
|
|
|
f32 busytime_jitter1 = busytime - busytime_avg1;
|
|
|
|
|
|
|
|
static f32 busytime_jitter1_max_sample = 0.0;
|
|
|
|
static f32 busytime_jitter1_min_sample = 0.0;
|
|
|
|
{
|
|
|
|
static f32 jitter1_max = 0.0;
|
|
|
|
static f32 jitter1_min = 0.0;
|
|
|
|
static f32 counter = 0.0;
|
|
|
|
if(busytime_jitter1 > jitter1_max)
|
|
|
|
jitter1_max = busytime_jitter1;
|
|
|
|
if(busytime_jitter1 < jitter1_min)
|
|
|
|
jitter1_min = busytime_jitter1;
|
|
|
|
counter += dtime;
|
|
|
|
if(counter > 0.0){
|
|
|
|
counter -= 3.0;
|
|
|
|
busytime_jitter1_max_sample = jitter1_max;
|
|
|
|
busytime_jitter1_min_sample = jitter1_min;
|
|
|
|
jitter1_max = 0.0;
|
|
|
|
jitter1_min = 0.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Debug info for client
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
static float counter = 0.0;
|
|
|
|
counter -= dtime;
|
|
|
|
if(counter < 0)
|
|
|
|
{
|
|
|
|
counter = 30.0;
|
|
|
|
client.printDebugInfo(std::cout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Input handler step()
|
|
|
|
*/
|
|
|
|
g_input->step(dtime);
|
|
|
|
|
|
|
|
/*
|
|
|
|
Special keys
|
|
|
|
*/
|
2010-12-13 20:07:13 -05:00
|
|
|
/*if(g_esc_pressed)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
break;
|
2010-12-13 20:07:13 -05:00
|
|
|
}*/
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Player speed control
|
|
|
|
*/
|
|
|
|
|
|
|
|
if(g_game_focused)
|
|
|
|
{
|
|
|
|
/*bool a_up,
|
|
|
|
bool a_down,
|
|
|
|
bool a_left,
|
|
|
|
bool a_right,
|
|
|
|
bool a_jump,
|
|
|
|
bool a_superspeed,
|
|
|
|
float a_pitch,
|
|
|
|
float a_yaw*/
|
|
|
|
PlayerControl control(
|
|
|
|
g_input->isKeyDown(irr::KEY_KEY_W),
|
|
|
|
g_input->isKeyDown(irr::KEY_KEY_S),
|
|
|
|
g_input->isKeyDown(irr::KEY_KEY_A),
|
|
|
|
g_input->isKeyDown(irr::KEY_KEY_D),
|
|
|
|
g_input->isKeyDown(irr::KEY_SPACE),
|
|
|
|
g_input->isKeyDown(irr::KEY_KEY_2),
|
|
|
|
camera_pitch,
|
|
|
|
camera_yaw
|
|
|
|
);
|
|
|
|
client.setPlayerControl(control);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Set every key to inactive
|
|
|
|
PlayerControl control;
|
|
|
|
client.setPlayerControl(control);
|
|
|
|
}
|
|
|
|
|
|
|
|
//timer1.stop();
|
|
|
|
/*
|
|
|
|
Process environment
|
|
|
|
*/
|
|
|
|
|
|
|
|
{
|
2010-12-20 15:03:49 -05:00
|
|
|
//TimeTaker timer("client.step(dtime)", g_irrlicht);
|
2010-11-26 18:02:21 -05:00
|
|
|
client.step(dtime);
|
|
|
|
//client.step(dtime_avg1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(server != NULL)
|
|
|
|
{
|
2010-12-20 15:03:49 -05:00
|
|
|
//TimeTaker timer("server->step(dtime)", g_irrlicht);
|
2010-11-26 18:02:21 -05:00
|
|
|
server->step(dtime);
|
|
|
|
}
|
|
|
|
|
|
|
|
v3f player_position = client.getPlayerPosition();
|
|
|
|
|
2010-12-20 15:03:49 -05:00
|
|
|
//TimeTaker //timer2("//timer2", g_irrlicht);
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Mouse and camera control
|
|
|
|
*/
|
|
|
|
|
2010-12-19 09:51:45 -05:00
|
|
|
if((device->isWindowActive() && g_game_focused && !pauseMenu.isVisible())
|
|
|
|
|| random_input)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2010-12-19 09:51:45 -05:00
|
|
|
if(!random_input)
|
|
|
|
device->getCursorControl()->setVisible(false);
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
if(first_loop_after_window_activation){
|
|
|
|
//std::cout<<"window active, first loop"<<std::endl;
|
|
|
|
first_loop_after_window_activation = false;
|
|
|
|
}
|
|
|
|
else{
|
2010-12-13 20:07:13 -05:00
|
|
|
s32 dx = g_input->getMousePos().X - displaycenter.X;
|
|
|
|
s32 dy = g_input->getMousePos().Y - displaycenter.Y;
|
2010-11-26 18:02:21 -05:00
|
|
|
//std::cout<<"window active, pos difference "<<dx<<","<<dy<<std::endl;
|
|
|
|
camera_yaw -= dx*0.2;
|
|
|
|
camera_pitch += dy*0.2;
|
|
|
|
if(camera_pitch < -89.5) camera_pitch = -89.5;
|
|
|
|
if(camera_pitch > 89.5) camera_pitch = 89.5;
|
|
|
|
}
|
2010-12-13 20:07:13 -05:00
|
|
|
g_input->setMousePos(displaycenter.X, displaycenter.Y);
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
device->getCursorControl()->setVisible(true);
|
|
|
|
|
|
|
|
//std::cout<<"window inactive"<<std::endl;
|
|
|
|
first_loop_after_window_activation = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
camera_yaw = wrapDegrees(camera_yaw);
|
|
|
|
camera_pitch = wrapDegrees(camera_pitch);
|
|
|
|
|
|
|
|
v3f camera_direction = v3f(0,0,1);
|
|
|
|
camera_direction.rotateYZBy(camera_pitch);
|
|
|
|
camera_direction.rotateXZBy(camera_yaw);
|
|
|
|
|
|
|
|
v3f camera_position =
|
|
|
|
player_position + v3f(0, BS+BS/2, 0);
|
|
|
|
|
|
|
|
camera->setPosition(camera_position);
|
|
|
|
// *100.0 helps in large map coordinates
|
|
|
|
camera->setTarget(camera_position + camera_direction * 100.0);
|
|
|
|
|
|
|
|
if(FIELD_OF_VIEW_TEST){
|
|
|
|
//client.m_env.getMap().updateCamera(v3f(0,0,0), v3f(0,0,1));
|
|
|
|
client.updateCamera(v3f(0,0,0), v3f(0,0,1));
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
//client.m_env.getMap().updateCamera(camera_position, camera_direction);
|
2010-12-20 15:03:49 -05:00
|
|
|
//TimeTaker timer("client.updateCamera", g_irrlicht);
|
2010-11-26 18:02:21 -05:00
|
|
|
client.updateCamera(camera_position, camera_direction);
|
|
|
|
}
|
|
|
|
|
|
|
|
//timer2.stop();
|
2010-12-20 15:03:49 -05:00
|
|
|
//TimeTaker //timer3("//timer3", g_irrlicht);
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Calculate what block is the crosshair pointing to
|
|
|
|
*/
|
|
|
|
|
|
|
|
//u32 t1 = device->getTimer()->getRealTime();
|
|
|
|
|
|
|
|
//f32 d = 4; // max. distance
|
|
|
|
f32 d = 4; // max. distance
|
|
|
|
core::line3d<f32> shootline(camera_position,
|
|
|
|
camera_position + camera_direction * BS * (d+1));
|
|
|
|
|
|
|
|
MapBlockObject *selected_object = client.getSelectedObject
|
|
|
|
(d*BS, camera_position, shootline);
|
|
|
|
|
|
|
|
if(selected_object != NULL)
|
|
|
|
{
|
|
|
|
//dstream<<"Client returned selected_object != NULL"<<std::endl;
|
|
|
|
|
|
|
|
core::aabbox3d<f32> box_on_map
|
|
|
|
= selected_object->getSelectionBoxOnMap();
|
|
|
|
|
|
|
|
hilightboxes.push_back(box_on_map);
|
|
|
|
|
|
|
|
infotext = narrow_to_wide(selected_object->infoText());
|
|
|
|
|
|
|
|
if(g_input->getLeftClicked())
|
|
|
|
{
|
|
|
|
std::cout<<DTIME<<"Left-clicked object"<<std::endl;
|
|
|
|
client.clickObject(0, selected_object->getBlock()->getPos(),
|
|
|
|
selected_object->getId(), g_selected_item);
|
|
|
|
}
|
|
|
|
else if(g_input->getRightClicked())
|
|
|
|
{
|
|
|
|
std::cout<<DTIME<<"Right-clicked object"<<std::endl;
|
|
|
|
/*
|
|
|
|
Check if we want to modify the object ourselves
|
|
|
|
*/
|
|
|
|
if(selected_object->getTypeId() == MAPBLOCKOBJECT_TYPE_SIGN)
|
|
|
|
{
|
|
|
|
dstream<<"Sign object right-clicked"<<std::endl;
|
2010-12-19 09:51:45 -05:00
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
unFocusGame();
|
|
|
|
|
|
|
|
input_guitext = guienv->addStaticText(L"",
|
|
|
|
core::rect<s32>(150,100,350,120),
|
|
|
|
true, // border?
|
|
|
|
false, // wordwrap?
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
input_guitext->setDrawBackground(true);
|
|
|
|
|
2010-12-19 09:51:45 -05:00
|
|
|
if(random_input)
|
|
|
|
{
|
|
|
|
g_text_buffer = L"ASD LOL 8)";
|
|
|
|
g_text_buffer_accepted = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_text_buffer = L"";
|
|
|
|
g_text_buffer_accepted = false;
|
|
|
|
}
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
textbuf_dest = new TextDestSign(
|
|
|
|
selected_object->getBlock()->getPos(),
|
|
|
|
selected_object->getId(),
|
|
|
|
&client);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
Otherwise pass the event to the server as-is
|
|
|
|
*/
|
|
|
|
else
|
|
|
|
{
|
|
|
|
client.clickObject(1, selected_object->getBlock()->getPos(),
|
|
|
|
selected_object->getId(), g_selected_item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else // selected_object == NULL
|
|
|
|
{
|
2010-12-18 06:10:37 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Find out which node we are pointing at
|
|
|
|
*/
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
bool nodefound = false;
|
|
|
|
v3s16 nodepos;
|
|
|
|
v3s16 neighbourpos;
|
|
|
|
core::aabbox3d<f32> nodefacebox;
|
|
|
|
f32 mindistance = BS * 1001;
|
|
|
|
|
|
|
|
v3s16 pos_i = floatToInt(player_position);
|
|
|
|
|
|
|
|
/*std::cout<<"pos_i=("<<pos_i.X<<","<<pos_i.Y<<","<<pos_i.Z<<")"
|
|
|
|
<<std::endl;*/
|
|
|
|
|
|
|
|
s16 a = d;
|
|
|
|
s16 ystart = pos_i.Y + 0 - (camera_direction.Y<0 ? a : 1);
|
|
|
|
s16 zstart = pos_i.Z - (camera_direction.Z<0 ? a : 1);
|
|
|
|
s16 xstart = pos_i.X - (camera_direction.X<0 ? a : 1);
|
|
|
|
s16 yend = pos_i.Y + 1 + (camera_direction.Y>0 ? a : 1);
|
|
|
|
s16 zend = pos_i.Z + (camera_direction.Z>0 ? a : 1);
|
|
|
|
s16 xend = pos_i.X + (camera_direction.X>0 ? a : 1);
|
|
|
|
|
2010-12-12 20:19:12 -05:00
|
|
|
for(s16 y = ystart; y <= yend; y++)
|
|
|
|
for(s16 z = zstart; z <= zend; z++)
|
2010-11-26 18:02:21 -05:00
|
|
|
for(s16 x = xstart; x <= xend; x++)
|
|
|
|
{
|
2010-12-12 20:19:12 -05:00
|
|
|
MapNode n;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
n = client.getNode(v3s16(x,y,z));
|
|
|
|
if(content_pointable(n.d) == false)
|
2010-11-26 18:02:21 -05:00
|
|
|
continue;
|
2010-12-12 20:19:12 -05:00
|
|
|
}
|
|
|
|
catch(InvalidPositionException &e)
|
|
|
|
{
|
2010-11-26 18:02:21 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
v3s16 np(x,y,z);
|
|
|
|
v3f npf = intToFloat(np);
|
|
|
|
|
|
|
|
f32 d = 0.01;
|
|
|
|
|
2010-12-12 20:19:12 -05:00
|
|
|
v3s16 dirs[6] = {
|
2010-11-26 18:02:21 -05:00
|
|
|
v3s16(0,0,1), // back
|
|
|
|
v3s16(0,1,0), // top
|
|
|
|
v3s16(1,0,0), // right
|
2010-12-12 20:19:12 -05:00
|
|
|
v3s16(0,0,-1), // front
|
|
|
|
v3s16(0,-1,0), // bottom
|
|
|
|
v3s16(-1,0,0), // left
|
2010-11-26 18:02:21 -05:00
|
|
|
};
|
2010-12-12 20:19:12 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Meta-objects
|
|
|
|
*/
|
2010-12-13 18:56:24 -05:00
|
|
|
if(n.d == CONTENT_TORCH)
|
2010-12-12 20:19:12 -05:00
|
|
|
{
|
|
|
|
v3s16 dir = unpackDir(n.dir);
|
|
|
|
v3f dir_f = v3f(dir.X, dir.Y, dir.Z);
|
|
|
|
dir_f *= BS/2 - BS/6 - BS/20;
|
|
|
|
v3f cpf = npf + dir_f;
|
|
|
|
f32 distance = (cpf - camera_position).getLength();
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2010-12-12 20:19:12 -05:00
|
|
|
core::aabbox3d<f32> box;
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2010-12-12 20:19:12 -05:00
|
|
|
// bottom
|
|
|
|
if(dir == v3s16(0,-1,0))
|
|
|
|
{
|
|
|
|
box = core::aabbox3d<f32>(
|
|
|
|
npf - v3f(BS/6, BS/2, BS/6),
|
|
|
|
npf + v3f(BS/6, -BS/2+BS/3*2, BS/6)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
// top
|
|
|
|
else if(dir == v3s16(0,1,0))
|
|
|
|
{
|
|
|
|
box = core::aabbox3d<f32>(
|
|
|
|
npf - v3f(BS/6, -BS/2+BS/3*2, BS/6),
|
|
|
|
npf + v3f(BS/6, BS/2, BS/6)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
// side
|
|
|
|
else
|
|
|
|
{
|
|
|
|
box = core::aabbox3d<f32>(
|
|
|
|
cpf - v3f(BS/6, BS/3, BS/6),
|
|
|
|
cpf + v3f(BS/6, BS/3, BS/6)
|
|
|
|
);
|
|
|
|
}
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2010-12-12 20:19:12 -05:00
|
|
|
if(distance < mindistance)
|
|
|
|
{
|
|
|
|
if(box.intersectsWithLine(shootline))
|
|
|
|
{
|
2010-11-26 18:02:21 -05:00
|
|
|
nodefound = true;
|
|
|
|
nodepos = np;
|
2010-12-12 20:19:12 -05:00
|
|
|
neighbourpos = np;
|
2010-11-26 18:02:21 -05:00
|
|
|
mindistance = distance;
|
2010-12-12 20:19:12 -05:00
|
|
|
nodefacebox = box;
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-12-12 20:19:12 -05:00
|
|
|
/*
|
|
|
|
Regular blocks
|
|
|
|
*/
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for(u16 i=0; i<6; i++)
|
|
|
|
{
|
|
|
|
v3f dir_f = v3f(dirs[i].X,
|
|
|
|
dirs[i].Y, dirs[i].Z);
|
|
|
|
v3f centerpoint = npf + dir_f * BS/2;
|
|
|
|
f32 distance =
|
|
|
|
(centerpoint - camera_position).getLength();
|
|
|
|
|
|
|
|
if(distance < mindistance)
|
|
|
|
{
|
|
|
|
core::CMatrix4<f32> m;
|
|
|
|
m.buildRotateFromTo(v3f(0,0,1), dir_f);
|
|
|
|
|
|
|
|
// This is the back face
|
|
|
|
v3f corners[2] = {
|
|
|
|
v3f(BS/2, BS/2, BS/2),
|
|
|
|
v3f(-BS/2, -BS/2, BS/2+d)
|
|
|
|
};
|
|
|
|
|
|
|
|
for(u16 j=0; j<2; j++)
|
|
|
|
{
|
|
|
|
m.rotateVect(corners[j]);
|
|
|
|
corners[j] += npf;
|
|
|
|
}
|
|
|
|
|
|
|
|
core::aabbox3d<f32> facebox(corners[0]);
|
|
|
|
facebox.addInternalPoint(corners[1]);
|
|
|
|
|
|
|
|
if(facebox.intersectsWithLine(shootline))
|
|
|
|
{
|
|
|
|
nodefound = true;
|
|
|
|
nodepos = np;
|
|
|
|
neighbourpos = np + dirs[i];
|
|
|
|
mindistance = distance;
|
|
|
|
nodefacebox = facebox;
|
|
|
|
}
|
|
|
|
} // if distance < mindistance
|
|
|
|
} // for dirs
|
|
|
|
} // regular block
|
|
|
|
} // for coords
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2010-12-18 06:10:37 -05:00
|
|
|
/*static v3s16 oldnodepos;
|
|
|
|
static bool oldnodefound = false;*/
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
if(nodefound)
|
|
|
|
{
|
|
|
|
//std::cout<<DTIME<<"nodefound == true"<<std::endl;
|
|
|
|
//std::cout<<DTIME<<"nodepos=("<<nodepos.X<<","<<nodepos.Y<<","<<nodepos.Z<<")"<<std::endl;
|
|
|
|
//std::cout<<DTIME<<"neighbourpos=("<<neighbourpos.X<<","<<neighbourpos.Y<<","<<neighbourpos.Z<<")"<<std::endl;
|
|
|
|
|
|
|
|
static v3s16 nodepos_old(-1,-1,-1);
|
|
|
|
if(nodepos != nodepos_old){
|
|
|
|
std::cout<<DTIME<<"Pointing at ("<<nodepos.X<<","
|
|
|
|
<<nodepos.Y<<","<<nodepos.Z<<")"<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
hilightboxes.push_back(nodefacebox);
|
|
|
|
|
2010-12-18 06:10:37 -05:00
|
|
|
//if(g_input->getLeftClicked())
|
|
|
|
if(g_input->getLeftClicked() ||
|
|
|
|
(g_input->getLeftState() && nodepos != nodepos_old))
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
std::cout<<DTIME<<"Ground left-clicked"<<std::endl;
|
2010-12-14 06:14:43 -05:00
|
|
|
client.pressGround(0, nodepos, neighbourpos, g_selected_item);
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
if(g_input->getRightClicked())
|
2010-12-18 06:10:37 -05:00
|
|
|
/*if(g_input->getRightClicked() ||
|
|
|
|
(g_input->getRightState() && nodepos != nodepos_old))*/
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
std::cout<<DTIME<<"Ground right-clicked"<<std::endl;
|
2010-12-14 06:14:43 -05:00
|
|
|
client.pressGround(1, nodepos, neighbourpos, g_selected_item);
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
2010-12-18 06:10:37 -05:00
|
|
|
|
|
|
|
nodepos_old = nodepos;
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
//std::cout<<DTIME<<"nodefound == false"<<std::endl;
|
|
|
|
//positiontextgui->setText(L"");
|
|
|
|
}
|
|
|
|
|
2010-12-18 06:10:37 -05:00
|
|
|
/*oldnodefound = nodefound;
|
|
|
|
oldnodepos = nodepos;*/
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
} // selected_object == NULL
|
|
|
|
|
|
|
|
g_input->resetLeftClicked();
|
|
|
|
g_input->resetRightClicked();
|
|
|
|
|
2010-12-18 06:10:37 -05:00
|
|
|
if(g_input->getLeftReleased())
|
|
|
|
{
|
|
|
|
std::cout<<DTIME<<"Left released"<<std::endl;
|
|
|
|
client.stopDigging();
|
|
|
|
}
|
|
|
|
if(g_input->getRightReleased())
|
|
|
|
{
|
|
|
|
//std::cout<<DTIME<<"Right released"<<std::endl;
|
|
|
|
// Nothing here
|
|
|
|
}
|
|
|
|
|
|
|
|
g_input->resetLeftReleased();
|
|
|
|
g_input->resetRightReleased();
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
/*
|
|
|
|
Calculate stuff for drawing
|
|
|
|
*/
|
|
|
|
|
|
|
|
camera->setAspectRatio((f32)screensize.X / (f32)screensize.Y);
|
2010-12-19 09:51:45 -05:00
|
|
|
|
|
|
|
// Background color is choosen based on whether the player is
|
|
|
|
// much beyond the initial ground level
|
|
|
|
/*video::SColor bgcolor;
|
|
|
|
v3s16 p0 = Map::floatToInt(player_position);
|
|
|
|
// Does this make short random delays?
|
|
|
|
// NOTE: no need for this, sky doesn't show underground with
|
|
|
|
// enough range
|
|
|
|
bool is_underground = client.isNodeUnderground(p0);
|
|
|
|
//bool is_underground = false;
|
|
|
|
if(is_underground == false)
|
|
|
|
bgcolor = video::SColor(255,90,140,200);
|
|
|
|
else
|
|
|
|
bgcolor = video::SColor(255,0,0,0);*/
|
|
|
|
|
|
|
|
//video::SColor bgcolor = video::SColor(255,90,140,200);
|
|
|
|
//video::SColor bgcolor = skycolor;
|
|
|
|
|
|
|
|
//s32 daynight_i = client.getDayNightIndex();
|
|
|
|
//video::SColor bgcolor = skycolor[daynight_i];
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2010-12-19 09:51:45 -05:00
|
|
|
u32 daynight_ratio = client.getDayNightRatio();
|
|
|
|
video::SColor bgcolor = video::SColor(
|
|
|
|
255,
|
|
|
|
skycolor.getRed() * daynight_ratio / 1000,
|
|
|
|
skycolor.getGreen() * daynight_ratio / 1000,
|
|
|
|
skycolor.getBlue() * daynight_ratio / 1000);
|
2010-12-14 06:14:43 -05:00
|
|
|
|
2010-12-19 09:51:45 -05:00
|
|
|
/*
|
|
|
|
Fog
|
|
|
|
*/
|
|
|
|
|
|
|
|
if(g_settings.getBool("enable_fog") == true)
|
|
|
|
{
|
|
|
|
f32 range = g_viewing_range_nodes * BS;
|
|
|
|
if(g_viewing_range_all)
|
|
|
|
range = 100000*BS;
|
|
|
|
|
|
|
|
driver->setFog(
|
|
|
|
bgcolor,
|
|
|
|
video::EFT_FOG_LINEAR,
|
|
|
|
range*0.6,
|
|
|
|
range,
|
|
|
|
0.01,
|
|
|
|
false, // pixel fog
|
|
|
|
false // range fog
|
|
|
|
);
|
|
|
|
}
|
2010-12-14 06:14:43 -05:00
|
|
|
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
/*
|
|
|
|
Update gui stuff (0ms)
|
|
|
|
*/
|
|
|
|
|
2010-12-20 15:03:49 -05:00
|
|
|
//TimeTaker guiupdatetimer("Gui updating", g_irrlicht);
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
{
|
2010-12-14 06:14:43 -05:00
|
|
|
wchar_t temptext[150];
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
static float drawtime_avg = 0;
|
|
|
|
drawtime_avg = drawtime_avg * 0.98 + (float)drawtime*0.02;
|
2010-12-14 06:14:43 -05:00
|
|
|
static float beginscenetime_avg = 0;
|
|
|
|
beginscenetime_avg = beginscenetime_avg * 0.98 + (float)beginscenetime*0.02;
|
2010-11-26 18:02:21 -05:00
|
|
|
static float scenetime_avg = 0;
|
|
|
|
scenetime_avg = scenetime_avg * 0.98 + (float)scenetime*0.02;
|
|
|
|
static float endscenetime_avg = 0;
|
|
|
|
endscenetime_avg = endscenetime_avg * 0.98 + (float)endscenetime*0.02;
|
|
|
|
|
2010-12-14 06:14:43 -05:00
|
|
|
swprintf(temptext, 150, L"Minetest-c55 ("
|
2010-11-26 18:02:21 -05:00
|
|
|
L"F: item=%i"
|
|
|
|
L", R: range_all=%i"
|
|
|
|
L")"
|
2010-12-14 06:14:43 -05:00
|
|
|
L" drawtime=%.0f, beginscenetime=%.0f, scenetime=%.0f, endscenetime=%.0f",
|
2010-11-26 18:02:21 -05:00
|
|
|
g_selected_item,
|
|
|
|
g_viewing_range_all,
|
|
|
|
drawtime_avg,
|
2010-12-14 06:14:43 -05:00
|
|
|
beginscenetime_avg,
|
2010-11-26 18:02:21 -05:00
|
|
|
scenetime_avg,
|
|
|
|
endscenetime_avg
|
|
|
|
);
|
|
|
|
|
|
|
|
guitext->setText(temptext);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2010-12-14 06:14:43 -05:00
|
|
|
wchar_t temptext[150];
|
|
|
|
swprintf(temptext, 150,
|
2010-11-26 18:02:21 -05:00
|
|
|
L"(% .1f, % .1f, % .1f)"
|
|
|
|
L" (% .3f < btime_jitter < % .3f"
|
|
|
|
L", dtime_jitter = % .1f %%)",
|
|
|
|
player_position.X/BS,
|
|
|
|
player_position.Y/BS,
|
|
|
|
player_position.Z/BS,
|
|
|
|
busytime_jitter1_min_sample,
|
|
|
|
busytime_jitter1_max_sample,
|
|
|
|
dtime_jitter1_max_fraction * 100.0
|
|
|
|
);
|
|
|
|
|
|
|
|
guitext2->setText(temptext);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
/*wchar_t temptext[100];
|
|
|
|
swprintf(temptext, 100,
|
|
|
|
SWPRINTF_CHARSTRING,
|
|
|
|
infotext.substr(0,99).c_str()
|
|
|
|
);
|
|
|
|
|
|
|
|
guitext_info->setText(temptext);*/
|
|
|
|
|
|
|
|
guitext_info->setText(infotext.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Inventory
|
|
|
|
*/
|
|
|
|
|
|
|
|
static u16 old_selected_item = 65535;
|
|
|
|
if(client.getLocalInventoryUpdated()
|
|
|
|
|| g_selected_item != old_selected_item)
|
|
|
|
{
|
|
|
|
old_selected_item = g_selected_item;
|
|
|
|
//std::cout<<"Updating local inventory"<<std::endl;
|
|
|
|
client.getLocalInventory(local_inventory);
|
|
|
|
quick_inventory->setSelection(g_selected_item);
|
|
|
|
quick_inventory->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(input_guitext != NULL)
|
|
|
|
{
|
|
|
|
/*wchar_t temptext[100];
|
|
|
|
swprintf(temptext, 100,
|
|
|
|
SWPRINTF_CHARSTRING,
|
|
|
|
g_text_buffer.substr(0,99).c_str()
|
|
|
|
);*/
|
|
|
|
input_guitext->setText(g_text_buffer.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Text input stuff
|
|
|
|
*/
|
|
|
|
if(input_guitext != NULL && g_text_buffer_accepted)
|
|
|
|
{
|
|
|
|
input_guitext->remove();
|
|
|
|
input_guitext = NULL;
|
|
|
|
|
|
|
|
if(textbuf_dest != NULL)
|
|
|
|
{
|
|
|
|
std::string text = wide_to_narrow(g_text_buffer);
|
|
|
|
dstream<<"Sending text: "<<text<<std::endl;
|
|
|
|
textbuf_dest->sendText(text);
|
|
|
|
delete textbuf_dest;
|
|
|
|
textbuf_dest = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
focusGame();
|
|
|
|
}
|
|
|
|
|
|
|
|
//guiupdatetimer.stop();
|
|
|
|
|
|
|
|
/*
|
|
|
|
Drawing begins
|
|
|
|
*/
|
|
|
|
|
2010-12-20 15:03:49 -05:00
|
|
|
TimeTaker drawtimer("Drawing", g_irrlicht);
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
|
2010-12-14 06:14:43 -05:00
|
|
|
{
|
2010-12-20 15:03:49 -05:00
|
|
|
TimeTaker timer("beginScene", g_irrlicht);
|
|
|
|
driver->beginScene(true, true, bgcolor);
|
|
|
|
//driver->beginScene(false, true, bgcolor);
|
|
|
|
beginscenetime = timer.stop(true);
|
2010-12-14 06:14:43 -05:00
|
|
|
}
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
//timer3.stop();
|
|
|
|
|
|
|
|
//std::cout<<DTIME<<"smgr->drawAll()"<<std::endl;
|
|
|
|
|
|
|
|
{
|
2010-12-20 15:03:49 -05:00
|
|
|
TimeTaker timer("smgr", g_irrlicht);
|
|
|
|
smgr->drawAll();
|
|
|
|
scenetime = timer.stop(true);
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2010-12-20 15:03:49 -05:00
|
|
|
//TimeTaker timer9("auxiliary drawings", g_irrlicht);
|
2010-11-26 18:02:21 -05:00
|
|
|
// 0ms
|
|
|
|
|
|
|
|
driver->draw2DLine(displaycenter - core::vector2d<s32>(10,0),
|
|
|
|
displaycenter + core::vector2d<s32>(10,0),
|
|
|
|
video::SColor(255,255,255,255));
|
|
|
|
driver->draw2DLine(displaycenter - core::vector2d<s32>(0,10),
|
|
|
|
displaycenter + core::vector2d<s32>(0,10),
|
|
|
|
video::SColor(255,255,255,255));
|
|
|
|
|
|
|
|
//timer9.stop();
|
2010-12-20 15:03:49 -05:00
|
|
|
//TimeTaker //timer10("//timer10", g_irrlicht);
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
video::SMaterial m;
|
|
|
|
m.Thickness = 10;
|
|
|
|
m.Lighting = false;
|
|
|
|
driver->setMaterial(m);
|
|
|
|
|
|
|
|
driver->setTransform(video::ETS_WORLD, core::IdentityMatrix);
|
|
|
|
|
|
|
|
for(core::list< core::aabbox3d<f32> >::Iterator i=hilightboxes.begin();
|
|
|
|
i != hilightboxes.end(); i++)
|
|
|
|
{
|
|
|
|
/*std::cout<<"hilightbox min="
|
|
|
|
<<"("<<i->MinEdge.X<<","<<i->MinEdge.Y<<","<<i->MinEdge.Z<<")"
|
|
|
|
<<" max="
|
|
|
|
<<"("<<i->MaxEdge.X<<","<<i->MaxEdge.Y<<","<<i->MaxEdge.Z<<")"
|
|
|
|
<<std::endl;*/
|
|
|
|
driver->draw3DBox(*i, video::SColor(255,0,0,0));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//timer10.stop();
|
2010-12-20 15:03:49 -05:00
|
|
|
//TimeTaker //timer11("//timer11", g_irrlicht);
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Draw gui
|
|
|
|
*/
|
|
|
|
// 0-1ms
|
|
|
|
guienv->drawAll();
|
|
|
|
|
|
|
|
// End drawing
|
|
|
|
{
|
2010-12-20 15:03:49 -05:00
|
|
|
TimeTaker timer("endScene", g_irrlicht);
|
|
|
|
driver->endScene();
|
|
|
|
endscenetime = timer.stop(true);
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
drawtime = drawtimer.stop(true);
|
|
|
|
|
|
|
|
/*
|
|
|
|
Drawing ends
|
|
|
|
*/
|
|
|
|
|
|
|
|
static s16 lastFPS = 0;
|
|
|
|
//u16 fps = driver->getFPS();
|
|
|
|
u16 fps = (1.0/dtime_avg1);
|
|
|
|
|
|
|
|
if (lastFPS != fps)
|
|
|
|
{
|
|
|
|
core::stringw str = L"Minetest [";
|
|
|
|
str += driver->getName();
|
|
|
|
str += "] FPS:";
|
|
|
|
str += fps;
|
|
|
|
|
|
|
|
device->setWindowCaption(str.c_str());
|
|
|
|
lastFPS = fps;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*}
|
|
|
|
else
|
|
|
|
device->yield();*/
|
|
|
|
}
|
|
|
|
|
2010-12-19 09:51:45 -05:00
|
|
|
delete quick_inventory;
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
} // client is deleted at this point
|
|
|
|
|
|
|
|
delete g_input;
|
|
|
|
|
|
|
|
/*
|
2010-11-29 03:52:07 -05:00
|
|
|
In the end, delete the Irrlicht device.
|
2010-11-26 18:02:21 -05:00
|
|
|
*/
|
|
|
|
device->drop();
|
2010-12-14 08:16:49 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Update configuration file
|
|
|
|
*/
|
2010-12-20 07:59:21 -05:00
|
|
|
/*if(configpath != "")
|
2010-12-14 08:16:49 -05:00
|
|
|
{
|
|
|
|
g_settings.updateConfigFile(configpath.c_str());
|
2010-12-20 07:59:21 -05:00
|
|
|
}*/
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
} //try
|
|
|
|
catch(con::PeerNotFoundException &e)
|
|
|
|
{
|
|
|
|
dstream<<DTIME<<"Connection timed out."<<std::endl;
|
|
|
|
}
|
2010-11-29 10:55:07 -05:00
|
|
|
#if CATCH_UNHANDLED_EXCEPTIONS
|
2010-11-26 18:02:21 -05:00
|
|
|
/*
|
|
|
|
This is what has to be done in every thread to get suitable debug info
|
|
|
|
*/
|
|
|
|
catch(std::exception &e)
|
|
|
|
{
|
|
|
|
dstream<<std::endl<<DTIME<<"An unhandled exception occurred: "
|
|
|
|
<<e.what()<<std::endl;
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
debugstreams_deinit();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//END
|