2013-09-01 14:27:21 +00:00
|
|
|
/*
|
|
|
|
** serial-util.h
|
|
|
|
**
|
|
|
|
** This file is part of mkxp.
|
|
|
|
**
|
|
|
|
** Copyright (C) 2013 Jonas Kulla <Nyocurio@gmail.com>
|
|
|
|
**
|
|
|
|
** mkxp 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 2 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
|
|
|
** mkxp 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 mkxp. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SERIALUTIL_H
|
|
|
|
#define SERIALUTIL_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2013-10-14 10:57:30 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <SDL_endian.h>
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-10-14 10:57:30 +00:00
|
|
|
#if SDL_BYTEORDER != SDL_LIL_ENDIAN
|
|
|
|
#error "Non little endian systems not supported"
|
|
|
|
#endif
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
static inline int32_t
|
2014-11-20 13:45:54 +00:00
|
|
|
readInt32(const char **dataP)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-10-14 10:57:30 +00:00
|
|
|
int32_t result;
|
|
|
|
|
2014-11-20 13:45:54 +00:00
|
|
|
memcpy(&result, *dataP, 4);
|
|
|
|
*dataP += 4;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-10-14 10:57:30 +00:00
|
|
|
static inline double
|
2014-11-20 13:45:54 +00:00
|
|
|
readDouble(const char **dataP)
|
2013-10-14 10:57:30 +00:00
|
|
|
{
|
|
|
|
double result;
|
|
|
|
|
2014-11-20 13:45:54 +00:00
|
|
|
memcpy(&result, *dataP, 8);
|
|
|
|
*dataP += 8;
|
2013-10-14 10:57:30 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
static inline void
|
2014-11-20 13:45:54 +00:00
|
|
|
writeInt32(char **dataP, int32_t value)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2014-11-20 13:45:54 +00:00
|
|
|
memcpy(*dataP, &value, 4);
|
|
|
|
*dataP += 4;
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
2014-11-20 13:45:54 +00:00
|
|
|
writeDouble(char **dataP, double value)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2014-11-20 13:45:54 +00:00
|
|
|
memcpy(*dataP, &value, 8);
|
|
|
|
*dataP += 8;
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SERIALUTIL_H
|