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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
|
////////////////////////////////////////////////////////////////////////////////////////
//
// Nestopia - NES/Famicom emulator written in C++
//
// Copyright (C) 2003-2008 Martin Freij
//
// This file is part of Nestopia.
//
// Nestopia 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.
//
// Nestopia 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 Nestopia; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
////////////////////////////////////////////////////////////////////////////////////////
#ifndef NST_API_FDS_H
#define NST_API_FDS_H
#include <iosfwd>
#include <vector>
#include "NstApi.hpp"
#ifdef NST_PRAGMA_ONCE
#pragma once
#endif
#if NST_ICC >= 810
#pragma warning( push )
#pragma warning( disable : 304 444 )
#elif NST_MSVC >= 1200
#pragma warning( push )
#pragma warning( disable : 4512 )
#endif
namespace Nes
{
namespace Api
{
/**
* Famicom Disk System interface.
*/
class Fds : public Base
{
struct DiskCaller;
struct DriveCaller;
public:
/**
* Interface constructor.
*
* @param instance emulator instance
*/
template<typename T>
Fds(T& instance)
: Base(instance) {}
enum
{
NO_DISK = -1
};
/**
* Checks if a disk is inserted.
*
* @return true if a disk is inserted
*/
bool IsAnyDiskInserted() const throw();
/**
* Inserts a disk.
*
* @param disk disk number
* @param side disk side, 0(A) or 1(B)
* @return result code
*/
Result InsertDisk(uint disk,uint side) throw();
/**
* Changes disk side.
*
* @return result code
*/
Result ChangeSide() throw();
/**
* Ejects disk.
*
* @return result code
*/
Result EjectDisk() throw();
/**
* Sets BIOS.
*
* @param input stream to ROM binary or iNES file, set to NULL to remove current BIOS
* @result result code
*/
Result SetBIOS(std::istream* stream) throw();
/**
* Stores the current BIOS in an output stream.
*
* @param output stream
* @return result code
*/
Result GetBIOS(std::ostream& stream) const throw();
/**
* Checks if a BIOS has been loaded.
*
* @return true if a BIOS has been loaded.
*/
bool HasBIOS() const throw();
/**
* Returns the total number of disks.
*
* @return number
*/
uint GetNumDisks() const throw();
/**
* Returns the total number of disks and their sides.
*
* @return number
*/
uint GetNumSides() const throw();
/**
* Returns the current disk inserted.
*
* @return current disk or NO_DISK if none
*/
int GetCurrentDisk() const throw();
/**
* Returns the current disk side.
*
* @return 0(A), 1(B) or NO_DISK if no disk inserted
*/
int GetCurrentDiskSide() const throw();
/**
* Checks if the current disk can change side.
*
* @return true if disk can change side
*/
bool CanChangeDiskSide() const throw();
/**
* Checks if the current loaded image comes with a file header.
*
* @return true if it comes with a file header
*/
bool HasHeader() const throw();
/**
* Disk data context.
*/
struct DiskData
{
DiskData() throw();
~DiskData() throw();
/**
* Data content.
*/
typedef std::vector<uchar> Data;
/**
* File on disk.
*/
struct File
{
File() throw();
/**
* File type.
*/
enum Type
{
/**
* Unknown file.
*/
TYPE_UNKNOWN,
/**
* PRG data file.
*/
TYPE_PRG,
/**
* CHR data file.
*/
TYPE_CHR,
/**
* Name-table data file.
*/
TYPE_NMT
};
/**
* File ID.
*/
uchar id;
/**
* File index.
*/
uchar index;
/**
* File address.
*/
ushort address;
/**
* File type.
*/
Type type;
/**
* File content.
*/
Data data;
/**
* File name.
*/
char name[12];
};
/**
* Files.
*/
typedef std::vector<File> Files;
/**
* Files.
*/
Files files;
/**
* Raw binary content.
*/
Data raw;
};
/**
* Returns disk information.
*
* @param side disks and sides index
* @param data object to be filled
* @return result code
*/
Result GetDiskData(uint side,DiskData& data) const throw();
/**
* Disk event.
*/
enum Event
{
/**
* Disk has been inserted.
*/
DISK_INSERT,
/**
* Disk has been ejected.
*/
DISK_EJECT,
/**
* Disk is in a non-standard format.
*/
DISK_NONSTANDARD
};
/**
* Drive event.
*/
enum Motor
{
/**
* Drive motor is OFF.
*/
MOTOR_OFF,
/**
* Drive motor is ON reading.
*/
MOTOR_READ,
/**
* Drive motor is ON writing.
*/
MOTOR_WRITE
};
enum
{
NUM_DISK_CALLBACKS = 3,
NUM_DRIVE_CALLBACKS = 3
};
/**
* Disk event callback prototype.
*
* @param userData optional user data
* @param event type of event
* @param disk disk number
* @param disk side, 0(A) or 1(B)
*/
typedef void (NST_CALLBACK *DiskCallback)(UserData userData,Event event,uint disk,uint side);
/**
* Drive event callback prototype.
*
* @param userData optional user data
* @param event type of event
*/
typedef void (NST_CALLBACK *DriveCallback)(UserData userData,Motor event);
/**
* Disk event callback manager.
*
* Static object used for adding the user defined callback.
*/
static DiskCaller diskCallback;
/**
* Drive event callback manager.
*
* Static object used for adding the user defined callback.
*/
static DriveCaller driveCallback;
};
/**
* Disk event callback invoker.
*
* Used internally by the core.
*/
struct Fds::DiskCaller : Core::UserCallback<Fds::DiskCallback>
{
void operator () (Event event,uint disk,uint side) const
{
if (function)
function( userdata, event, disk, side );
}
};
/**
* Drive event callback invoker.
*
* Used internally by the core.
*/
struct Fds::DriveCaller : Core::UserCallback<Fds::DriveCallback>
{
void operator () (Motor motor) const
{
if (function)
function( userdata, motor );
}
};
}
}
#if NST_MSVC >= 1200 || NST_ICC >= 810
#pragma warning( pop )
#endif
#endif
|