Inherits IAddonInstance.
Public Member Functions | |
| std::string | AddonPath () const |
| Used to get the full path where the add-on is installed. | |
| CInstanceShaderPreset () | |
| Shader preset class constructor. | |
| virtual void | PresetFileFree (preset_file file) |
| Free a preset file | |
| virtual preset_file | PresetFileNew (const char *path) |
| Loads a preset file | |
| virtual void | ShaderPresetFree (video_shader &shader) |
| Free all state related to shader preset. | |
| virtual bool | ShaderPresetRead (preset_file file, video_shader &shader) |
| Loads preset file and all associated state (passes, textures, imports, etc) | |
| virtual bool | ShaderPresetResolveParameters (preset_file file, video_shader &shader) |
| Resolve all shader parameters belonging to the shader preset. | |
| virtual bool | ShaderPresetWrite (preset_file file, const video_shader &shader) |
| Save preset and all associated state (passes, textures, imports, etc) to disk. | |
| std::string | UserPath () const |
| Used to get the full path to the add-on's user profile. | |
| ~CInstanceShaderPreset () override=default | |
| Destructor. | |
Public Member Functions inherited from IAddonInstance | |
| bool | CheckInstanceSettingBoolean (const std::string &settingName, bool &settingValue) |
| template<typename enumType > | |
| bool | CheckInstanceSettingEnum (const std::string &settingName, enumType &settingValue) |
| bool | CheckInstanceSettingFloat (const std::string &settingName, float &settingValue) |
| bool | CheckInstanceSettingInt (const std::string &settingName, int &settingValue) |
| bool | CheckInstanceSettingString (const std::string &settingName, std::string &settingValue) |
| virtual ADDON_STATUS | CreateInstance (const kodi::addon::IInstanceInfo &instance, KODI_ADDON_INSTANCE_HDL &hdl) |
| std::string | GetInstanceAPIVersion () const |
| bool | GetInstanceSettingBoolean (const std::string &settingName, bool defaultValue=false) |
| template<typename enumType > | |
| enumType | GetInstanceSettingEnum (const std::string &settingName, enumType defaultValue=static_cast< enumType >(0)) |
| float | GetInstanceSettingFloat (const std::string &settingName, float defaultValue=0.0f) |
| int | GetInstanceSettingInt (const std::string &settingName, int defaultValue=0) |
| std::string | GetInstanceSettingString (const std::string &settingName, const std::string &defaultValue="") |
| std::string | GetInstanceUserPath (const std::string &append="") |
| IAddonInstance (const kodi::addon::IInstanceInfo &instance) | |
| bool | IsInstanceSettingUsingDefault (const std::string &settingName) |
| virtual ADDON_STATUS | SetInstanceSetting (const std::string &settingName, const kodi::addon::CSettingValue &settingValue) |
| void | SetInstanceSettingBoolean (const std::string &settingName, bool settingValue) |
| template<typename enumType > | |
| void | SetInstanceSettingEnum (const std::string &settingName, enumType settingValue) |
| void | SetInstanceSettingFloat (const std::string &settingName, float settingValue) |
| void | SetInstanceSettingInt (const std::string &settingName, int settingValue) |
| void | SetInstanceSettingString (const std::string &settingName, const std::string &settingValue) |