libsidplayfp 3.0.0
romCheck.h
1/*
2 * This file is part of libsidplayfp, a SID player engine.
3 *
4 * Copyright 2012-2013 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 ROMCHECK_H
22#define ROMCHECK_H
23
24#include <cstdint>
25#include <map>
26#include <string>
27#include <utility>
28
29#include "sidmd5.h"
30
31namespace libsidplayfp
32{
33
37class romCheck
38{
39private:
40 using md5map = std::map<std::string, const char*>;
41
42private:
47 md5map m_checksums;
48
52 const uint8_t* m_rom;
53
57 unsigned int m_size;
58
59private:
60 romCheck() = delete;
61
65 std::string checksum() const
66 {
67 sidmd5 md5;
68 md5.append(m_rom, m_size);
69
70 return md5.getDigest();
71 }
72
73protected:
80 romCheck(const uint8_t* rom, int size) :
81 m_rom(rom),
82 m_size(size) {}
83
84 void add(const char* md5, const char* desc)
85 {
86 m_checksums.insert(std::make_pair(md5, desc));
87 }
88
89public:
95 const char* info() const
96 {
97 md5map::const_iterator res = m_checksums.find(checksum());
98 return (res != m_checksums.end()) ? res->second : "Unknown Rom";
99 }
100};
101
105class kernalCheck : public romCheck
106{
107public:
108 kernalCheck(const uint8_t* kernal) :
109 romCheck(kernal, 0x2000)
110 {
111 add("1ae0ea224f2b291dafa2c20b990bb7d4", "C64 KERNAL first revision");
112 add("7360b296d64e18b88f6cf52289fd99a1", "C64 KERNAL second revision");
113 add("479553fd53346ec84054f0b1c6237397", "C64 KERNAL second revision (Japanese)");
114 add("39065497630802346bce17963f13c092", "C64 KERNAL third revision");
115 add("27e26dbb267c8ebf1cd47105a6ca71e7", "C64 KERNAL third revision (Swedish)");
116 add("27e26dbb267c8ebf1cd47105a6ca71e7", "C64 KERNAL third revision (Swedish C2G007)");
117 add("e4aa56240fe13d8ad8d7d1dc8fec2395", "C64 KERNAL third revision (Danish)");
118 add("174546cf655e874546af4eac5f5bf61b", "C64 KERNAL third revision (Turkish)");
119 add("187b8c713b51931e070872bd390b472a", "Commodore SX-64 KERNAL");
120 add("b7b1a42e11ff8efab4e49afc4faedeee", "Commodore SX-64 KERNAL (Swedish)");
121 add("3abc938cac3d622e1a7041c15b928707", "Cockroach Turbo-ROM");
122 add("631ea2ca0dcda414a90aeefeaf77fe45", "Cockroach Turbo-ROM (SX-64)");
123 add("a9de1832e9be1a8c60f4f979df585681", "Datel DOS-ROM 1.2");
124 add("da43563f218b46ece925f221ef1f4bc2", "Datel Mercury 3 (NTSC)");
125 add("b7dc8ed82170c81773d4f5dc8069a000", "Datel Turbo ROM II (PAL)");
126 add("6b309c76473dcf555c52c598c6a51011", "Dolphin DOS v1.0");
127 add("c3c93b9a46f116acbfe7ee147c338c60", "Dolphin DOS v2.0-1 AU");
128 add("2a441f4abd272d50f94b43c7ff3cc629", "Dolphin DOS v2.0-1");
129 add("c7a175217e67dcb425feca5fcf2a01cc", "Dolphin DOS v2.0-2");
130 add("7a9b1040cfbe769525bb9cdc28427be6", "Dolphin DOS v2.0-3");
131 add("fc8fb5ec89b34ae41c8dc20907447e06", "Dolphin DOS v3.0");
132 add("9a6e1c4b99c6f65323aa96940c7eb7f7", "ExOS v3 fertig");
133 add("3241a4fcf2ba28ba3fc79826bc023814", "ExOS v3");
134 add("cffd2616312801da56bcc6728f0e39ca", "ExOS v4");
135 add("e6e2bb24a0fa414182b0fd149bde689d", "TurboAccess");
136 add("c5c5990f0826fcbd372901e761fab1b7", "TurboTrans v3.0-1");
137 add("042ffc11383849bdf0e600474cefaaaf", "TurboTrans v3.0-2");
138 add("9d62852013fc2c29c3111c765698664b", "Turbo-Process US");
139 add("f9c9838e8d6752dc6066a8c9e6c2e880", "Turbo-Process");
140 }
141};
142
146class basicCheck : public romCheck
147{
148public:
149 basicCheck(const uint8_t* basic) :
150 romCheck(basic, 0x2000)
151 {
152 add("57af4ae21d4b705c2991d98ed5c1f7b8", "C64 BASIC V2");
153 }
154};
155
159class chargenCheck : public romCheck
160{
161public:
162 chargenCheck(const uint8_t* chargen) :
163 romCheck(chargen, 0x1000)
164 {
165 add("12a4202f5331d45af846af6c58fba946", "C64 character generator");
166 add("cf32a93c0a693ed359a4f483ef6db53d", "C64 character generator (Japanese)");
167 add("7a1906cd3993ad17a0a0b2b68da9c114", "C64 character generator (Swedish)");
168 add("5973267e85b7b2b574e780874843180b", "C64 character generator (Swedish C2G007)");
169 add("81a1a8e6e334caeadd1b8468bb7728d3", "C64 character generator (Spanish)");
170 add("b3ad62b41b5f919fc56c3a40e636ec29", "C64 character generator (Danish)");
171 add("7d82b1f8f750665b5879c16b03c617d9", "C64 character generator (Turkish)");
172 }
173};
174
175}
176
177#endif // ROMCHECK_H
romCheck(const uint8_t *rom, int size)
Definition romCheck.h:80
const char * info() const
Definition romCheck.h:95
Definition sidmd5.h:36