project_files/frontlib/ipc/mapconn.h
author koda
Tue, 21 Jan 2014 22:43:06 +0100
changeset 10017 de822cd3df3a
parent 7482 d70a5b0d1190
permissions -rw-r--r--
fixwhitespace and dos2unix
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10017
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
     1
/*
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
     2
 * Hedgewars, a free turn based strategy game
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
     3
 * Copyright (C) 2012 Simeon Maxein <smaxein@googlemail.com>
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
     4
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
     5
 * This program is free software; you can redistribute it and/or
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
     6
 * modify it under the terms of the GNU General Public License
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
     7
 * as published by the Free Software Foundation; either version 2
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
     8
 * of the License, or (at your option) any later version.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
     9
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    13
 * GNU General Public License for more details.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    14
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    15
 * You should have received a copy of the GNU General Public License
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    16
 * along with this program; if not, write to the Free Software
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    18
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    19
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    20
/**
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    21
 * Functions for querying a map preview from the engine, which includes both a two-color image
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    22
 * and the number of hogs this map is suitable for.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    23
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    24
 * The general usage is to first create a mapconn object by calling flib_mapconn_create.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    25
 * That will cause the frontlib to listen on a random port which can be queried using
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    26
 * flib_mapconn_getport(). You should also register your callback functions right at the start
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    27
 * to ensure you don't miss any callbacks.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    28
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    29
 * Next, start the engine (that part is up to you) with the appropriate command line arguments
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    30
 * for a map preview request.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    31
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    32
 * In order to allow the mapconn to run, you should regularly call flib_mapconn_tick(), which
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    33
 * performs network I/O and calls your callbacks if the map has been generated or an error
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    34
 * has occurred. Once either the onSuccess or onFailure callback is called, you should destroy
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    35
 * the mapconn and stop calling tick().
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    36
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    37
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    38
#ifndef IPC_MAPCONN_H_
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    39
#define IPC_MAPCONN_H_
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    40
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    41
#include "../model/map.h"
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    42
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    43
#include <stdint.h>
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    44
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    45
#define MAPIMAGE_WIDTH 256
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    46
#define MAPIMAGE_HEIGHT 128
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    47
#define MAPIMAGE_BYTES (MAPIMAGE_WIDTH/8*MAPIMAGE_HEIGHT)
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    48
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    49
typedef struct _flib_mapconn flib_mapconn;
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    50
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    51
/**
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    52
 * Start a new map rendering connection (mapconn). This means a listening socket
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    53
 * will be started on a random unused port, waiting for a connection from the
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    54
 * engine process. Once this connection is established, the required information
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    55
 * will be sent to the engine, and the reply is read.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    56
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    57
 * The map must be a regular, maze or drawn map - for a preview of a named map,
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    58
 * use the preview images in the map's directory, and for the hog count read the
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    59
 * map information (e.g. using flib_mapcfg_read).
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    60
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    61
 * No NULL parameters allowed, returns NULL on failure.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    62
 * Use flib_mapconn_destroy to free the returned object.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    63
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    64
flib_mapconn *flib_mapconn_create(const flib_map *mapdesc);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    65
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    66
/**
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    67
 * Destroy the mapconn object. Passing NULL is allowed and does nothing.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    68
 * flib_mapconn_destroy may be called from inside a callback function.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    69
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    70
void flib_mapconn_destroy(flib_mapconn *conn);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    71
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    72
/**
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    73
 * Returns the port on which the mapconn is listening. Only fails if you
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    74
 * pass NULL (not allowed), in that case 0 is returned.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    75
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    76
int flib_mapconn_getport(flib_mapconn *conn);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    77
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    78
/**
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    79
 * Set a callback which will receive the rendered map if the rendering succeeds.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    80
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    81
 * Expected callback signature:
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    82
 * void handleSuccess(void *context, const uint8_t *bitmap, int numHedgehogs)
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    83
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    84
 * The context passed to the callback is the same pointer you provided when
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    85
 * registering the callback. bitmap is a pointer to a buffer of size MAPIMAGE_BYTES
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    86
 * containing a bit-packed image of size MAPIMAGE_WIDTH * MAPIMAGE_HEIGHT.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    87
 * numHedgehogs is the number of hogs that fit on this map.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    88
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    89
 * The bitmap pointer passed to the callback belongs to the caller,
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    90
 * so it should not be stored elsewhere. Note that it remains valid
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    91
 * inside the callback method even if flib_mapconn_destroy is called.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    92
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    93
void flib_mapconn_onSuccess(flib_mapconn *conn, void (*callback)(void* context, const uint8_t *bitmap, int numHedgehogs), void *context);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    94
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    95
/**
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    96
 * Set a callback which will receive an error message if rendering fails.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    97
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    98
 * Expected callback signature:
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
    99
 * void handleFailure(void *context, const char *errormessage)
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   100
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   101
 * The context passed to the callback is the same pointer you provided when
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   102
 * registering the callback.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   103
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   104
 * The error message passed to the callback belongs to the caller,
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   105
 * so it should not be stored elsewhere. Note that it remains valid
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   106
 * inside the callback method even if flib_mapconn_destroy is called.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   107
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   108
void flib_mapconn_onFailure(flib_mapconn *conn, void (*callback)(void* context, const char *errormessage), void *context);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   109
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   110
/**
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   111
 * Perform I/O operations and call callbacks if something interesting happens.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   112
 * Should be called regularly.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   113
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   114
void flib_mapconn_tick(flib_mapconn *conn);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   115
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7482
diff changeset
   116
#endif