mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
54 lines
1.6 KiB
C++
54 lines
1.6 KiB
C++
#ifndef CODE_SCRIPT_STORE_H
|
|
#define CODE_SCRIPT_STORE_H
|
|
|
|
#include "accordion.h"
|
|
#include "script.h"
|
|
#include "script_template.h"
|
|
#include <python/port/port.h>
|
|
|
|
namespace Code {
|
|
|
|
class ScriptStore : public MicroPython::ScriptProvider {
|
|
public:
|
|
enum class EditableZone {
|
|
None,
|
|
Name,
|
|
Content
|
|
};
|
|
|
|
static constexpr char k_scriptExtension[] = ".py";
|
|
static constexpr char k_defaultScriptName[] = "script.py";
|
|
|
|
ScriptStore();
|
|
const Script scriptAtIndex(int index, EditableZone zone = EditableZone::None);
|
|
const Script scriptNamed(const char * name);
|
|
int numberOfScripts();
|
|
bool addNewScript();
|
|
bool renameScriptAtIndex(int index, const char * newName);
|
|
void switchAutoImportAtIndex(int index);
|
|
void deleteScriptAtIndex(int index);
|
|
void deleteAllScripts();
|
|
bool isFull();
|
|
|
|
/* MicroPython::ScriptProvider */
|
|
const char * contentOfScript(const char * name) override;
|
|
|
|
private:
|
|
static constexpr int k_fullFreeSpaceSizeLimit = 50;
|
|
// If m_accordion's free space has a size smaller than
|
|
// k_fullFreeSpaceSizeLimit, we consider the script store as full.
|
|
static constexpr size_t k_scriptDataSize = 4096;
|
|
bool addScriptFromTemplate(const ScriptTemplate * scriptTemplate);
|
|
bool copyStaticScriptOnFreeSpace(const ScriptTemplate * scriptTemplate);
|
|
int accordionIndexOfScriptAtIndex(int index) const;
|
|
int accordionIndexOfMarkersOfScriptAtIndex(int index) const;
|
|
int accordionIndexOfNameOfScriptAtIndex(int index) const;
|
|
int accordionIndexOfContentOfScriptAtIndex(int index) const;
|
|
char m_scriptData[k_scriptDataSize];
|
|
Accordion m_accordion;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|