melonDS/src/ARCodeFile.h

66 lines
1.3 KiB
C
Raw Permalink Normal View History

/*
2023-11-03 23:21:46 +00:00
Copyright 2016-2023 melonDS team
This file is part of melonDS.
melonDS 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 3 of the License, or (at your option)
any later version.
melonDS 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 melonDS. If not, see http://www.gnu.org/licenses/.
*/
2020-08-12 22:20:34 +00:00
#ifndef ARCODEFILE_H
#define ARCODEFILE_H
#include <string>
#include <list>
#include <vector>
#include "types.h"
namespace melonDS
{
2021-01-02 10:38:06 +00:00
struct ARCode
2020-08-12 22:20:34 +00:00
{
std::string Name;
2020-08-12 22:20:34 +00:00
bool Enabled;
std::vector<u32> Code;
2021-01-02 10:38:06 +00:00
};
2020-08-12 22:20:34 +00:00
typedef std::list<ARCode> ARCodeList;
2021-01-02 10:38:06 +00:00
struct ARCodeCat
2020-08-12 22:20:34 +00:00
{
std::string Name;
2020-08-12 22:20:34 +00:00
ARCodeList Codes;
2021-01-02 10:38:06 +00:00
};
2020-08-12 22:20:34 +00:00
typedef std::list<ARCodeCat> ARCodeCatList;
2020-08-12 22:20:34 +00:00
class ARCodeFile
{
public:
2023-04-28 15:05:34 +00:00
ARCodeFile(const std::string& filename);
2020-08-12 22:20:34 +00:00
~ARCodeFile();
bool Error;
bool Load();
2020-08-12 22:20:34 +00:00
bool Save();
ARCodeCatList Categories;
private:
std::string Filename;
};
}
2020-08-12 22:20:34 +00:00
#endif // ARCODEFILE_H