bygfoot/src/misc.c

169 lines
3.6 KiB
C
Raw Normal View History

#include "free.h"
#include "main.h"
2005-01-09 21:21:22 +01:00
#include "maths.h"
2004-12-23 13:58:39 +01:00
#include "misc.h"
/**
Print the contents of a GError (if it was set).
If abort_program is TRUE, we free the memory
and exit the game.
@param error The GError we check.
@param abort_program Whether or not we continue or exit the program.
*/
void
2005-01-09 21:21:22 +01:00
misc_print_error(GError **error, gboolean abort_program)
2004-12-23 13:58:39 +01:00
{
gchar buf[SMALL];
2005-01-09 21:21:22 +01:00
if(*error == NULL)
2004-12-23 13:58:39 +01:00
return;
2005-01-09 21:21:22 +01:00
sprintf(buf, "%s", (*error)->message);
2004-12-23 13:58:39 +01:00
g_warning("error message: %s\n", buf);
/*d*/
/* show_popup_window(buf); */
2005-01-09 21:21:22 +01:00
g_error_free(*error);
*error = NULL;
2004-12-23 13:58:39 +01:00
if(abort_program)
2005-01-09 21:21:22 +01:00
main_exit_program(EXIT_PRINT_ERROR, NULL);
}
/** Swap two integers.
@param first The first integer.
@param second The second integer. */
void
misc_swap_int(gint *first, gint *second)
{
gint swap = *first;
*first = *second;
*second = swap;
}
2005-01-09 21:21:22 +01:00
/** Swap two pointers.
@param first The first pointer.
@param second The second pointer. */
void
misc_swap_gpointer(gpointer *first, gpointer *second)
{
gpointer swap = *first;
*first = *second;
*second = swap;
}
/** Transform a string containing white spaces into an array of strings without
white spaces.
@param string The string containing white spaces.
@return A GPtrArray containing all the strings without white spaces that were part of the original string.
This array must be freed with free_g_string_array(). */
GPtrArray*
misc_separate_strings(gchar *string)
{
gint i, cnt = 0, start = 0;
gchar buf[BIG];
GPtrArray *string_array = g_ptr_array_new();
GString *new_string = NULL;
for(i=0;i<strlen(string);i++)
if(g_ascii_isspace(string[i]))
start++;
else
break;
if(start == strlen(string))
2004-12-23 13:58:39 +01:00
{
g_warning("misc_separate_strings: input string contains only white spaces\n");
return string_array;
}
2004-12-23 13:58:39 +01:00
for(i=start;i<strlen(string) + 1;i++)
{
if(i < strlen(string) && !g_ascii_isspace(string[i]))
buf[cnt++] = string[i];
else
{
buf[cnt] = '\0';
cnt = 0;
if(strlen(buf) > 0)
{
new_string = g_string_new(buf);
g_ptr_array_add(string_array, (gpointer)new_string);
}
}
2004-12-23 13:58:39 +01:00
}
return string_array;
2004-12-23 13:58:39 +01:00
}
2005-01-09 21:21:22 +01:00
/** Write a pointer array randomly into another one and free
the original one.
@param array The array to randomise.
@return A new pointer array containing the items in random order. */
GPtrArray*
misc_randomise_g_pointer_array(GPtrArray *array)
{
GPtrArray *new = g_ptr_array_new();
gint order[array->len];
gint i;
math_generate_permutation(order, 0, array->len - 1);
for(i=0;i<array->len;i++)
g_ptr_array_add(new, g_ptr_array_index(array, order[i]));
g_ptr_array_free(array, TRUE);
return new;
}
/** Print a thousands-grouped output of 'number' into 'buf',
like 2 234 345 instead of 2234345.
@param number The number to print.
@buf The buffer to hold the number.
@append Whether to overwrite the buffer or append. */
void
misc_print_grouped_int(gint number, gchar *buf, gboolean append)
{
gint i;
gchar buf2[SMALL];
gint length = 0;
gfloat copy = (gfloat)(abs(number));
gint number2 = abs(number);
if(!append)
strcpy(buf, "");
while(copy >= 1)
{
copy /= 10;
length++;
}
if(length > 9)
{
sprintf(buf2, "%d", number);
strcat(buf, buf2);
return;
}
for(i = length; i > 0; i--)
{
sprintf(buf2, "%d", math_get_place(number2, i));
strcat(buf, buf2);
if(i % 3 == 1)
strcat(buf, " ");
}
if(number < 0)
{
sprintf(buf2, "- ");
strcat(buf2, buf);
sprintf(buf, "%s", buf2);
}
else if(number == 0)
strcat(buf, "0");
}