sources/main.cpp

Tue, 16 Dec 2014 02:48:18 +0200

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Tue, 16 Dec 2014 02:48:18 +0200
changeset 58
d175243ad169
parent 51
481073b016a9
child 59
00a084f8ed26
permissions
-rw-r--r--

- rcon sessions are no longer allocated on the heap

/*
	Copyright 2014 Teemu Piippo
	All rights reserved.

	Redistribution and use in source and binary forms, with or without
	modification, are permitted provided that the following conditions
	are met:

	1. Redistributions of source code must retain the above copyright
	   notice, this list of conditions and the following disclaimer.
	2. Redistributions in binary form must reproduce the above copyright
	   notice, this list of conditions and the following disclaimer in the
	   documentation and/or other materials provided with the distribution.
	3. Neither the name of the copyright holder nor the names of its
	   contributors may be used to endorse or promote products derived from
	   this software without specific prior written permission.

	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
	"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
	TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
	PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
	OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
	EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
	PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
	PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
	LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
	NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
	SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include <time.h>
#include <sys/select.h>
#include "main.h"
#include "network/rconsession.h"
#include "huffman/huffman.h"
#include "interface.h"

// -------------------------------------------------------------------------------------------------
//
FUNCTION
main (int argc, char* argv[]) -> int
{
	HUFFMAN_Construct();

	if (argc != 1 and argc != 3)
	{
		fprintf (stderr, "usage: %s\nusage: %s <address> <password>\n", argv[0], argv[0]);
		return EXIT_FAILURE;
	}

	Interface::initialize();

	if (argc == 3)
		Interface::connect (argv[1], argv[2]);

	try
	{
		for (;;)
		{
			fd_set fdset;
			int highest = 0;
			timeval timeout;
			timeout.tv_sec = 0;
			timeout.tv_usec = 250000; // 0.25 seconds
			FD_ZERO (&fdset);
			FD_SET (0, &fdset);
			RCONSession* session = RCONSession::get_session();

			if (session)
			{
				int fd = session->socket()->file_descriptor();
				highest = max (highest, fd);
				FD_SET (fd, &fdset);
			}

			select (highest + 1, &fdset, nullptr, nullptr, &timeout);

			if (FD_ISSET (0, &fdset))
				// stdin is ready, what's incoming?
				Interface::handle_input();

			if (session)
				session->tick();

			Interface::render();
		}
	}
	catch (const Exitception&) {}

	if (RCONSession::get_session())
		RCONSession::get_session()->disconnect();

	return EXIT_SUCCESS;
}

mercurial