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 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
|
////////////////////////////////////////////////////////////////////////////////////////
//
// 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_CPU_H
#error Do not include NstApu.h directly!
#endif
#include "NstSoundRenderer.hpp"
namespace Nes
{
namespace Core
{
namespace Sound
{
class Output;
}
namespace State
{
class Saver;
class Loader;
}
class Cpu;
class Apu
{
public:
explicit Apu(Cpu&);
void Reset(bool);
void PowerOff();
void ClearBuffers();
void BeginFrame(Sound::Output*);
void EndFrame();
void WriteFrameCtrl(uint);
Cycle Clock();
void ClockDMA(uint=0);
Result SetSampleRate(dword);
Result SetSpeed(uint);
Result SetVolume(uint,uint);
uint GetVolume(uint) const;
uint GetCtrl();
void Mute(bool);
void SetAutoTranspose(bool);
void SetGenie(bool);
void EnableStereo(bool);
void SaveState(State::Saver&,dword) const;
void LoadState(State::Loader&);
class NST_NO_VTABLE Channel
{
Apu& apu;
protected:
explicit Channel(Apu&);
~Channel();
void Update() const;
void Connect(bool);
dword GetSampleRate() const;
uint GetVolume(uint) const;
void GetOscillatorClock(Cycle&,uint&) const;
Cycle GetCpuClockBase() const;
uint GetCpuClockDivider() const;
Cycle GetCpuClock(uint=1) const;
bool IsMuted() const;
bool IsGenie() const;
public:
typedef Sound::Sample Sample;
enum
{
APU_SQUARE1,
APU_SQUARE2,
APU_TRIANGLE,
APU_NOISE,
APU_DPCM,
EXT_FDS,
EXT_MMC5,
EXT_VRC6,
EXT_VRC7,
EXT_N163,
EXT_S5B
};
enum
{
OUTPUT_MIN = -32767,
OUTPUT_MAX = +32767,
OUTPUT_MUL = 256,
OUTPUT_DECAY = OUTPUT_MUL / 4 - 1,
DEFAULT_VOLUME = 85
};
virtual void Reset() = 0;
virtual Sample GetSample() = 0;
virtual Cycle Clock(Cycle,Cycle,Cycle);
virtual bool UpdateSettings() = 0;
class LengthCounter
{
public:
LengthCounter();
void Reset();
void LoadState(State::Loader&);
void SaveState(State::Saver&,dword) const;
private:
uint enabled;
uint count;
static const byte lut[32];
public:
uint Disable(bool disable)
{
enabled = disable - 1U;
count &= enabled;
return enabled;
}
void Write(uint data)
{
NST_ASSERT( (data >> 3) < sizeof(array(lut)) );
count = lut[data >> 3] & enabled;
}
void Write(uint data,bool frameCounterDelta)
{
NST_VERIFY_MSG( frameCounterDelta, "APU $40xx/framecounter conflict" );
if (frameCounterDelta || !count)
Write( data );
}
uint GetCount() const
{
return count;
}
bool Clock()
{
return count && !--count;
}
};
class Envelope
{
public:
Envelope();
void Reset();
void SetOutputVolume(uint);
void LoadState(State::Loader&);
void SaveState(State::Saver&,dword) const;
void Clock();
void Write(uint);
private:
void UpdateOutput();
dword output;
uint outputVolume;
byte regs[2];
byte count;
bool reset;
public:
bool Looping() const
{
return regs[1] & 0x20U;
}
dword Volume() const
{
return output;
}
void ResetClock()
{
reset = true;
}
};
class DcBlocker
{
public:
DcBlocker();
void Reset();
Sample Apply(Sample);
void LoadState(State::Loader&);
void SaveState(State::Saver&,dword) const;
private:
enum
{
POLE = 3 // ~0.9999
};
idword prev;
idword next;
idword acc;
};
};
private:
typedef void (NST_FASTCALL Apu::*Updater)(Cycle);
inline void Update(Cycle);
void Update();
void UpdateLatency();
bool UpdateDelta();
void Reset(bool,bool);
void CalculateOscillatorClock(Cycle&,uint&) const;
void Resync(dword);
NST_NO_INLINE void ClearBuffers(bool);
enum
{
MAX_CHANNELS = 11,
STATUS_NO_FRAME_IRQ = 0x40,
STATUS_SEQUENCE_5_STEP = 0x80,
STATUS_FRAME_IRQ_ENABLE = 0,
STATUS_BITS = STATUS_NO_FRAME_IRQ|STATUS_SEQUENCE_5_STEP,
NLN_VOL = 192,
NLN_SQ_F = 900,
NLN_SQ_0 = 9552UL * Channel::OUTPUT_MUL * NLN_VOL * (NLN_SQ_F/100),
NLN_SQ_1 = 8128UL * Channel::OUTPUT_MUL * NLN_SQ_F,
NLN_SQ_2 = NLN_SQ_F * 100UL,
NLN_TND_F = 500,
NLN_TND_0 = 16367UL * Channel::OUTPUT_MUL * NLN_VOL * (NLN_TND_F/100),
NLN_TND_1 = 24329UL * Channel::OUTPUT_MUL * NLN_TND_F,
NLN_TND_2 = NLN_TND_F * 100UL
};
NES_DECL_POKE( 4000 );
NES_DECL_POKE( 4001 );
NES_DECL_POKE( 4002 );
NES_DECL_POKE( 4003 );
NES_DECL_POKE( 4004 );
NES_DECL_POKE( 4005 );
NES_DECL_POKE( 4006 );
NES_DECL_POKE( 4007 );
NES_DECL_POKE( 4008 );
NES_DECL_POKE( 400A );
NES_DECL_POKE( 400B );
NES_DECL_POKE( 400C );
NES_DECL_POKE( 400E );
NES_DECL_POKE( 400F );
NES_DECL_POKE( 4010 );
NES_DECL_POKE( 4011 );
NES_DECL_POKE( 4012 );
NES_DECL_POKE( 4013 );
NES_DECL_POKE( 4015 );
NES_DECL_PEEK( 4015 );
NES_DECL_PEEK( 40xx );
NST_NO_INLINE Channel::Sample GetSample();
void NST_FASTCALL SyncOn (Cycle);
void NST_FASTCALL SyncOnExt (Cycle);
void NST_FASTCALL SyncOff (Cycle);
NST_NO_INLINE void ClockFrameIRQ(Cycle);
NST_NO_INLINE void ClockFrameCounter();
NST_NO_INLINE void ClockDmc(Cycle,uint=0);
NST_NO_INLINE void ClockOscillators(bool);
template<typename T,bool STEREO>
void FlushSound();
void UpdateSettings();
void UpdateVolumes();
struct Cycles
{
Cycles();
void Update(dword,uint,const Cpu&);
void Reset(bool,CpuModel);
uint fixed;
Cycle rate;
Cycle rateCounter;
Cycle frameCounter;
Cycle extCounter;
word frameDivider;
word frameIrqRepeat;
Cycle frameIrqClock;
Cycle dmcClock;
static const dword frameClocks[3][4];
static const dword oscillatorClocks[3][2][4];
};
class Synchronizer
{
uint sync;
uint duty;
dword streamed;
dword rate;
public:
Synchronizer();
void Reset(uint,dword,const Cpu&);
void Resync(uint,const Cpu&);
NST_SINGLE_CALL dword Clock(dword,dword,const Cpu&);
};
class Oscillator
{
enum
{
RESET_CYCLES = 2048
};
protected:
Oscillator();
void Reset();
void UpdateSettings(dword,uint);
ibool active;
idword timer;
Cycle rate;
Cycle frequency;
dword amp;
uint fixed;
public:
inline void ClearAmp();
};
class Square : public Oscillator
{
public:
void Reset();
void UpdateSettings(uint,dword,uint);
void LoadState(State::Loader&);
void SaveState(State::Saver&,dword) const;
NST_SINGLE_CALL void WriteReg0(uint);
NST_SINGLE_CALL void WriteReg1(uint);
NST_SINGLE_CALL void WriteReg2(uint);
NST_SINGLE_CALL void WriteReg3(uint,Cycle);
NST_SINGLE_CALL void Disable(bool);
dword GetSample();
NST_SINGLE_CALL void ClockEnvelope();
NST_SINGLE_CALL void ClockSweep(uint);
inline uint GetLengthCounter() const;
private:
inline bool CanOutput() const;
void UpdateFrequency();
enum
{
MIN_FRQ = 0x008,
MAX_FRQ = 0x7FF,
REG0_DUTY_SHIFT = 6,
REG1_SWEEP_SHIFT = 0x07,
REG1_SWEEP_DECREASE = 0x08,
REG1_SWEEP_RATE = 0x70,
REG1_SWEEP_RATE_SHIFT = 4,
REG1_SWEEP_ENABLED = 0x80,
REG3_WAVELENGTH_LOW = 0x00FF,
REG3_WAVELENGTH_HIGH = 0x0700
};
uint step;
uint duty;
Channel::Envelope envelope;
Channel::LengthCounter lengthCounter;
bool validFrequency;
bool sweepReload;
byte sweepCount;
byte sweepRate;
uint sweepIncrease;
word sweepShift;
word waveLength;
};
class Triangle : public Oscillator
{
public:
Triangle();
void Reset();
void UpdateSettings(uint,dword,uint);
void LoadState(State::Loader&);
void SaveState(State::Saver&,dword) const;
NST_SINGLE_CALL void WriteReg0(uint);
NST_SINGLE_CALL void WriteReg2(uint);
NST_SINGLE_CALL void WriteReg3(uint,Cycle);
NST_SINGLE_CALL void Disable(bool);
NST_SINGLE_CALL dword GetSample();
NST_SINGLE_CALL void ClockLinearCounter();
NST_SINGLE_CALL void ClockLengthCounter();
inline uint GetLengthCounter() const;
private:
inline bool CanOutput() const;
enum
{
MIN_FRQ = 2 + 1,
STEP_CHECK = 0x1F,
REG0_LINEAR_COUNTER_LOAD = 0x7F,
REG0_LINEAR_COUNTER_START = 0x80,
REG2_WAVE_LENGTH_LOW = 0x00FF,
REG3_WAVE_LENGTH_HIGH = 0x0700
};
enum Status
{
STATUS_COUNTING,
STATUS_RELOAD
};
uint step;
uint outputVolume;
Status status;
word waveLength;
byte linearCtrl;
byte linearCounter;
Channel::LengthCounter lengthCounter;
};
class Noise : public Oscillator
{
public:
void Reset(CpuModel);
void UpdateSettings(uint,dword,uint);
void LoadState(State::Loader&,CpuModel);
void SaveState(State::Saver&,dword) const;
NST_SINGLE_CALL void WriteReg0(uint);
NST_SINGLE_CALL void WriteReg2(uint,CpuModel);
NST_SINGLE_CALL void WriteReg3(uint,Cycle);
NST_SINGLE_CALL void Disable(bool);
NST_SINGLE_CALL dword GetSample();
NST_SINGLE_CALL void ClockEnvelope();
NST_SINGLE_CALL void ClockLengthCounter();
inline uint GetLengthCounter() const;
private:
inline bool CanOutput() const;
uint GetFrequencyIndex() const;
enum
{
REG2_FREQUENCY = 0x0F,
REG2_93BIT_MODE = 0x80
};
uint bits;
uint shifter;
Channel::Envelope envelope;
Channel::LengthCounter lengthCounter;
static const word lut[3][16];
};
class Dmc
{
public:
Dmc();
bool overclockingIsSafe;
void Reset(CpuModel);
void UpdateSettings(uint);
void LoadState(State::Loader&,const Cpu&,CpuModel,Cycle&);
void SaveState(State::Saver&,dword,const Cpu&,Cycle) const;
NST_SINGLE_CALL bool WriteReg0(uint,CpuModel);
NST_SINGLE_CALL void WriteReg1(uint);
NST_SINGLE_CALL void WriteReg2(uint);
NST_SINGLE_CALL void WriteReg3(uint);
NST_SINGLE_CALL void Disable(bool,Cpu&);
NST_SINGLE_CALL dword GetSample();
NST_SINGLE_CALL bool ClockDAC();
NST_SINGLE_CALL void Update();
NST_SINGLE_CALL void ClockDMA(Cpu&,Cycle&,uint=0);
inline void ClearAmp();
inline uint GetLengthCounter() const;
static Cycle GetResetFrequency(CpuModel);
private:
void DoDMA(Cpu&,Cycle,uint=0);
enum
{
REG0_FREQUENCY = 0x0F,
REG0_LOOP = 0x40,
REG0_IRQ_ENABLE = 0x80,
INP_STEP = 8
};
uint curSample;
uint linSample;
uint outputVolume;
Cycle frequency;
struct
{
uint ctrl;
word lengthCounter;
word address;
} regs;
struct
{
byte shifter;
byte dac;
byte buffer;
bool active;
} out;
struct
{
word lengthCounter;
word address;
word buffered;
word buffer;
} dma;
static const word lut[3][16];
};
struct Settings
{
Settings();
dword rate;
byte speed;
bool muted;
bool transpose;
bool genie;
bool stereo;
bool audible;
byte volumes[MAX_CHANNELS];
};
uint ctrl;
Updater updater;
Cpu& cpu;
Cycles cycles;
Synchronizer synchronizer;
Square square[2];
Triangle triangle;
Noise noise;
Dmc dmc;
Channel* extChannel;
Channel::DcBlocker dcBlocker;
Sound::Output* stream;
Sound::Buffer buffer;
Settings settings;
public:
void SetOverclockSafety(bool safe)
{
dmc.overclockingIsSafe = safe;
}
bool GetOverclockSafety()
{
return dmc.overclockingIsSafe;
}
dword GetSampleRate() const
{
return settings.rate;
}
uint GetSpeed() const
{
return settings.speed;
}
bool IsAutoTransposing() const
{
return settings.transpose;
}
bool IsGenie() const
{
return settings.genie;
}
bool InStereo() const
{
return settings.stereo;
}
bool IsMuted() const
{
return settings.muted;
}
bool IsAudible() const
{
return settings.audible && !settings.muted;
}
};
}
}
|