| rawToSysConfig {AmigaFFH} | R Documentation |
Coerce raw data into a SysConfig class object
Description
SysConfig objects are comprehensive representations of binary Amiga
system-configuration files. Use this function to convert raw data from
such a file to a SysConfig object.
Usage
rawToSysConfig(x)
Arguments
x |
A vector of |
Details
The Amiga used the system-configuration file to store certain system preferences
in a binary file. With this function such raw data can be converted into
a more comprehensive SysConfig object. Use as.raw()
to achieve the inverse.
Value
Returns a SysConfig class object based on x.
Author(s)
Pepijn de Vries
See Also
Other SysConfig.operations:
SysConfig,
read.SysConfig(),
simpleSysConfig(),
write.SysConfig()
Other raw.operations:
as.AmigaBasic(),
as.raw.AmigaBasic(),
colourToAmigaRaw(),
packBitmap(),
rawToAmigaBasicBMAP(),
rawToAmigaBasicShape(),
rawToAmigaBasic(),
rawToAmigaBitmapFontSet(),
rawToAmigaBitmapFont(),
rawToAmigaIcon(),
rawToHWSprite(),
rawToIFFChunk(),
simpleAmigaIcon()
Examples
## Not run:
## get the system-configuration from the adfExplorer example disk:
sc <- adfExplorer::get.adf.file(adfExplorer::adf.example, "devs/system-configuration")
## This will get you the raw data from the file:
typeof(sc)
## Convert the raw data to a more comprehensive named list (and S3 SysConfig class):
sc <- rawToSysConfig(sc)
## End(Not run)