Files
Upsilon/apps/code/script_store.h
Léa Saviot 4f74b6d849 [code] The addScript button disappears when needed.
When there is already the maximal number of scripts or when the
ScriptStore accordion buffer is full.

Change-Id: I0d43d42626da7f060a2309c66f1806b35a29bf38
2017-11-17 14:05:23 +01:00

54 lines
1.6 KiB
C++

#ifndef CODE_SCRIPT_STORE_H
#define CODE_SCRIPT_STORE_H
#include "script.h"
#include "script_template.h"
#include <escher/accordion.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