libdice/lib/dice.c

196 lines
3.2 KiB
C
Raw Normal View History

2018-02-13 20:27:38 +01:00
#include "dice.h"
#include "dice_parse.h"
#include <stdlib.h>
#include <string.h>
#ifndef HAVE_ARC4RANDOM_UNIFORM
#include <bsd/stdlib.h>
#endif
2018-02-14 19:31:52 +01:00
extern int yylex_init(void **state);
extern int yylex_destroy(void *state);
extern void yylex(void *state);
extern void yy_switch_to_buffer(void *buffer, void *scanner);
extern void *yy_scan_string(char const *s, void *scanner);
extern void yy_delete_buffer(void *b, void *scanner);
2018-02-13 20:27:38 +01:00
struct dice_
{
2018-02-14 19:31:52 +01:00
int consumed;
2018-02-13 20:27:38 +01:00
uint32_t amount;
uint32_t sides;
char *errmsg;
};
static dice_t dice_new(void)
{
dice_t tmp = calloc(1, sizeof(struct dice_));
if (tmp == NULL) {
return NULL;
}
return tmp;
}
void dice_free(dice_t t)
{
if (t == NULL) {
return;
}
free(t);
}
void dice_result_free(dice_result_t *r)
{
if (r == NULL) {
return;
}
free(r);
}
void dice_result_freev(dice_result_t *r, size_t len)
{
if (r == NULL || len == 0) {
return;
}
free(r);
}
dice_t dice_simple(uint32_t amount, uint32_t sides)
{
dice_t tmp = dice_new();
if (amount == 0 || sides == 0) {
return NULL;
}
if (tmp == NULL) {
return NULL;
}
tmp->amount = amount;
tmp->sides = sides;
return tmp;
}
dice_t dice_parse(char const *s)
{
2018-02-14 19:31:52 +01:00
void *scanner = NULL;
2018-02-13 20:27:38 +01:00
dice_t d = NULL;
void *buffer = NULL;
int ret = 0;
d = dice_new();
if (d == NULL) {
return NULL;
}
2018-02-14 19:31:52 +01:00
yylex_init(&scanner);
buffer = yy_scan_string(s, scanner);
yy_switch_to_buffer(buffer, scanner);
ret = yyparse(scanner, d);
yy_delete_buffer(buffer, scanner);
yylex_destroy(scanner);
2018-02-13 20:27:38 +01:00
if (ret) {
dice_free(d);
return NULL;
}
return d;
}
bool dice_set(dice_t d, dice_option_t opt, ...)
{
va_list lst;
va_start(lst, opt);
switch (opt) {
case DICEOPTION_AMOUNT: d->amount = va_arg(lst, uint32_t); break;
case DICEOPTION_SIDES: d->sides = va_arg(lst, uint32_t); break;
default: return false;
}
va_end(lst);
return true;
}
bool dice_get(dice_t d, dice_option_t opt, ...)
{
va_list lst;
va_start(lst, opt);
switch (opt) {
case DICEOPTION_AMOUNT:
{
uint32_t *ptr = va_arg(lst, uint32_t*);
*ptr = d->amount;
} break;
case DICEOPTION_SIDES:
{
uint32_t *ptr = va_arg(lst, uint32_t*);
*ptr = d->sides;
} break;
default: return false;
}
va_end(lst);
return true;
}
int64_t dice_roll(dice_t d)
{
int64_t result = 0;
uint32_t i = 0;
for (i = 0; i < d->amount; i++) {
result += arc4random_uniform(d->sides) + 1;
}
return result;
}
bool dice_evaluate(dice_t d, dice_result_t **res, size_t *reslen)
{
size_t len = 0;
dice_result_t *r = NULL;
uint32_t i = 0;
if (d == NULL || d->amount <= 0 || d->sides <= 0) {
return false;
}
len = d->amount;
r = calloc(len, sizeof(dice_result_t));
if (r == NULL) {
return NULL;
}
for (i = 0; i < d->amount; i++) {
r[i].result = arc4random_uniform(d->sides) + 1;
}
*reslen = len;
*res = r;
return true;
}
2018-02-14 19:31:52 +01:00
void dice_update_consumned(dice_t d, int offset)
{
d->consumed += offset;
}