sources/main.cpp

Wed, 27 Jan 2021 19:39:14 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Wed, 27 Jan 2021 19:39:14 +0200
changeset 192
94c67ae846fc
parent 190
90bf9049e5eb
permissions
-rw-r--r--

handle exiting ZFC without using exceptions

/*
	Copyright 2014 - 2021 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.
*/

#ifndef _WIN32
# include <sys/select.h>
#else
# include <winsock2.h>
#endif

#include "main.h"
#include "network/rconsession.h"
#include "huffman.h"
#include "interface.h"

// -------------------------------------------------------------------------------------------------
//
int main (int argc, char* argv[])
{
#ifdef _WIN32
# ifdef HAVE_PDCURSES_WIN32A
	// PDCurses-win32a uses a GUI window of its own so we need to destroy the console window.
	FreeConsole();
# endif

	WSADATA wsaData;
	int result = WSAStartup (MAKEWORD (2, 2), &wsaData);

	if (result != 0)
	{
		fprintf (stderr, "WSAStartup failed: %d\n", result);
		return 1;
	}
#endif
	
	HUFFMAN_Construct();

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

	zfc::Interface iface;

	if (argc == 3)
		iface.connect (argv[1], argv[2]);

	for (;;)
	{
		fd_set fdset;
		timeval timeout;
		timeout.tv_sec = 0;
		timeout.tv_usec = 250000; // 0.25 seconds
		FD_ZERO(&fdset);
		FD_SET(0, &fdset);
		const int fd = iface.getSession()->getSocket()->file_descriptor;
		FD_SET(fd, &fdset);
		::select(fd + 1, &fdset, nullptr, nullptr, &timeout);
		bool shouldquit = false;
		if (FD_ISSET(0, &fdset))
		{
			// stdin is ready, what's incoming?
			iface.handleInput(&shouldquit);
		}
		if (shouldquit)
		{
			break;
		}
		else
		{
			iface.getSession()->tick();
			iface.render();
		}
	}

	iface.getSession()->disconnect();
	return EXIT_SUCCESS;
}

mercurial