Crossfire Server, Trunk  1.75.0
Utils.h
Go to the documentation of this file.
1 /*
2  * Crossfire -- cooperative multi-player graphical RPG and adventure game
3  *
4  * Copyright (c) 2020-2021 the Crossfire Development Team
5  *
6  * Crossfire is free software and comes with ABSOLUTELY NO WARRANTY. You are
7  * welcome to redistribute it under certain conditions. For details, please
8  * see COPYING and LICENSE.
9  *
10  * The authors can be reached via e-mail at <crossfire@metalforge.org>.
11  */
12 
13 #ifndef UTILS_H
14 #define UTILS_H
15 
16 #include "global.h"
17 
18 class Utils {
19 public:
26  static bool endsWith(const char * const str, const char * const with);
27 
34  static void writeLinkedChar(const linked_char *list, StringBuffer *buf);
35 
42  static void writeStringArray(char **items, size_t count, StringBuffer *buf);
43 };
44 
45 #endif /* UTILS_H */
46 
global.h
buf
StringBuffer * buf
Definition: readable.cpp:1565
linked_char
Definition: global.h:98
Utils
Definition: Utils.h:18
StringBuffer
A buffer that will be expanded as content is added to it.
Definition: stringbuffer.cpp:25
list
How to Install a Crossfire Server on you must install a python script engine on your computer Python is the default script engine of Crossfire You can find the python engine you have only to install them The VisualC Crossfire settings are for but you habe then to change the pathes in the VC settings Go in Settings C and Settings Link and change the optional include and libs path to the new python installation path o except the maps ! You must download a map package and install them the share folder Its must look like doubleclick on crossfire32 dsw There are projects in your libcross lib and plugin_python You need to compile all Easiest way is to select the plugin_python ReleaseLog as active this will compile all others too Then in Visual C press< F7 > to compile If you don t have an appropriate compiler you can try to get the the VC copies the crossfire32 exe in the crossfire folder and the plugin_python dll in the crossfire share plugins folder we will remove it when we get time for it o Last showing lots of weird write to the Crossfire mailing list
Definition: INSTALL_WIN32.txt:50
Utils::writeStringArray
static void writeStringArray(char **items, size_t count, StringBuffer *buf)
Write a list of strings as ' a,b,c' (leading space).
Definition: Utils.cpp:36
Utils::endsWith
static bool endsWith(const char *const str, const char *const with)
Checks if a string ends with another one.
Definition: Utils.cpp:16
Utils::writeLinkedChar
static void writeLinkedChar(const linked_char *list, StringBuffer *buf)
Write a list of strings as ' a,b,c' (leading space).
Definition: Utils.cpp:22