mirror of
https://github.com/ZDoom/ZMusic.git
synced 2024-12-03 09:02:17 +00:00
72c23d98a3
## 1.5.0 2020-09-28 * Drum note length expanding is now supported in real-time mode (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Added support for OPNA chip with Neko Project II Kai YM2602 emulator usage (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Added VGM file dumper which allows to output OPN2 commands into VGM file. (A new MIDI to VGM tool is now created with basing on libOPNMIDI) * Fixed an incorrect work of CC-121 (See https://github.com/Wohlstand/libADLMIDI/issues/227 for details) * Internality has been refactored and improved
177 lines
4 KiB
C++
177 lines
4 KiB
C++
// $Id: file.cpp,v 1.6 1999/12/28 11:14:05 cisc Exp $
|
|
|
|
#include <stdio.h>
|
|
#include "fmgen_types.h"
|
|
#include "fmgen_headers.h"
|
|
#include "fmgen_file.h"
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// 構築/消滅
|
|
// ---------------------------------------------------------------------------
|
|
|
|
FileIO::FileIO()
|
|
{
|
|
flags = 0;
|
|
}
|
|
|
|
FileIO::FileIO(const char* filename, uint flg)
|
|
{
|
|
flags = 0;
|
|
Open(filename, flg);
|
|
}
|
|
|
|
FileIO::~FileIO()
|
|
{
|
|
Close();
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// ファイルを開く
|
|
// ---------------------------------------------------------------------------
|
|
|
|
bool FileIO::Open(const char* filename, uint flg)
|
|
{
|
|
char mode[5] = "rwb";
|
|
Close();
|
|
|
|
strncpy(path, filename, MAX_PATH);
|
|
|
|
if(flg & readonly)
|
|
strcpy(mode, "rb");
|
|
else {
|
|
if(flg & create)
|
|
strcpy(mode, "rwb+");
|
|
else
|
|
strcpy(mode, "rwb");
|
|
}
|
|
|
|
pfile = fopen(filename, mode);
|
|
|
|
flags = (flg & readonly) | (pfile == NULL ? 0 : open);
|
|
|
|
if (pfile == NULL)
|
|
error = file_not_found;
|
|
|
|
SetLogicalOrigin(0);
|
|
|
|
return !(pfile == NULL);
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// ファイルがない場合は作成
|
|
// ---------------------------------------------------------------------------
|
|
|
|
bool FileIO::CreateNew(const char* filename)
|
|
{
|
|
uint flg = create;
|
|
|
|
return Open(filename, flg);
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// ファイルを作り直す
|
|
// ---------------------------------------------------------------------------
|
|
|
|
bool FileIO::Reopen(uint flg)
|
|
{
|
|
if (!(flags & open)) return false;
|
|
if ((flags & readonly) && (flg & create)) return false;
|
|
|
|
if (flags & readonly) flg |= readonly;
|
|
|
|
return Open(path, flg);
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// ファイルを閉じる
|
|
// ---------------------------------------------------------------------------
|
|
|
|
void FileIO::Close()
|
|
{
|
|
if (GetFlags() & open)
|
|
{
|
|
fclose(pfile);
|
|
flags = 0;
|
|
}
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// ファイル殻の読み出し
|
|
// ---------------------------------------------------------------------------
|
|
|
|
int32 FileIO::Read(void* dest, int32 size)
|
|
{
|
|
if (!(GetFlags() & open))
|
|
return -1;
|
|
|
|
size_t readsize;
|
|
if (!(readsize = fread(dest, 1, static_cast<size_t>(size), pfile)))
|
|
return -1;
|
|
return size;
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// ファイルへの書き出し
|
|
// ---------------------------------------------------------------------------
|
|
|
|
int32 FileIO::Write(const void* dest, int32 size)
|
|
{
|
|
if (!(GetFlags() & open) || (GetFlags() & readonly))
|
|
return -1;
|
|
|
|
size_t writtensize;
|
|
if (!(writtensize = fwrite(dest, 1, static_cast<size_t>(size), pfile)))
|
|
return -1;
|
|
return static_cast<int32>(writtensize);
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// ファイルをシーク
|
|
// ---------------------------------------------------------------------------
|
|
|
|
bool FileIO::Seek(int32 pos, SeekMethod method)
|
|
{
|
|
if (!(GetFlags() & open))
|
|
return false;
|
|
|
|
int origin;
|
|
switch (method)
|
|
{
|
|
case begin:
|
|
origin = SEEK_SET;
|
|
break;
|
|
case current:
|
|
origin = SEEK_CUR;
|
|
break;
|
|
case end:
|
|
origin = SEEK_END;
|
|
break;
|
|
default:
|
|
return false;
|
|
}
|
|
|
|
return (fseek(pfile, pos, origin) != 0);
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// ファイルの位置を得る
|
|
// ---------------------------------------------------------------------------
|
|
|
|
int32 FileIO::Tellp()
|
|
{
|
|
if (!(GetFlags() & open))
|
|
return 0;
|
|
|
|
return static_cast<int32>(ftell(pfile));
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// 現在の位置をファイルの終端とする
|
|
// ---------------------------------------------------------------------------
|
|
|
|
bool FileIO::SetEndOfFile()
|
|
{
|
|
if (!(GetFlags() & open))
|
|
return false;
|
|
return Seek(0, end);
|
|
}
|