nuttx-apps/graphics/traveler/tools/libwld/wld_saveplanes.c

133 lines
4.6 KiB
C
Raw Normal View History

/****************************************************************************
* apps/graphics/traveler/tools/libwld/wld_saveplanes.c
* This file contains the logic which stores the world data into the specified
* file
*
* Copyright (C) 2016 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name NuttX nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
****************************************************************************/
/*************************************************************************
* Included files
*************************************************************************/
#include <stdio.h>
#include "trv_types.h"
#include "wld_plane.h"
/*************************************************************************
* Private Functions
*************************************************************************/
/*************************************************************************
* Name: wld_CountRectangles
* Description:
* This function counts the number of rectangles in one plane
************************************************************************/
2016-11-10 18:42:37 +01:00
static uint16_t wld_CountRectangles(rect_list_t *rect)
{
uint16_t count;
for (count = 0; (rect); count++, rect = rect->flink);
return count;
}
/*************************************************************************
* Name: wld_SaveWorldPlane
* Description:
* This function stores the world data for one plane
************************************************************************/
2016-11-10 18:42:37 +01:00
static uint8_t wld_SaveWorldPlane(FILE *fp, rect_list_t *rect)
{
/* For each rectangle in the list */
for (; (rect); rect = rect->flink)
{
/* Write the rectangle to the output file */
if (fwrite((char*)&rect->d, SIZEOF_RECTDATATYPE, 1, fp) != 1)
return PLANE_DATA_WRITE_ERROR;
}
return PLANE_SUCCESS;
}
/*************************************************************************
* Public Functions
*************************************************************************/
/*************************************************************************
2016-11-09 19:29:30 +01:00
* Name: wld_save_planes
* Description:
* This function stores the world data into the specified file
************************************************************************/
2016-11-09 19:29:30 +01:00
uint8_t wld_save_planes(const char *wldFile)
{
FILE *fp;
2016-11-10 18:42:37 +01:00
plane_file_header_t fileHeader;
uint8_t result;
/* Open the file which contains the description of the world */
fp = fopen(wldFile, "wb");
if (!fp) return PLANE_WRITE_OPEN_ERROR;
/* Create world file header */
fileHeader.numXRects = wld_CountRectangles(xPlane.head);
fileHeader.numYRects = wld_CountRectangles(yPlane.head);
fileHeader.numZRects = wld_CountRectangles(zPlane.head);
/* Write the file header to the output file */
if (fwrite((char*)&fileHeader, SIZEOF_PLANEFILEHEADERTYPE, 1, fp) != 1)
result = PLANE_HEADER_WRITE_ERROR;
/* Save the world, one plane at a time */
else
{
result = wld_SaveWorldPlane(fp, xPlane.head);
if (result == PLANE_SUCCESS)
result = wld_SaveWorldPlane(fp, yPlane.head);
if (result == PLANE_SUCCESS)
wld_SaveWorldPlane(fp, zPlane.head);
}
/* Close the file */
fclose(fp);
return result;
}