Both sides previous revisionPrevious revisionNext revision | Previous revision |
falcon4:file_formats:rsc_idx_fileformat [2009/02/07 00:54] – lightning | falcon4:file_formats:rsc_idx_fileformat [2024/07/31 08:52] (current) – links added. snakeman |
---|
====== IDX/RSC file pairs====== | ====== Falcon 4 IDX/RSC file pairs====== |
| |
| [[https://www.pmctactical.org/forum/viewforum.php?f=47|Falcon 4.0 Forum]], [[:falcon4|Falcon 4 Home]], [[falcon4:campaign|Falcon 4 Campaign]], [[falcon4:cockpits|Falcon 4 Cockpits]], [[falcon4:database|Falcon 4 Database]], [[falcon4:file_formats|Falcon 4 File Formats]], [[falcon4:srtm|Falcon 4 SRTM Terrain]], [[falcon4:terrain|Falcon 4 Terrain]], [[falcon4:textures|Falcon 4 Textures]], [[falcon4:tools|Falcon 4 Tools]] |
.RSC files in Falcon are "resource bundles". A "resource bundle" is a type of file that can contain one or more (embedded) binary files, of varying types. For example, they can contain images, sounds, and/or miscellaneous binary content. A single .RSC file can (and often does) contain multiple resources, potentially of mixed type (i.e. a resource bundle file could contain several images, several sounds, and several binary files, all at once). | .RSC files in Falcon are "resource bundles". A "resource bundle" is a type of file that can contain one or more (embedded) binary files, of varying types. For example, they can contain images, sounds, and/or miscellaneous binary content. A single .RSC file can (and often does) contain multiple resources, potentially of mixed type (i.e. a resource bundle file could contain several images, several sounds, and several binary files, all at once). |
| |
===== Example Code in C# ===== | ===== Example Code in C# ===== |
The following C# class (F4Resources.F4ResourceBundleReader) illustrates how to read a Falcon Resource Bundle (.RSC file + .IDX file) at a low level. It's not optimized for speed (i.e. it uses SetPixel for setting image colors and it uses Array.Copy for copying raw binary data instead of the faster native memory bit-to-block transfer techniques), but it is more illustrative, as a result. | The following C# class (F4Resources.F4ResourceBundleReader) illustrates how to read a Falcon Resource Bundle (.RSC file + .IDX file) at a low level. It's not optimized for speed (i.e. it uses SetPixel for setting image colors and it uses Array.Copy for copying raw binary data instead of the faster native memory bit-to-block transfer techniques), but it is more illustrative, as a result. |
<code language="c#"> | <code cpp> |
using System; | using System; |
using System.Collections.Generic; | using System.Collections.Generic; |
| |
The next chunk of C# example code shows the above class being used in a Windows Forms application, and illustrates how one might use the class presented in the previous example. | The next chunk of C# example code shows the above class being used in a Windows Forms application, and illustrates how one might use the class presented in the previous example. |
<code language="c#"> | <code cpp> |
using System; | using System; |
using System.Drawing; | using System.Drawing; |
} | } |
</code> | </code> |
| |