libsidplayfp 1.8.8
PSID.h
1/*
2 * This file is part of libsidplayfp, a SID player engine.
3 *
4 * Copyright 2012-2015 Leandro Nini <drfiemost@users.sourceforge.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 */
20
21#ifndef PSID_H
22#define PSID_H
23
24#include <stdint.h>
25
26#include "SidTuneBase.h"
27
28#include "sidplayfp/SidTune.h"
29
30struct psidHeader;
31
32class PSID : public SidTuneBase
33{
34private:
35 char m_md5[SidTune::MD5_LENGTH+1];
36
37private:
43 void tryLoad(const psidHeader &pHeader);
44
50 static void readHeader(const buffer_t &dataBuf, psidHeader &hdr);
51
52protected:
53 PSID() {}
54
55public:
56 virtual ~PSID() {}
57
62 static SidTuneBase* load(buffer_t& dataBuf);
63
64 virtual const char *createMD5(char *md5);
65
66private:
67 // prevent copying
68 PSID(const PSID&);
69 PSID& operator=(PSID&);
70};
71
72#endif // PSID_H
Definition: PSID.h:33
static SidTuneBase * load(buffer_t &dataBuf)
Definition: PSID.cpp:144
Definition: SidTuneBase.h:56
Definition: PSID.cpp:46