falcon4:file_formats:rsc_idx_fileformat
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
falcon4:file_formats:rsc_idx_fileformat [2009/02/07 00:47] – lightning | falcon4:file_formats:rsc_idx_fileformat [2024/07/31 08:52] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== IDX/RSC file pairs====== | + | ====== |
+ | |||
+ | [[https:// | ||
.RSC files in Falcon are " | .RSC files in Falcon are " | ||
Line 84: | Line 87: | ||
===== 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). | + | 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), |
- | < | + | < |
using System; | using System; | ||
using System.Collections.Generic; | using System.Collections.Generic; | ||
Line 291: | Line 294: | ||
} | } | ||
} | } | ||
- | public int Count | + | public int NumResources |
{ | { | ||
get | get | ||
Line 444: | Line 447: | ||
} | } | ||
</ | </ | ||
+ | |||
+ | The next chunk of C# example code shows the above class being used in a Windows Forms application, | ||
+ | <code cpp> | ||
+ | using System; | ||
+ | using System.Drawing; | ||
+ | using System.Windows.Forms; | ||
+ | using System.IO; | ||
+ | using System.Runtime.InteropServices; | ||
+ | |||
+ | namespace WindowsFormsApplication1 | ||
+ | { | ||
+ | public partial class Form1 : Form | ||
+ | { | ||
+ | public Form1() | ||
+ | { | ||
+ | InitializeComponent(); | ||
+ | } | ||
+ | |||
+ | private void button1_Click(object sender, EventArgs e) | ||
+ | { | ||
+ | string resourceBundleIndexPath = @" | ||
+ | F4Resources.F4ResourceBundleReader resourceBundleReader = new F4Resources.F4ResourceBundleReader(); | ||
+ | resourceBundleReader.Load(resourceBundleIndexPath); | ||
+ | for (int i = 0; i < resourceBundleReader.NumResources; | ||
+ | { | ||
+ | Application.DoEvents(); | ||
+ | F4Resources.F4ResourceType thisResourceType = resourceBundleReader.GetResourceType(i); | ||
+ | switch (thisResourceType) | ||
+ | { | ||
+ | case F4Resources.F4ResourceType.Unknown: | ||
+ | break; | ||
+ | case F4Resources.F4ResourceType.ImageResource: | ||
+ | Bitmap thisImage = resourceBundleReader.GetImageResource(i); | ||
+ | break; | ||
+ | case F4Resources.F4ResourceType.SoundResource: | ||
+ | byte[] thisSound = resourceBundleReader.GetSoundResource(i); | ||
+ | string tempFile = Path.GetTempFileName(); | ||
+ | try | ||
+ | { | ||
+ | using (FileStream fs = new FileStream(tempFile, | ||
+ | { | ||
+ | fs.Write(thisSound, | ||
+ | fs.Flush(); | ||
+ | fs.Close(); | ||
+ | } | ||
+ | PlaySound(tempFile, | ||
+ | } | ||
+ | finally | ||
+ | { | ||
+ | try | ||
+ | { | ||
+ | new FileInfo(tempFile).Delete(); | ||
+ | } | ||
+ | catch (IOException) | ||
+ | { | ||
+ | } | ||
+ | } | ||
+ | break; | ||
+ | case F4Resources.F4ResourceType.FlatResource: | ||
+ | byte[] thisFlatResource = resourceBundleReader.GetFlatResource(i); | ||
+ | break; | ||
+ | default: | ||
+ | break; | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | [Flags] | ||
+ | public enum SoundFlags : int | ||
+ | { | ||
+ | SND_SYNC = 0x0000, | ||
+ | SND_ASYNC = 0x0001, | ||
+ | SND_NODEFAULT = 0x0002, | ||
+ | SND_MEMORY = 0x0004, | ||
+ | SND_LOOP = 0x0008, | ||
+ | SND_NOSTOP = 0x0010, | ||
+ | SND_NOWAIT = 0x00002000, // don't wait if the driver is busy | ||
+ | SND_ALIAS = 0x00010000, // name is a registry alias | ||
+ | SND_ALIAS_ID = 0x00110000, // alias is a predefined ID | ||
+ | SND_FILENAME = 0x00020000, // name is file name | ||
+ | SND_RESOURCE = 0x00040004 | ||
+ | } | ||
+ | |||
+ | [System.Runtime.InteropServices.DllImport(" | ||
+ | private static extern bool PlaySound(string szSound, System.IntPtr hMod, SoundFlags flags); | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ |
falcon4/file_formats/rsc_idx_fileformat.1233967626.txt.gz · Last modified: 2009/02/07 00:47 by lightning