Tag
Hash :
b9a7554e
Author :
Thomas de Grivel
Date :
2023-12-18T16:53:25
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
/* c3
* Copyright 2022,2023 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
#include <assert.h>
#include <err.h>
#include "integer.h"
#include "tag.h"
#include "tag_type.h"
#include "f32.h"
#include "u32.h"
f32 * f32_init_cast (f32 *x, const s_tag *tag)
{
switch (tag->type) {
case TAG_BOOL:
*x = tag->data.bool ? 1.0f : 0.0f;
return x;
case TAG_CHARACTER:
*x = (f32) tag->data.character;
return x;
case TAG_F32:
*x = tag->data.f32;
return x;
case TAG_F64:
*x = (f32) tag->data.f64;
return x;
case TAG_INTEGER:
*x = integer_to_f32(&tag->data.integer);
return x;
case TAG_SW:
*x = (f32) tag->data.sw;
return x;
case TAG_S64:
*x = (f32) tag->data.s64;
return x;
case TAG_S32:
*x = (f32) tag->data.s32;
return x;
case TAG_S16:
*x = (f32) tag->data.s16;
return x;
case TAG_S8:
*x = (f32) tag->data.s8;
return x;
case TAG_U8:
*x = (f32) tag->data.u8;
return x;
case TAG_U16:
*x = (f32) tag->data.u16;
return x;
case TAG_U32:
*x = (f32) tag->data.u32;
return x;
case TAG_U64:
*x = (f32) tag->data.u64;
return x;
case TAG_UW:
*x = (f32) tag->data.uw;
return x;
default:
break;
}
warnx("f32_init_cast: cannot cast %s to f32",
tag_type_to_string(tag->type));
assert(! "f32_init_cast: cannot cast to f32");
return NULL;
}
f32 * f32_init_copy (f32 *x, const f32 *src)
{
assert(src);
assert(x);
*x = *src;
return x;
}
f32 * f32_random (f32 *x)
{
u32 i;
const u32 max = ((u32) 1 << 24) - 1;
u32_random(&i);
i &= max;
*x = (f32) i / max;
return x;
}