ref: 46b48510a8b3679688e12da96b3d5d4667336663
parent: 0faf06224f647c67a5252ce1df68bbfe1e3b6204
author: Clownacy <Clownacy@users.noreply.github.com>
date: Sun Sep 1 16:39:26 EDT 2019
Remove File.cpp
--- a/msvc2003/CSE2.vcproj
+++ b/msvc2003/CSE2.vcproj
@@ -290,9 +290,6 @@
RelativePath="..\src\Fade.cpp">
</File>
<File
- RelativePath="..\src\File.cpp">
- </File>
- <File
RelativePath="..\src\Flags.cpp">
</File>
<File
@@ -506,9 +503,6 @@
</File>
<File
RelativePath="..\src\Fade.h">
- </File>
- <File
- RelativePath="..\src\File.h">
</File>
<File
RelativePath="..\src\Flags.h">
--- a/src/File.cpp
+++ /dev/null
@@ -1,96 +1,0 @@
-#include "File.h"
-
-#include <stddef.h>
-#include <stdio.h>
-#include <stdlib.h>
-
-long LoadFileToMemory(const char *file_path, unsigned char **file_buffer)
-{
- long returned_size = -1;
-
- FILE *file = fopen(file_path, "rb");
-
- if (file != NULL)
- {
- if (!fseek(file, 0, SEEK_END))
- {
- const long file_size = ftell(file);
-
- if (file_size >= 0)
- {
- rewind(file);
- *file_buffer = (unsigned char*)malloc(file_size);
-
- if (*file_buffer != NULL)
- {
- if (fread(*file_buffer, file_size, 1, file) == 1)
- returned_size = file_size;
- }
- }
- }
-
- fclose(file);
- }
-
- return returned_size;
-}
-
-unsigned short File_ReadBE16(FILE *stream)
-{
- unsigned char bytes[2];
-
- fread(bytes, 2, 1, stream);
-
- return (bytes[0] << 8) | bytes[1];
-}
-
-unsigned long File_ReadBE32(FILE *stream)
-{
- unsigned char bytes[4];
-
- fread(bytes, 4, 1, stream);
-
- return (bytes[0] << 24) | (bytes[1] << 16) | (bytes[2] << 8) | bytes[3];
-}
-
-unsigned short File_ReadLE16(FILE *stream)
-{
- unsigned char bytes[2];
-
- fread(bytes, 2, 1, stream);
-
- return (bytes[1] << 8) | bytes[0];
-}
-
-unsigned long File_ReadLE32(FILE *stream)
-{
- unsigned char bytes[4];
-
- fread(bytes, 4, 1, stream);
-
- return (bytes[3] << 24) | (bytes[2] << 16) | (bytes[1] << 8) | bytes[0];
-}
-
-void File_WriteBE16(unsigned short value, FILE *stream)
-{
- for (unsigned int i = 2; i-- != 0;)
- fputc(value >> (8 * i), stream);
-}
-
-void File_WriteBE32(unsigned long value, FILE *stream)
-{
- for (unsigned int i = 4; i-- != 0;)
- fputc(value >> (8 * i), stream);
-}
-
-void File_WriteLE16(unsigned short value, FILE *stream)
-{
- for (unsigned int i = 0; i < 2; ++i)
- fputc(value >> (8 * i), stream);
-}
-
-void File_WriteLE32(unsigned long value, FILE *stream)
-{
- for (unsigned int i = 0; i < 4; ++i)
- fputc(value >> (8 * i), stream);
-}
--- a/src/File.h
+++ /dev/null
@@ -1,15 +1,0 @@
-#pragma once
-
-#include <stdio.h>
-
-long LoadFileToMemory(const char *file_path, unsigned char **file_buffer);
-
-unsigned short File_ReadBE16(FILE *stream);
-unsigned long File_ReadBE32(FILE *stream);
-unsigned short File_ReadLE16(FILE *stream);
-unsigned long File_ReadLE32(FILE *stream);
-
-void File_WriteBE16(unsigned short value, FILE *stream);
-void File_WriteBE32(unsigned long value, FILE *stream);
-void File_WriteLE16(unsigned short value, FILE *stream);
-void File_WriteLE32(unsigned long value, FILE *stream);