1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
/*
* Copyright (C) 2002 Joern Thyssen <jthyssen@dk.ibm.com>
* Copyright (C) 2002-2019 the AUTHORS
*
* 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 3 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, see <https://www.gnu.org/licenses/>.
*
* $Id: export.h,v 1.44 2022/01/02 22:56:36 plm Exp $
*/
#include <glib.h>
#include "backgammon.h"
#ifndef EXPORT_H
#define EXPORT_H
#define EXPORT_CUBE_ACTUAL 4
#define EXPORT_CUBE_MISSED 5
#define EXPORT_CUBE_CLOSE 6
typedef enum {
HTML_EXPORT_TYPE_GNU,
HTML_EXPORT_TYPE_BBS,
HTML_EXPORT_TYPE_FIBS2HTML,
NUM_HTML_EXPORT_TYPES
} htmlexporttype;
typedef enum {
HTML_EXPORT_CSS_HEAD,
HTML_EXPORT_CSS_INLINE,
HTML_EXPORT_CSS_EXTERNAL,
NUM_HTML_EXPORT_CSS
} htmlexportcss;
extern const char *aszHTMLExportType[];
extern const char *aszHTMLExportCSS[];
extern const char *aszHTMLExportCSSCommand[];
typedef struct {
int fIncludeAnnotation;
int fIncludeAnalysis;
int fIncludeStatistics;
int fIncludeMatchInfo;
/* display board: 0 (never), 1 (every move), 2 (every second move) etc */
int fDisplayBoard;
int fSide; /* 0, 1, or -1 for both players */
/* moves */
unsigned int nMoves; /* show at most nMoves */
int fMovesDetailProb; /* show detailed probabilities */
int afMovesParameters[2]; /* detailed parameters */
int afMovesDisplay[4]; /* display moves */
/* cube */
int fCubeDetailProb; /* show detailed probabilities */
int afCubeParameters[2]; /* detailed parameters */
int afCubeDisplay[7]; /* display cube actions */
/* FIXME: add format specific options */
/* For example, frames/non frames for HTML. */
char *szHTMLPictureURL;
htmlexporttype het;
char *szHTMLExtension;
htmlexportcss hecss;
/* sizes */
int nPNGSize;
int nHtmlSize;
} exportsetup;
extern exportsetup exsExport;
extern char *filename_from_iGame(const char *szBase, const int iGame);
extern int WritePNG(const char *sz, unsigned char *puch,
unsigned int nStride, unsigned int nSizeX, unsigned int nSizeY);
#if defined(USE_BOARD3D)
void GenerateImage3d(const char *szName, unsigned int nSize, unsigned int nSizeX, unsigned int nSizeY);
#endif
extern void TextAnalysis(GString * gsz, const matchstate * pms, moverecord * pmr);
extern void TextPrologue(GString * gsz, const matchstate * pms, const int iGame);
extern void TextBoardHeader(GString * gsz, const matchstate * pms, const int iGame, const int iMove);
#endif
|