SYMBOL INDEX (3091 symbols across 224 files) FILE: DS_Map/BuildingEditor.Designer.cs class BuildingEditor (line 3) | partial class BuildingEditor method Dispose (line 14) | protected override void Dispose(bool disposing) method InitializeComponent (line 29) | private void InitializeComponent() FILE: DS_Map/BuildingEditor.cs class BuildingEditor (line 12) | public partial class BuildingEditor : Form { method BuildingEditor (line 39) | public BuildingEditor(RomInfo romInfo) { method CreateEmbeddedTexturesFile (line 61) | private void CreateEmbeddedTexturesFile(int modelID, bool interior) { method FillListBox (line 73) | private void FillListBox(bool interior) { method FillTexturesBox (line 84) | private void FillTexturesBox() { method LoadModelTextures (line 92) | private void LoadModelTextures(int fileID) { method RenderModel (line 105) | private void RenderModel() { method SetupRenderer (line 119) | private void SetupRenderer(float ang, float dist, float elev, float pe... method buildingOpenGLControl_MouseWheel (line 158) | private void buildingOpenGLControl_MouseWheel(object sender, MouseEven... method buildingEditorListBox_SelectedIndexChanged (line 169) | private void buildingEditorListBox_SelectedIndexChanged(object sender,... method exportButton_Click (line 183) | private void exportButton_Click(object sender, EventArgs e) { method importButton_Click (line 194) | private void importButton_Click(object sender, EventArgs e) { method interiorCheckBox_CheckedChanged (line 215) | private void interiorCheckBox_CheckedChanged(object sender, EventArgs ... method textureComboBox_SelectedIndexChanged (line 225) | private void textureComboBox_SelectedIndexChanged(object sender, Event... method buildingOpenGLControl_PreviewKeyDown (line 232) | private void buildingOpenGLControl_PreviewKeyDown(object sender, Previ... method bldExportDAEbutton_Click (line 277) | private void bldExportDAEbutton_Click(object sender, EventArgs e) { method buildingOpenGLControl_KeyUp (line 285) | private void buildingOpenGLControl_KeyUp(object sender, KeyEventArgs e) { FILE: DS_Map/DSUtils/ARM9.cs class ARM9 (line 7) | public static class ARM9 { class Reader (line 10) | public class Reader : DSUtils.EasyReader { method Reader (line 11) | public Reader(long pos = 0) : base(arm9Path, pos) { class Writer (line 15) | public class Writer : DSUtils.EasyWriter { method Writer (line 16) | public Writer(long pos = 0) : base(arm9Path, pos) { method EditSize (line 20) | public static void EditSize(int increment) { method Decompress (line 25) | public static bool Decompress(string path) { method Compress (line 33) | public static bool Compress(string path) { method CheckCompressionMark (line 44) | public static bool CheckCompressionMark() { method ReadBytes (line 48) | public static byte[] ReadBytes(uint startOffset, long numberOfBytes = ... method WriteBytes (line 51) | public static void WriteBytes(byte[] bytesToWrite, uint destOffset, in... method ReadByte (line 55) | public static byte ReadByte(uint startOffset) { method WriteByte (line 58) | public static void WriteByte(byte value, uint destOffset) { FILE: DS_Map/DSUtils/DSUtils.cs class DSUtils (line 18) | public static class DSUtils { class EasyReader (line 26) | public class EasyReader : BinaryReader { method EasyReader (line 27) | public EasyReader(string path, long pos = 0) : base(File.OpenRead(pa... class EasyWriter (line 31) | public class EasyWriter : BinaryWriter { method EasyWriter (line 32) | public EasyWriter(string path, long pos = 0, FileMode fmode = FileMo... method EditSize (line 35) | public void EditSize(int increment) { method WriteToFile (line 40) | public static void WriteToFile(string filepath, byte[] toOutput, uint ... method ReadFromFile (line 45) | public static byte[] ReadFromFile(string filepath, long startOffset = ... method ReadFromByteArray (line 58) | public static byte[] ReadFromByteArray(byte[] input, long readFrom = 0... method CreateDecompressProcess (line 76) | public static Process CreateDecompressProcess(string path) { method RepackROM (line 86) | public static void RepackROM(string ndsFileName) { method StringToByteArray (line 106) | public static byte[] StringToByteArray(String hex) { method HexStringToByteArray (line 114) | public static byte[] HexStringToByteArray(string hexString) { method TryUnpackNarcs (line 135) | public static void TryUnpackNarcs(List IDs) { method ForceUnpackNarcs (line 150) | public static void ForceUnpackNarcs(List IDs) { method GetPokePic (line 164) | public static Image GetPokePic(int species, int w, int h) { FILE: DS_Map/DSUtils/ModelUtils.cs class ModelUtils (line 7) | public static class ModelUtils { method ModelToDAE (line 9) | public static void ModelToDAE(string modelName, byte[] modelData, byte... method ModelToGLB (line 74) | public static void ModelToGLB(string modelName, byte[] modelData, byte... FILE: DS_Map/DSUtils/NSBUtils.cs class NSBUtils (line 8) | public static class NSBUtils { method ReadNSBMDname (line 12) | public static string ReadNSBMDname(BinaryReader reader, long? startPos... method BuildNSBMDwithTextures (line 25) | public static byte[] BuildNSBMDwithTextures(byte[] nsbmd, byte[] nsbtx) { method BuildNSBTXHeader (line 49) | public static byte[] BuildNSBTXHeader(uint texturesSize) { method CheckNSBMDHeader (line 63) | public static int CheckNSBMDHeader(byte[] modelFile) { method GetModelWithoutTextures (line 75) | public static byte[] GetModelWithoutTextures(byte[] modelFile) { method GetTexturesFromTexturedNSBMD (line 105) | public static byte[] GetTexturesFromTexturedNSBMD(byte[] modelFile) { method GetFirstBlock (line 126) | private static byte[] GetFirstBlock(byte[] NSBFile) { FILE: DS_Map/DSUtils/OverlayUtils.cs class OverlayUtils (line 9) | public static class OverlayUtils { class OverlayTable (line 10) | public static class OverlayTable { method IsDefaultCompressed (line 16) | public static bool IsDefaultCompressed(int ovNumber) { method SetDefaultCompressed (line 21) | public static void SetDefaultCompressed(int ovNumber, bool compressS... method GetRAMAddress (line 25) | public static uint GetRAMAddress(int ovNumber) { method GetUncompressedSize (line 30) | public static uint GetUncompressedSize(int ovNumber) { method GetNumberOfOverlays (line 39) | public static int GetNumberOfOverlays() { method GetPath (line 49) | public static string GetPath(int overlayNumber) { method IsCompressed (line 56) | public static bool IsCompressed(int ovNumber) { method RestoreFromCompressedBackup (line 60) | public static void RestoreFromCompressedBackup(int overlayNumber, bool... method Compress (line 80) | public static int Compress(int overlayNumber) { method Decompress (line 100) | public static int Decompress(string overlayFilePath, bool makeBackup =... method Decompress (line 119) | public static int Decompress(int overlayNumber, bool makeBackup = true) { FILE: DS_Map/DVCalculator/DVCalc.Designer.cs class DVCalc (line 5) | partial class DVCalc method Dispose (line 16) | protected override void Dispose(bool disposing) FILE: DS_Map/DVCalculator/DVCalc.cs class DVCalc (line 8) | public partial class DVCalc : Form method DVCalc (line 10) | public DVCalc(int TrainerIndex, int TrainerClassIndex) method MainForm_Load (line 31) | private void MainForm_Load(object sender, EventArgs e) method InitializeComponent (line 36) | private void InitializeComponent() method PopulateComboBox (line 270) | private void PopulateComboBox() method SetTrainerData (line 289) | private void SetTrainerData(int TrainerIndex, int TrainerClassIndex) method CalcButton_Click (line 295) | private void CalcButton_Click(object sender, EventArgs e) method ShowAllButton_Click (line 322) | private void ShowAllButton_Click(object sender, EventArgs e) method PokemonSelector_TextChanged (line 343) | private void PokemonSelector_TextChanged(object sender, EventArgs e) method buttonHelp_Click (line 361) | private void buttonHelp_Click(object sender, EventArgs e) FILE: DS_Map/DVCalculator/DVCalcNatureViewerForm.Designer.cs class DVCalcNatureViewerForm (line 6) | partial class DVCalcNatureViewerForm method Dispose (line 17) | protected override void Dispose(bool disposing) method InitializeComponent (line 32) | private void InitializeComponent() FILE: DS_Map/DVCalculator/DVCalcNatureViewerForm.cs class DVCalcNatureViewerForm (line 8) | public partial class DVCalcNatureViewerForm : Form method DVCalcNatureViewerForm (line 13) | public DVCalcNatureViewerForm(List data) method PopulateDataGridView (line 20) | private void PopulateDataGridView() FILE: DS_Map/DVCalculator/DVCalculator.cs class DVIVNatureTriplet (line 6) | public class DVIVNatureTriplet method DVIVNatureTriplet (line 12) | public DVIVNatureTriplet(int DV, int IV, string Nature) class DVCalculator (line 20) | internal static class DVCalculator method setSeed (line 24) | public static void setSeed(long seed) method getSeed (line 29) | public static long getSeed() method getNextRandom (line 37) | public static long getNextRandom() method findHighestDV (line 47) | public static int findHighestDV(int trainerIdx, int trainerClassIdx, b... method generatePID (line 64) | public static uint generatePID(int trainerIdx, int trainerClassIdx, bo... method getNatureFromPID (line 88) | public static uint getNatureFromPID(uint PID) method getAllNatures (line 93) | public static List getAllNatures(int trainerIdx, in... FILE: DS_Map/EditorPanels.cs class EditorPanels (line 5) | public static class EditorPanels { method Initialize (line 8) | public static void Initialize(MainProgram mainProgram) { FILE: DS_Map/Editors/EncountersEditor.Designer.cs class EncountersEditor (line 4) | partial class EncountersEditor method Dispose (line 15) | protected override void Dispose(bool disposing) method InitializeComponent (line 30) | private void InitializeComponent() FILE: DS_Map/Editors/EncountersEditor.cs class EncountersEditor (line 5) | public partial class EncountersEditor : UserControl method EncountersEditor (line 7) | public EncountersEditor() method SetupEncountersEditor (line 12) | public void SetupEncountersEditor() { method tabPageHeadbuttEditor_Enter (line 16) | private void tabPageHeadbuttEditor_Enter(object sender, System.EventAr... method tabPageSafariZoneEditor_Enter (line 22) | private void tabPageSafariZoneEditor_Enter(object sender, System.Event... FILE: DS_Map/Editors/HeadbuttEncounterEditor.Designer.cs class HeadbuttEncounterEditor (line 4) | partial class HeadbuttEncounterEditor { method Dispose (line 14) | protected override void Dispose(bool disposing) { method InitializeComponent (line 28) | private void InitializeComponent() { FILE: DS_Map/Editors/HeadbuttEncounterEditor.cs class HeadbuttEncounterEditor (line 11) | public partial class HeadbuttEncounterEditor : UserControl { method HeadbuttEncounterEditor (line 40) | public HeadbuttEncounterEditor() { method SetupHeadbuttEncounterEditor (line 45) | public void SetupHeadbuttEncounterEditor(bool force = false) { method makeCurrent (line 117) | public void makeCurrent() { method comboBoxMapHeader_SelectedIndexChanged (line 121) | private void comboBoxMapHeader_SelectedIndexChanged(object sender, Eve... method setCurrentMap (line 127) | public void setCurrentMap(HeadbuttEncounterFile headbuttEncounterFile) { method buttonSave_Click (line 243) | private void buttonSave_Click(object sender, EventArgs e) { method buttonSaveAs_Click (line 248) | private void buttonSaveAs_Click(object sender, EventArgs e) { method buttonImport_Click (line 265) | private void buttonImport_Click(object sender, EventArgs e) { method comboBoxMapFile_SelectedIndexChanged (line 284) | private void comboBoxMapFile_SelectedIndexChanged(object sender, Event... method GetMapBitmap (line 292) | private Bitmap GetMapBitmap() { method RenderBackground (line 298) | private void RenderBackground() { method RenderMap (line 313) | private Bitmap RenderMap() { method MarkTrees (line 342) | private void MarkTrees(Graphics g, BindingList tree... method MarkTree (line 355) | private void MarkTree(Graphics g, HeadbuttTree tree, HeadbuttTree.Type... method ListBoxTrees_SelectedIndexChanged (line 381) | private void ListBoxTrees_SelectedIndexChanged(object sender, EventArg... method openGlPictureBox_Click (line 395) | private void openGlPictureBox_Click(object sender, EventArgs e) { method FindTreeFromMap (line 431) | private bool FindTreeFromMap(ListBox2 listBoxTreeGroups, ListBox2 list... method numericUpDownTreeGlobalX_ValueChanged (line 446) | private void numericUpDownTreeGlobalX_ValueChanged(object sender, Even... method numericUpDownTreeGlobalY_ValueChanged (line 452) | private void numericUpDownTreeGlobalY_ValueChanged(object sender, Even... method numericUpDownTreeMatrixX_ValueChanged (line 458) | private void numericUpDownTreeMatrixX_ValueChanged(object sender, Even... method numericUpDownTreeMatrixY_ValueChanged (line 464) | private void numericUpDownTreeMatrixY_ValueChanged(object sender, Even... method numericUpDownTreeMapX_ValueChanged (line 470) | private void numericUpDownTreeMapX_ValueChanged(object sender, EventAr... method numericUpDownTreeMapY_ValueChanged (line 476) | private void numericUpDownTreeMapY_ValueChanged(object sender, EventAr... method mapScreenshotButton_Click (line 482) | private void mapScreenshotButton_Click(object sender, EventArgs e) { method SetCam2DValues (line 493) | private void SetCam2DValues() { FILE: DS_Map/Editors/HeadbuttEncounterEditorTab.Designer.cs class HeadbuttEncounterEditorTab (line 4) | partial class HeadbuttEncounterEditorTab method Dispose (line 15) | protected override void Dispose(bool disposing) method InitializeComponent (line 30) | private void InitializeComponent() { FILE: DS_Map/Editors/HeadbuttEncounterEditorTab.cs class HeadbuttEncounterEditorTab (line 8) | public partial class HeadbuttEncounterEditorTab : UserControl { method HeadbuttEncounterEditorTab (line 12) | public HeadbuttEncounterEditorTab() { method Reset (line 16) | public void Reset() { method SetHeadbuttEncounter (line 27) | public void SetHeadbuttEncounter(List encounters, B... method listBoxEncounters_SelectedIndexChanged (line 38) | private void listBoxEncounters_SelectedIndexChanged(object sender, Eve... method comboBoxPokemon_SelectedIndexChanged (line 47) | private void comboBoxPokemon_SelectedIndexChanged(object sender, Event... method numericUpDownMinLevel_ValueChanged (line 55) | private void numericUpDownMinLevel_ValueChanged(object sender, EventAr... method numericUpDownMaxLevel_ValueChanged (line 63) | private void numericUpDownMaxLevel_ValueChanged(object sender, EventAr... method listBoxTreeGroups_SelectedIndexChanged (line 71) | private void listBoxTreeGroups_SelectedIndexChanged(object sender, Eve... method buttonAddTreeGroup_Click (line 78) | private void buttonAddTreeGroup_Click(object sender, EventArgs e) { method buttonRemoveTreeGroup_Click (line 82) | private void buttonRemoveTreeGroup_Click(object sender, EventArgs e) { method buttonDuplicateTreeGroup_Click (line 88) | private void buttonDuplicateTreeGroup_Click(object sender, EventArgs e) { FILE: DS_Map/Editors/LevelScriptEditor.Designer.cs class LevelScriptEditor (line 4) | partial class LevelScriptEditor { method Dispose (line 14) | protected override void Dispose(bool disposing) { method InitializeComponent (line 28) | private void InitializeComponent() { FILE: DS_Map/Editors/LevelScriptEditor.cs class LevelScriptEditor (line 8) | public partial class LevelScriptEditor : UserControl { method LevelScriptEditor (line 13) | public LevelScriptEditor() { method SetUpLevelScriptEditor (line 18) | public void SetUpLevelScriptEditor(MainProgram parent, bool force = fa... method OpenLevelScriptEditor (line 26) | public void OpenLevelScriptEditor(MainProgram parent, int levelScriptI... method populate_selectScriptFileComboBox (line 34) | private void populate_selectScriptFileComboBox(int selectedIndex = 0) { method disableButtons (line 46) | void disableButtons() { method enableButtons (line 78) | void enableButtons() { method buttonAdd_logic (line 98) | void buttonAdd_logic() { method selectScriptFileComboBox_SelectedIndexChanged (line 112) | private void selectScriptFileComboBox_SelectedIndexChanged(object send... method listBoxTriggers_SelectedValueChanged (line 138) | void listBoxTriggers_SelectedValueChanged(object sender, EventArgs e) { method buttonAdd_Click (line 166) | private void buttonAdd_Click(object sender, EventArgs e) { method buttonRemove_Click (line 206) | private void buttonRemove_Click(object sender, EventArgs e) { method buttonOpenHeaderScript_Click (line 210) | private void buttonOpenHeaderScript_Click(object sender, EventArgs e) { method buttonOpenSelectedScript_Click (line 214) | private void buttonOpenSelectedScript_Click(object sender, EventArgs e) { method buttonLocate_Click (line 218) | void buttonLocate_Click(object sender, EventArgs e) { method buttonImport_Click (line 224) | void buttonImport_Click(object sender, EventArgs e) { method buttonSave_Click (line 240) | private void buttonSave_Click(object sender, EventArgs e) { method buttonExport_Click (line 245) | private void buttonExport_Click(object sender, EventArgs e) { method saveFile (line 260) | void saveFile(string path) { method handleAutoFormat (line 273) | private void handleAutoFormat() { method handleHexFormat (line 289) | private void handleHexFormat() { method handleDecimalFormat (line 305) | private void handleDecimalFormat() { method radioButtonAuto_CheckedChanged (line 321) | private void radioButtonAuto_CheckedChanged(object sender, EventArgs e) { method radioButtonHex_CheckedChanged (line 325) | private void radioButtonHex_CheckedChanged(object sender, EventArgs e) { method radioButtonDecimal_CheckedChanged (line 329) | private void radioButtonDecimal_CheckedChanged(object sender, EventArg... method AssignGroupBoxScriptText (line 332) | private void AssignGroupBoxScriptText() { method radioButtonVariableValue_CheckedChanged (line 340) | private void radioButtonVariableValue_CheckedChanged(object sender, Ev... method radioButtonMapChange_CheckedChanged (line 347) | private void radioButtonMapChange_CheckedChanged(object sender, EventA... method radioButtonScreenReset_CheckedChanged (line 354) | private void radioButtonScreenReset_CheckedChanged(object sender, Even... method radioButtonLoadGame_CheckedChanged (line 361) | private void radioButtonLoadGame_CheckedChanged(object sender, EventAr... method textBoxScriptID_TextChanged (line 368) | void textBoxScriptID_TextChanged(object sender, EventArgs e) { method textBoxVariableName_TextChanged (line 372) | void textBoxVariableName_TextChanged(object sender, EventArgs e) { method textBoxVariableValue_TextChanged (line 376) | void textBoxVariableValue_TextChanged(object sender, EventArgs e) { FILE: DS_Map/Editors/MoveDataEditor.Designer.cs class MoveDataEditor (line 2) | partial class MoveDataEditor { method Dispose (line 12) | protected override void Dispose(bool disposing) { method InitializeComponent (line 25) | private void InitializeComponent() { FILE: DS_Map/Editors/MoveDataEditor.cs class MoveDataEditor (line 12) | public partial class MoveDataEditor : Form { method MoveDataEditor (line 24) | public MoveDataEditor(string[] fileNames, string[] moveDescriptions) { method setDirty (line 72) | private void setDirty(bool status) { method CheckDiscardChanges (line 81) | private bool CheckDiscardChanges() { method ChangeLoadedFile (line 97) | private void ChangeLoadedFile(int toLoad) { method PopulateAllFromCurrentFile (line 103) | private void PopulateAllFromCurrentFile() { method saveDataButton_Click (line 132) | private void saveDataButton_Click(object sender, EventArgs e) { method FlagsCheckBox_CheckedChanged (line 137) | private void FlagsCheckBox_CheckedChanged(object sender, EventArgs e) { method AttackRangeCheckBox_CheckedChanged (line 155) | private void AttackRangeCheckBox_CheckedChanged(object sender, EventAr... method moveNameInputComboBox_SelectedIndexChanged (line 173) | private void moveNameInputComboBox_SelectedIndexChanged(object sender,... method moveNumberNumericUpDown_ValueChanged (line 189) | private void moveNumberNumericUpDown_ValueChanged(object sender, Event... method saveToFileToolStripMenuItem_Click (line 205) | private void saveToFileToolStripMenuItem_Click(object sender, EventArg... method ppUpDown_ValueChanged (line 210) | private void ppUpDown_ValueChanged(object sender, EventArgs e) { method moveSplitComboBox_SelectedIndexChanged (line 219) | private void moveSplitComboBox_SelectedIndexChanged(object sender, Eve... method moveTypeComboBox_SelectedIndexChanged (line 228) | private void moveTypeComboBox_SelectedIndexChanged(object sender, Even... method battleSeqComboBox_SelectedIndexChanged (line 237) | private void battleSeqComboBox_SelectedIndexChanged(object sender, Eve... method contestConditionComboBox_SelectedIndexChanged (line 246) | private void contestConditionComboBox_SelectedIndexChanged(object send... method contestAppealNumericUpDown_ValueChanged (line 254) | private void contestAppealNumericUpDown_ValueChanged(object sender, Ev... method powerNumericUpDown_ValueChanged (line 263) | private void powerNumericUpDown_ValueChanged(object sender, EventArgs ... method accuracyNumericUpDown_ValueChanged (line 272) | private void accuracyNumericUpDown_ValueChanged(object sender, EventAr... method priorityNumericUpDown_ValueChanged (line 281) | private void priorityNumericUpDown_ValueChanged(object sender, EventAr... method sideEffectUpDown_ValueChanged (line 298) | private void sideEffectUpDown_ValueChanged(object sender, EventArgs e) { FILE: DS_Map/Editors/SafariZoneEditor.Designer.cs class SafariZoneEditor (line 4) | partial class SafariZoneEditor method Dispose (line 15) | protected override void Dispose(bool disposing) method InitializeComponent (line 30) | private void InitializeComponent() FILE: DS_Map/Editors/SafariZoneEditor.cs class SafariZoneEditor (line 8) | public partial class SafariZoneEditor : UserControl { method SafariZoneEditor (line 12) | public SafariZoneEditor() { method SetupSafariZoneEditor (line 16) | public void SetupSafariZoneEditor(bool force = false) { method comboBoxFileID_SelectedIndexChanged (line 42) | private void comboBoxFileID_SelectedIndexChanged(object sender, EventA... method buttonSave_Click (line 61) | private void buttonSave_Click(object sender, EventArgs e) { method buttonSaveAs_Click (line 66) | private void buttonSaveAs_Click(object sender, EventArgs e) { method buttonImport_Click (line 83) | private void buttonImport_Click(object sender, EventArgs e) { FILE: DS_Map/Editors/SafariZoneEncounterEditorTab.Designer.cs class SafariZoneEncounterEditorTab (line 4) | partial class SafariZoneEncounterEditorTab method Dispose (line 15) | protected override void Dispose(bool disposing) method InitializeComponent (line 30) | private void InitializeComponent() FILE: DS_Map/Editors/SafariZoneEncounterEditorTab.cs class SafariZoneEncounterEditorTab (line 6) | public partial class SafariZoneEncounterEditorTab : UserControl { method SafariZoneEncounterEditorTab (line 7) | public SafariZoneEncounterEditorTab() { method listBoxEncounters_SelectedIndexChanged (line 11) | private void listBoxEncounters_SelectedIndexChanged(object sender, Eve... method comboBoxPokemon_SelectedIndexChanged (line 19) | private void comboBoxPokemon_SelectedIndexChanged(object sender, Event... method numericUpDownLevel_ValueChanged (line 27) | private void numericUpDownLevel_ValueChanged(object sender, EventArgs ... method listBoxEncountersObject_SelectedIndexChanged (line 35) | private void listBoxEncountersObject_SelectedIndexChanged(object sende... method comboBoxPokemonObject_SelectedIndexChanged (line 45) | private void comboBoxPokemonObject_SelectedIndexChanged(object sender,... method numericUpDownLevelObject_ValueChanged (line 54) | private void numericUpDownLevelObject_ValueChanged(object sender, Even... FILE: DS_Map/Editors/SafariZoneEncounterGroupEditor.Designer.cs class SafariZoneEncounterGroupEditor (line 4) | partial class SafariZoneEncounterGroupEditor method Dispose (line 15) | protected override void Dispose(bool disposing) method InitializeComponent (line 30) | private void InitializeComponent() FILE: DS_Map/Editors/SafariZoneEncounterGroupEditor.cs class SafariZoneEncounterGroupEditor (line 6) | public partial class SafariZoneEncounterGroupEditor : UserControl { method SafariZoneEncounterGroupEditor (line 9) | public SafariZoneEncounterGroupEditor() { method ListBoxEncountersObject_SelectedIndexChanged (line 18) | private void ListBoxEncountersObject_SelectedIndexChanged(object sende... method SetPokemonNames (line 31) | public void SetPokemonNames() { method Reset (line 46) | public void Reset() { method SetData (line 59) | public void SetData(SafariZoneEncounterGroup safariZoneEncounterGroup) { method listBoxObjectRequirements_SelectedIndexChanged (line 72) | private void listBoxObjectRequirements_SelectedIndexChanged(object sen... method comboBoxObjectRequirementType_SelectedIndexChanged (line 80) | private void comboBoxObjectRequirementType_SelectedIndexChanged(object... method numericUpDownObjectRequirementQty_ValueChanged (line 89) | private void numericUpDownObjectRequirementQty_ValueChanged(object sen... method listBoxObjectOptionalRequirements_SelectedIndexChanged (line 97) | private void listBoxObjectOptionalRequirements_SelectedIndexChanged(ob... method comboBoxOptionalObjectRequirementType_SelectedIndexChanged (line 105) | private void comboBoxOptionalObjectRequirementType_SelectedIndexChange... method numericUpDownObjectOptionalRequirementQty_ValueChanged (line 113) | private void numericUpDownObjectOptionalRequirementQty_ValueChanged(ob... method buttonAddObjectEncounter_Click (line 121) | private void buttonAddObjectEncounter_Click(object sender, EventArgs e) { method buttonRemoveObjectEncounter_Click (line 132) | private void buttonRemoveObjectEncounter_Click(object sender, EventArg... FILE: DS_Map/Editors/ScriptEditor.Designer.cs class ScriptEditor (line 4) | partial class ScriptEditor method Dispose (line 15) | protected override void Dispose(bool disposing) method InitializeComponent (line 30) | private void InitializeComponent() { FILE: DS_Map/Editors/ScriptEditor.cs class ScriptEditor (line 14) | public partial class ScriptEditor : UserControl { method ScriptEditor (line 75) | public ScriptEditor() { method SetupScriptEditor (line 100) | public void SetupScriptEditor(MainProgram parent, bool force = false) { method OpenScriptEditor (line 121) | public void OpenScriptEditor(MainProgram parent, int scriptFileID) { method SetupScriptEditorTextAreas (line 129) | private void SetupScriptEditorTextAreas() { method populate_selectScriptFileComboBox (line 210) | private void populate_selectScriptFileComboBox(int selectedIndex = 0) { method InitialViewConfig (line 222) | private void InitialViewConfig(Scintilla textArea) { method InitSyntaxColoring (line 232) | private void InitSyntaxColoring(Scintilla textArea) { method InitNumberMargin (line 257) | private void InitNumberMargin(Scintilla textArea, EventHandler getScriptsToSearch() { method searchInScriptsButton_Click (line 916) | private void searchInScriptsButton_Click(object sender, EventArgs e) { method SearchInScripts (line 954) | private List SearchInScripts(ScriptFile scri... method searchInScriptsResultListBox_KeyDown (line 973) | private void searchInScriptsResultListBox_KeyDown(object sender, KeyEv... method searchInScripts_GoToEntryResult (line 979) | private void searchInScripts_GoToEntryResult(object sender, MouseEvent... method goToSearchResult (line 983) | private void goToSearchResult() { method displaySearchResult (line 1001) | private void displaySearchResult(TabPage tabPage, SearchManager search... class ScriptEditorSearchResult (line 1020) | public class ScriptEditorSearchResult { method ScriptEditorSearchResult (line 1028) | public ScriptEditorSearchResult(ScriptFile scriptFile, ScriptFile.Cont... method ToString (line 1037) | public override string ToString() { FILE: DS_Map/EventFileImport.Designer.cs class EventFileImport (line 2) | partial class EventFileImport { method Dispose (line 12) | protected override void Dispose(bool disposing) { method InitializeComponent (line 25) | private void InitializeComponent() { FILE: DS_Map/EventFileImport.cs class EventFileImport (line 10) | public partial class EventFileImport : Form { method EventFileImport (line 24) | public EventFileImport(EventFile ef) { method confirmButton_Click (line 64) | private void confirmButton_Click(object sender, EventArgs e) { method importCheckBoxChanged (line 83) | private void importCheckBoxChanged(object sender, EventArgs e) { method checkAllButtonClicked (line 95) | private void checkAllButtonClicked(object sender, EventArgs e) { method uncheckAllButtonClicked (line 98) | private void uncheckAllButtonClicked(object sender, EventArgs e) { method blankCurrentEventFileCheckbox_CheckedChanged (line 102) | private void blankCurrentEventFileCheckbox_CheckedChanged(object sende... FILE: DS_Map/EvolutionsEditor.cs class EvolutionsEditor (line 8) | public partial class EvolutionsEditor : Form { method EvolutionsEditor (line 23) | public EvolutionsEditor(Control parent, PokemonEditor pokeEditor) { method pokemonNameInputComboBox_SelectedIndexChanged (line 68) | private void pokemonNameInputComboBox_SelectedIndexChanged(object send... method monNumberNumericUpDown_ValueChanged (line 83) | private void monNumberNumericUpDown_ValueChanged(object sender, EventA... method ChangeLoadedFile (line 98) | public void ChangeLoadedFile(int toLoad) { method saveDataButton_Click (line 122) | private void saveDataButton_Click(object sender, EventArgs e) { method EvolutionDataFromGUI (line 143) | private EvolutionData EvolutionDataFromGUI(int i) { method CheckDiscardChanges (line 160) | public bool CheckDiscardChanges() { method setDirty (line 176) | private void setDirty(bool status) { method evoMethodComboBox1_SelectedIndexChanged (line 186) | private void evoMethodComboBox1_SelectedIndexChanged(object sender, Ev... method evoMethodComboBox2_SelectedIndexChanged (line 190) | private void evoMethodComboBox2_SelectedIndexChanged(object sender, Ev... method evoMethodComboBox3_SelectedIndexChanged (line 194) | private void evoMethodComboBox3_SelectedIndexChanged(object sender, Ev... method evoMethodComboBox4_SelectedIndexChanged (line 198) | private void evoMethodComboBox4_SelectedIndexChanged(object sender, Ev... method evoMethodComboBox5_SelectedIndexChanged (line 202) | private void evoMethodComboBox5_SelectedIndexChanged(object sender, Ev... method evoMethodComboBox6_SelectedIndexChanged (line 206) | private void evoMethodComboBox6_SelectedIndexChanged(object sender, Ev... method evoMethodComboBox7_SelectedIndexChanged (line 210) | private void evoMethodComboBox7_SelectedIndexChanged(object sender, Ev... method ResetGUIRow (line 215) | private void ResetGUIRow(int index) { method UpdateDescriptionLabel (line 224) | private void UpdateDescriptionLabel(int index) { method evoParamUpDown1_ValueChanged (line 301) | private void evoParamUpDown1_ValueChanged(object sender, EventArgs e) { method evoParamUpDown2_ValueChanged (line 305) | private void evoParamUpDown2_ValueChanged(object sender, EventArgs e) { method evoParamUpDown3_ValueChanged (line 309) | private void evoParamUpDown3_ValueChanged(object sender, EventArgs e) { method evoParamUpDown4_ValueChanged (line 313) | private void evoParamUpDown4_ValueChanged(object sender, EventArgs e) { method evoParamUpDown5_ValueChanged (line 317) | private void evoParamUpDown5_ValueChanged(object sender, EventArgs e) { method evoParamUpDown6_ValueChanged (line 321) | private void evoParamUpDown6_ValueChanged(object sender, EventArgs e) { method evoParamUpDown7_ValueChanged (line 325) | private void evoParamUpDown7_ValueChanged(object sender, EventArgs e) { FILE: DS_Map/EvolutionsEditor.designer.cs class EvolutionsEditor (line 2) | partial class EvolutionsEditor { method Dispose (line 12) | protected override void Dispose(bool disposing) { method InitializeComponent (line 25) | private void InitializeComponent() { FILE: DS_Map/ExtensionMethods.cs class ExtensionMethods (line 5) | public static class ExtensionMethods { method IncrementNoAnimation (line 9) | public static void IncrementNoAnimation(this ProgressBar pb, int amoun... method SetProgressNoAnimation (line 19) | public static void SetProgressNoAnimation(this ProgressBar pb, int val... method UIThread (line 62) | public static void UIThread(this Control control, Action code) { FILE: DS_Map/Extensions.cs class Extensions (line 14) | public static class Extensions { method SetAllItemsChecked (line 15) | public static void SetAllItemsChecked(this CheckedListBox clb, bool st... method IndexOfFirstNumber (line 20) | public static int IndexOfFirstNumber(this string str) { method ContainsNumber (line 23) | public static bool ContainsNumber(this string str) { method SubArray (line 26) | public static T[] SubArray(this T[] array, int offset, int length) { method Move (line 31) | public static void Move(this IList l, int currentIndex, int newI... method Reverse (line 36) | public static Dictionary Reverse (this Dictionary ToStringsList (this ScintillaNET.LineCollec... method Resize (line 132) | public static Bitmap Resize(this Bitmap source, int width, int height) { method Resize (line 145) | public static Bitmap Resize(this Bitmap source, float factor) => sourc... class ListBox2 (line 148) | public class ListBox2 : ListBox { method RefreshItem (line 149) | public new void RefreshItem(int index) { class SimpleOpenGlControl2 (line 154) | public class SimpleOpenGlControl2 : SimpleOpenGlControl { method SimpleOpenGlControl2 (line 157) | public SimpleOpenGlControl2() : base() { method OnPaint (line 163) | protected override void OnPaint(PaintEventArgs e) { FILE: DS_Map/Filesystem.cs class Filesystem (line 4) | public static class Filesystem { method GetBuildingModelsDirPath (line 28) | public static string GetBuildingModelsDirPath(bool interior) { method GetPath (line 38) | public static string GetPath(string path, int id, string format = "D4") { method GetPath (line 42) | public static string GetPath(string path, string prefix, int id, strin... method GetBuildingModelFiles (line 46) | static string[] GetBuildingModelFiles(bool interior) { method GetBuildingModelPath (line 50) | public static string GetBuildingModelPath(bool interior, int id) { method GetBuildingCount (line 54) | public static int GetBuildingCount(bool interior) { method GetAreaDataFiles (line 58) | public static string[] GetAreaDataFiles() { method GetAreaDataPath (line 62) | public static string GetAreaDataPath(int id) { method GetAreaDataCount (line 66) | public static int GetAreaDataCount() { method GetTexturePath (line 70) | public static string GetTexturePath(bool useMapTiles, int textureID) { method GetMapTextureFiles (line 77) | static string[] GetMapTextureFiles() { method GetMapTexturePath (line 81) | public static string GetMapTexturePath(int id) { method GetMapTexturesCount (line 85) | public static int GetMapTexturesCount() { method GetBuildingTextureFiles (line 89) | static string[] GetBuildingTextureFiles() { method GetBuildingTexturePath (line 93) | public static string GetBuildingTexturePath(int id) { method GetBuildingTexturesCount (line 97) | public static int GetBuildingTexturesCount() { method GetMatrixFiles (line 101) | static string[] GetMatrixFiles() { method GetMatrixPath (line 105) | public static string GetMatrixPath(int id) { method GetMatrixCount (line 109) | public static int GetMatrixCount() { method GetTextArchiveFiles (line 113) | static string[] GetTextArchiveFiles() { method GetTextArchivePath (line 117) | public static string GetTextArchivePath(int id) { method GetTextArchivesCount (line 121) | public static int GetTextArchivesCount() { method GetMapFiles (line 125) | static string[] GetMapFiles() { method GetMapPath (line 129) | public static string GetMapPath(int id) { method GetMapCount (line 133) | public static int GetMapCount() { method GetScriptFiles (line 137) | static string[] GetScriptFiles() { method GetScriptPath (line 141) | public static string GetScriptPath(int id) { method GetScriptCount (line 145) | public static int GetScriptCount() { method GetEventFiles (line 149) | static string[] GetEventFiles() { method GetEventPath (line 153) | public static string GetEventPath(int id) { method GetEventFileCount (line 157) | public static int GetEventFileCount() { method GetTrainerPropertiesFiles (line 161) | static string[] GetTrainerPropertiesFiles() { method GetTrainerPropertiesPath (line 165) | public static string GetTrainerPropertiesPath(int id) { method GetTrainerPropertiesCount (line 169) | public static int GetTrainerPropertiesCount() { method GetDynamicHeaderFiles (line 173) | static string[] GetDynamicHeaderFiles() { method GetDynamicHeaderPath (line 177) | public static string GetDynamicHeaderPath(int id) { method GetDynamicHeadersCount (line 181) | public static int GetDynamicHeadersCount() { method GetEncounterFiles (line 185) | static string[] GetEncounterFiles() { method GetEncounterPath (line 189) | public static string GetEncounterPath(int id) { method GetEncountersCount (line 193) | public static int GetEncountersCount() { method GetSafariZoneFiles (line 197) | static string[] GetSafariZoneFiles() { method GetSafariZonePath (line 201) | public static string GetSafariZonePath(int id) { method GetSafariZoneCount (line 205) | public static int GetSafariZoneCount() { method GetHeadbuttFiles (line 209) | static string[] GetHeadbuttFiles() { method GetHeadbuttPath (line 213) | public static string GetHeadbuttPath(int id) { method GetHeadbuttCount (line 217) | public static int GetHeadbuttCount() { method GetOWSpritePath (line 221) | public static string GetOWSpritePath(int id) { method GetBuildingConfigPath (line 225) | public static string GetBuildingConfigPath(int id) { method GetTrainerPartyPath (line 229) | public static string GetTrainerPartyPath(int id) { method GetTrainerGraphicsPath (line 233) | public static string GetTrainerGraphicsPath(int id) { method GetMonIconPath (line 237) | public static string GetMonIconPath(int id, string format = "D4") { method GetSynthOerlayPath (line 241) | public static string GetSynthOerlayPath(int id) { FILE: DS_Map/GameCamera.cs class GameCamera (line 7) | public class GameCamera { method GameCamera (line 106) | public GameCamera(uint distance = 0x29AEC1, short vertRot = 0xD62, sho... method GameCamera (line 129) | public GameCamera(byte[] camData) { method ToByteArray (line 159) | public byte[] ToByteArray() { method ShowInGridView (line 191) | public void ShowInGridView(DataGridView dgv, int rowIndex) { FILE: DS_Map/HeaderSearch.Designer.cs class HeaderSearch (line 2) | partial class HeaderSearch { method Dispose (line 12) | protected override void Dispose(bool disposing) { method InitializeComponent (line 25) | private void InitializeComponent() { FILE: DS_Map/HeaderSearch.cs class HeaderSearch (line 12) | public partial class HeaderSearch : Form { type NumOperators (line 28) | public enum NumOperators : byte { type TextOperators (line 38) | public enum TextOperators : byte { method HeaderSearch (line 72) | public HeaderSearch(ref List internalNames, ListBox headerList... method UpdateOperators (line 88) | private void UpdateOperators(ComboBox operatorComboBox, ComboBox field... method ResetResults (line 106) | public static void ResetResults(ListBox headerListBox, List in... method AdvancedSearch (line 122) | public static HashSet AdvancedSearch(ushort startID, ushort fi... method startSearchButton_Click (line 231) | private void startSearchButton_Click(object sender, EventArgs e) { method StartSearch (line 235) | private void StartSearch(bool showDialog = true) { method valueTextBox_KeyUp (line 277) | private void valueTextBox_KeyUp(object sender, KeyEventArgs e) { method headerSearchResetButton_Click (line 284) | private void headerSearchResetButton_Click(object sender, EventArgs e) { method fieldToSearch1ComboBox_SelectedIndexChanged (line 289) | private void fieldToSearch1ComboBox_SelectedIndexChanged(object sender... method operator1ComboBox_SelectedIndexChanged (line 295) | private void operator1ComboBox_SelectedIndexChanged(object sender, Eve... FILE: DS_Map/Helpers.cs class Helpers (line 20) | public static class Helpers { method Initialize (line 30) | public static void Initialize(MainProgram mainProgram) { method BackUpDisableHandler (line 41) | public static void BackUpDisableHandler() { method RestoreDisableHandler (line 45) | public static void RestoreDisableHandler() { method DisableHandlers (line 49) | public static void DisableHandlers() { method EnableHandlers (line 53) | public static void EnableHandlers() { method statusLabelMessage (line 57) | public static void statusLabelMessage(string msg = "Ready") { method statusLabelError (line 65) | public static void statusLabelError(string errorMsg, bool severe = tru... method ExplorerSelect (line 74) | public static void ExplorerSelect(string path) { method GetTrainerNames (line 80) | public static string[] GetTrainerNames() { method MW_LoadModelTextures (line 105) | public static void MW_LoadModelTextures(NSBMD model, string textureFol... method MW_LoadModelTextures (line 118) | public static void MW_LoadModelTextures(MapFile mapFile, int fileID) { method MW_LoadModelTextures (line 122) | public static void MW_LoadModelTextures(Building building, int fileID) { method SetupRenderer (line 126) | public static void SetupRenderer(float ang, float dist, float elev, fl... method RenderMap (line 164) | public static void RenderMap(ref MapFile mapFile, int width, int heigh... method GrabMapScreenshot (line 218) | public static Bitmap GrabMapScreenshot(int width, int height) { method ScaleTranslateRotateBuilding (line 227) | private static void ScaleTranslateRotateBuilding(Building building) { method GetPokePic (line 242) | public static Image GetPokePic(int species, int w, int h, PaletteBase ... method GenerateKeystrokes (line 328) | public static void GenerateKeystrokes(string keys, Scintilla textArea) { method PictureBoxDisable (line 337) | public static void PictureBoxDisable(object sender, PaintEventArgs e) { method getHeaderListBoxNames (line 345) | public static List getHeaderListBoxNames() { method getInternalNames (line 364) | public static List getInternalNames() { FILE: DS_Map/InputComboBox.cs class InputComboBox (line 7) | public partial class InputComboBox : ComboBox { method InputComboBox (line 10) | public InputComboBox() { method UpdateText (line 18) | private void UpdateText() { method OnKeyDown (line 28) | protected override void OnKeyDown(KeyEventArgs e) { method OnLeave (line 35) | protected override void OnLeave(EventArgs e) { FILE: DS_Map/LearnsetEditor.Designer.cs class LearnsetEditor (line 2) | partial class LearnsetEditor { method Dispose (line 12) | protected override void Dispose(bool disposing) { method InitializeComponent (line 25) | private void InitializeComponent() { FILE: DS_Map/LearnsetEditor.cs class LearnsetEditor (line 11) | public partial class LearnsetEditor : Form { method LearnsetEditor (line 34) | public LearnsetEditor(string[] moveNames, Control parent, PokemonEdito... method setDirty (line 74) | private void setDirty(bool status) { method CheckDiscardChanges (line 83) | public bool CheckDiscardChanges() { method ElemToString (line 99) | private string ElemToString((ushort level, ushort move) elem) { method ChangeLoadedFile (line 102) | public void ChangeLoadedFile(int toLoad) { method PopulateAllFromCurrentFile (line 121) | private void PopulateAllFromCurrentFile() { method saveDataButton_Click (line 133) | private void saveDataButton_Click(object sender, EventArgs e) { method pokemonNameInputComboBox_SelectedIndexChanged (line 138) | private void pokemonNameInputComboBox_SelectedIndexChanged(object send... method monNumberNumericUpDown_ValueChanged (line 153) | private void monNumberNumericUpDown_ValueChanged(object sender, EventA... method moveInputComboBox_SelectedIndexChanged (line 168) | private void moveInputComboBox_SelectedIndexChanged(object sender, Eve... method CheckValidEntry (line 176) | private bool CheckValidEntry() { method levelNumericUpDown_ValueChanged (line 180) | private void levelNumericUpDown_ValueChanged(object sender, EventArgs ... method UpdateAddEditStatus (line 187) | private void UpdateAddEditStatus() { method addMoveButton_Click (line 214) | private void addMoveButton_Click(object sender, EventArgs e) { method deleteMoveButton_Click (line 225) | private void deleteMoveButton_Click(object sender, EventArgs e) { method editMoveButton_Click (line 251) | private void editMoveButton_Click(object sender, EventArgs e) { method UpdateByEditMode (line 294) | private void UpdateByEditMode() { method UpdateButtonNames (line 298) | private void UpdateButtonNames(bool editMode) { method movesListBox_SelectedIndexChanged (line 304) | private void movesListBox_SelectedIndexChanged(object sender, EventArg... method UpdateButtonsOnMoveSelection (line 308) | private void UpdateButtonsOnMoveSelection() { method UpdateEntryCountLabel (line 320) | private void UpdateEntryCountLabel(){ FILE: DS_Map/LibNDSFormats/EndianBinaryReader.cs class EndianBinaryReader (line 21) | public sealed class EndianBinaryReader : IDisposable { method EndianBinaryReader (line 31) | public EndianBinaryReader(Stream baseStream) method EndianBinaryReader (line 34) | public EndianBinaryReader(Stream baseStream, Endianness endianness) { method FillBuffer (line 46) | private void FillBuffer(int bytes, int stride) { method ReadByte (line 58) | public byte ReadByte() { method ReadBytes (line 64) | public byte[] ReadBytes(int count) { method ReadSByte (line 73) | public sbyte ReadSByte() { method ReadSBytes (line 81) | public sbyte[] ReadSBytes(int count) { method ReadChar (line 96) | public char ReadChar(Encoding encoding) { method ReadChars (line 104) | public char[] ReadChars(Encoding encoding, int count) { method GetEncodingSize (line 112) | private static int GetEncodingSize(Encoding encoding) { method ReadStringNT (line 121) | public string ReadStringNT(Encoding encoding) { method ReadString (line 133) | public string ReadString(Encoding encoding, int count) { method ReadDouble (line 137) | public double ReadDouble() { method ReadDoubles (line 143) | public double[] ReadDoubles(int count) { method ReadSingle (line 156) | public Single ReadSingle() { method ReadSingles (line 162) | public Single[] ReadSingles(int count) { method ReadInt32 (line 175) | public Int32 ReadInt32() { method ReadInt32s (line 181) | public Int32[] ReadInt32s(int count) { method ReadInt64 (line 194) | public Int64 ReadInt64() { method ReadInt64s (line 200) | public Int64[] ReadInt64s(int count) { method ReadInt16 (line 213) | public Int16 ReadInt16() { method ReadInt16s (line 219) | public Int16[] ReadInt16s(int count) { method ReadUInt16 (line 232) | public ushort ReadUInt16() { method ReadUInt16s (line 238) | public ushort[] ReadUInt16s(int count) { method ReadUInt32 (line 251) | public UInt32 ReadUInt32() { method ReadUInt32s (line 257) | public UInt32[] ReadUInt32s(int count) { method ReadUInt64 (line 270) | public UInt64 ReadUInt64() { method ReadUInt64s (line 276) | public UInt64[] ReadUInt64s(int count) { method Close (line 289) | public void Close() { method Dispose (line 293) | public void Dispose() { method Dispose (line 298) | private void Dispose(bool disposing) { type Endianness (line 313) | public enum Endianness { FILE: DS_Map/LibNDSFormats/Export3DTools/Face.cs class Face (line 5) | public class Face FILE: DS_Map/LibNDSFormats/Export3DTools/Group.cs class Group (line 7) | public class Group method Add (line 11) | public void Add(Polygon g) method GetEnumerator (line 16) | public IEnumerator GetEnumerator() FILE: DS_Map/LibNDSFormats/Export3DTools/OBJWriter.cs class OBJWriter (line 7) | public class OBJWriter method AddTriangle (line 13) | public void AddTriangle(Vector3[] Vertice) method AddTriangle (line 18) | public void AddTriangle(Vector3[] Vertice, Vector2 TexCoord) method AddTriangle (line 24) | public void AddTriangle(Vector3[] Vertice, Vector3 Normal) method AddTriangle (line 30) | public void AddTriangle(Vector3[] Vertice, Vector2 TexCoord, Vector3 N... FILE: DS_Map/LibNDSFormats/Export3DTools/Polygon.cs class Polygon (line 6) | public class Polygon method Polygon (line 13) | public Polygon(PolygonType PolyType, Vector3[] Normals, Vector2[] TexC... FILE: DS_Map/LibNDSFormats/Export3DTools/PolygonType.cs type PolygonType (line 5) | public enum PolygonType FILE: DS_Map/LibNDSFormats/Export3DTools/Quad.cs class Quad (line 6) | public class Quad : Face FILE: DS_Map/LibNDSFormats/Export3DTools/QuadStrip.cs class QuadStrip (line 7) | public class QuadStrip : Face FILE: DS_Map/LibNDSFormats/Export3DTools/Triangle.cs class Triangle (line 6) | public class Triangle : Face FILE: DS_Map/LibNDSFormats/Export3DTools/TriangleStrip.cs class TriangleStrip (line 7) | public class TriangleStrip : Face FILE: DS_Map/LibNDSFormats/Helper.cs class Helper (line 9) | static class Helper { method ColorToBGR15 (line 10) | public static ushort ColorToBGR15(Color color) { method BGR15ToColor (line 17) | public static Color BGR15ToColor(ushort bgr15) { method BlendColorsBGR15 (line 24) | public static ushort BlendColorsBGR15(ushort c1, int w1, ushort c2, in... method VectorsEqual (line 38) | public static bool VectorsEqual(Vector3 a, Vector3 b) { FILE: DS_Map/LibNDSFormats/NSBCA/NSBCA.cs class NSBCA (line 8) | public class NSBCA { type NSBCA_File (line 9) | public struct NSBCA_File { type header (line 11) | public struct header { type jnt0 (line 20) | public struct jnt0 //Scale Rotation and Translation type UnknownBlock (line 32) | public struct UnknownBlock { type Info (line 40) | public struct Info { type info (line 46) | public struct info { type J_AC (line 52) | public struct J_AC { type objInfo (line 66) | public struct objInfo { method Read (line 205) | public static NSBCA_File Read(string Filename) { FILE: DS_Map/LibNDSFormats/NSBCA/NSBCALoader.cs class NSBCALoader (line 12) | public static class NSBCALoader { method LoadNsbca (line 22) | public static IEnumerable LoadNsbca(Stream stream) { method LoadNsbca (line 53) | public static IEnumerable LoadNsbca(FileInfo fileInfo) { method ReadJnt0 (line 66) | public static IEnumerable ReadJnt0(Stream stream, int ... method getdword (line 182) | static Int32 getdword(byte[] b) { method getword (line 190) | static Int32 getword(byte[] b) { FILE: DS_Map/LibNDSFormats/NSBMD/MTX44.cs class MTX44 (line 11) | internal class MTX44 { method SetValues (line 33) | public void SetValues(float[] array) { method Clone (line 64) | public MTX44 Clone() { method translate (line 72) | public void translate(float x, float y, float z) { method LoadIdentity (line 84) | public void LoadIdentity() { method MultMatrix (line 97) | public MTX44 MultMatrix(MTX44 b) { method mtx_Rotate (line 112) | public static MTX44 mtx_Rotate(int pivot, int neg, float a, float b) { method MultVector (line 266) | public float[] MultVector(float[] v) { method MTX44 (line 289) | public MTX44() { method Scale (line 299) | public void Scale(float x, float y, float z) { method Zero (line 313) | public void Zero() { method CopyValuesTo (line 323) | public void CopyValuesTo(MTX44 m) { FILE: DS_Map/LibNDSFormats/NSBMD/NSBMD.cs class NSBMD (line 15) | public class NSBMD { method MatchTextures (line 50) | public void MatchTextures() { method MatchTextures_org (line 107) | public void MatchTextures_org() { method ClearTextures (line 216) | public void ClearTextures() { method DecodeCode (line 226) | public static bool DecodeCode(Stream stream, uint codeoffset, uint cod... method ReadMdl0 (line 406) | private static NSBMDModel[] ReadMdl0(Stream stream, int blockoffset) { method getFixed (line 808) | public static float getFixed(int value, int sign, int var, int frac) { method GetSizeOfObject (line 817) | public static int GetSizeOfObject(object obj) { method ParseNsbmdObject (line 833) | private static void ParseNsbmdObject(EndianBinaryReader reader, NSBMDO... method mtxPivot (line 909) | public static float[] mtxPivot(float[] ab, int pv, int neg) { method getdword (line 1058) | static Int32 getdword(byte[] b) { method getword (line 1066) | static Int32 getword(byte[] b) { method FromStream (line 1075) | internal static NSBMD FromStream(Stream stream) { type RGBA (line 1138) | public struct RGBA { method fromColor (line 1151) | public static RGBA fromColor(System.Drawing.Color c) { method ToColor (line 1197) | public Color ToColor() { FILE: DS_Map/LibNDSFormats/NSBMD/NSBMDAnimation.cs class NSBMDAnimation (line 11) | public class NSBMDAnimation FILE: DS_Map/LibNDSFormats/NSBMD/NSBMDGlRenderer.cs class NSBMDGlRenderer (line 19) | public class NSBMDGlRenderer { method NSBMDGlRenderer (line 68) | public NSBMDGlRenderer() { method NSBMDGlRenderer (line 77) | public NSBMDGlRenderer(int matstart) { type RenderMode (line 109) | public enum RenderMode { method Rotate (line 114) | public static float[] Rotate(float[] a, float x, float y, float z) { method RenderModel (line 134) | public void RenderModel(string file2, MKDS_Course_Editor.NSBTA.NSBTA.N... method RenderModel (line 137) | public void RenderModel(string file2, MKDS_Course_Editor.NSBTA.NSBTA.N... method RenderModel (line 163) | public void RenderModel(string file2, MKDS_Course_Editor.NSBTA.NSBTA.N... method RenderModel (line 478) | public void RenderModel(float elev, float ang) { method DoJointAnimation (line 646) | public bool DoJointAnimation(MKDS_Course_Editor.NSBCA.NSBCA.NSBCA_File... method Translate (line 878) | public static float[] Translate(float[] a, float x, float y, float z) { method loadIdentity (line 885) | public static float[] loadIdentity() { method scale (line 893) | public static float[] scale(float[] a, float x, float y, float z) { method setColor (line 901) | private void setColor(int drawMode, float[] color) { method multMatrix (line 999) | public static float[] multMatrix(float[] a, float[] b) { method loadMatrix (line 1013) | public static float[] loadMatrix(float[] fmatrix, int stack) { method pullVector (line 1025) | public float[] pullVector(float[] fmatrix, int offset) { method multVector (line 1035) | public float[] multVector(float[] cmatrix, float[] vtxState) { method convert_4x4texel (line 1053) | private bool convert_4x4texel(uint[] tex, int width, int height, ushor... method convert_4x4texel_b (line 1127) | private void convert_4x4texel_b(byte[] tex, int width, int height, byt... method MakeTexture (line 1143) | private void MakeTexture(NSBMDModel mod) { method MakeTexture (line 1345) | private void MakeTexture(int i, NSBMDMaterial m) { method DeleteObject (line 1492) | [System.Runtime.InteropServices.DllImport("gdi32.dll")] method CreateBitmapSourceFromBitmap (line 1495) | public static System.Windows.Media.Imaging.BitmapSource CreateBitmapSo... method Bitmap2BitmapImage (line 1512) | private System.Windows.Media.Imaging.BitmapImage Bitmap2BitmapImage(Sy... method Process3DCommand (line 1526) | private void Process3DCommand(byte[] polydata, NSBMDMaterial m, int jo... method Sign (line 2284) | public static int Sign(int data, int size) { method ClearOBJ (line 2294) | public void ClearOBJ() { method RipModel (line 2298) | public void RipModel(string file) { method Process3DCommandRipper (line 2488) | private Group Process3DCommandRipper(byte[] polydata, NSBMDMaterial m,... FILE: DS_Map/LibNDSFormats/NSBMD/NSBMDLoader.cs class NSBMDLoader (line 11) | public static class NSBMDLoader method LoadNSBMD (line 18) | public static NSBMD LoadNSBMD(Stream stream) FILE: DS_Map/LibNDSFormats/NSBMD/NSBMDMaterial.cs class NSBMDMaterial (line 10) | public class NSBMDMaterial method CopyTo (line 61) | public NSBMDMaterial CopyTo(NSBMDMaterial other1) FILE: DS_Map/LibNDSFormats/NSBMD/NSBMDModel.cs class NSBMDModel (line 11) | public class NSBMDModel FILE: DS_Map/LibNDSFormats/NSBMD/NSBMDObject.cs class NSBMDObject (line 12) | public class NSBMDObject FILE: DS_Map/LibNDSFormats/NSBMD/NSBMDPalette.cs class NSBMDPalette (line 8) | public class NSBMDPalette FILE: DS_Map/LibNDSFormats/NSBMD/NSBMDPolygon.cs class NSBMDPolygon (line 11) | public class NSBMDPolygon FILE: DS_Map/LibNDSFormats/NSBMD/NSBMDTexture.cs class NSBMDTexture (line 8) | public class NSBMDTexture FILE: DS_Map/LibNDSFormats/NSBTA.cs class NSBTA (line 9) | public class NSBTA { type NSBTA_File (line 10) | public struct NSBTA_File { type header (line 12) | public struct header { type srt0 (line 21) | public struct srt0 //Scale Rotation and Translation type UnknownBlock (line 33) | public struct UnknownBlock { type Info (line 41) | public struct Info { type info (line 47) | public struct info { type M_AT (line 53) | public struct M_AT { type UnknownBlock (line 66) | public struct UnknownBlock { type Info (line 74) | public struct Info { type info (line 80) | public struct info { type srtData (line 90) | public struct srtData { method Read (line 99) | public static NSBTA_File Read(string Filename) { FILE: DS_Map/LibNDSFormats/NSBTP.cs class NSBTP (line 9) | public class NSBTP { type NSBTP_File (line 10) | public struct NSBTP_File { type header (line 12) | public struct header { type pat0 (line 21) | public struct pat0 //Scale Rotation and Translation type UnknownBlock (line 33) | public struct UnknownBlock { type Info (line 41) | public struct Info { type info (line 47) | public struct info { type M_PT (line 53) | public struct M_PT { type UnknownBlock (line 68) | public struct UnknownBlock { type Info (line 76) | public struct Info { type info (line 83) | public struct info { type animData (line 91) | public struct animData { type keyFrame (line 93) | public struct keyFrame { method Read (line 102) | public static NSBTP_File Read(string Filename) { FILE: DS_Map/LibNDSFormats/NSBTX/File.cs class File (line 25) | public class File : IComparable method File (line 63) | public File(Filesystem parent, Directory parentDir, string name) method File (line 73) | public File(Filesystem parent, Directory parentDir, bool systemFile, i... method File (line 87) | public File(Filesystem parent, Directory parentDir, bool systemFile, i... method File (line 102) | public File(Filesystem parent, Directory parentDir, bool systemFile, i... method getContents (line 114) | public virtual byte[] getContents() method dumpFile (line 123) | public void dumpFile(int ind) method refreshOffsets (line 131) | public virtual void refreshOffsets() method saveOffsets (line 146) | public virtual void saveOffsets() method getUintAt (line 158) | public uint getUintAt(int offset) method setUintAt (line 173) | public void setUintAt(int offset, uint val) method getUshortAt (line 186) | public ushort getUshortAt(int offset) method setUshortAt (line 202) | public void setUshortAt(int offset, ushort val) method getByteAt (line 215) | public byte getByteAt(int offs) method setByteAt (line 225) | public void setByteAt(int offs, byte val) method isAGoodEditor (line 234) | public bool isAGoodEditor(object editor) method replace (line 247) | public virtual void replace(byte[] newFile, object editor) method moveTo (line 300) | public void moveTo(int newOffs) method CompareTo (line 311) | public int CompareTo(object obj) method beginEdit (line 319) | public virtual void beginEdit(Object editor) method endEdit (line 327) | public virtual void endEdit(Object editor) method beingEditedBy (line 337) | public bool beingEditedBy(Object ed) method isAddrInFile (line 343) | public bool isAddrInFile(int addr) method beginEditInline (line 350) | public void beginEditInline(InlineFile f) method endEditInline (line 358) | public void endEditInline(InlineFile f) method enableEdition (line 369) | public virtual void enableEdition() { } method getPath (line 372) | public string getPath() FILE: DS_Map/LibNDSFormats/NSBTX/Filepallete.cs class FilePalette (line 9) | public class FilePalette : Palette method FilePalette (line 14) | public FilePalette(File f) method FilePalette (line 19) | public FilePalette(File f, string name) method arrayToPalette (line 32) | public static Color[] arrayToPalette(byte[] data) method save (line 43) | public override void save() method getRawData (line 52) | public override byte[] getRawData() method close (line 62) | public override void close() method ToString (line 67) | public override string ToString() FILE: DS_Map/LibNDSFormats/NSBTX/NSBTXLoader.cs class NSBTXLoader (line 16) | public static class NSBTXLoader method LoadNsbtx (line 28) | public static IEnumerable LoadNsbtx(Stream stream, out ... method LoadNsbtx (line 66) | public static IEnumerable LoadNsbtx(FileInfo fileInfo, ... method ReadTex0 (line 83) | public static IEnumerable ReadTex0(Stream stream, int b... FILE: DS_Map/LibNDSFormats/NSBTX/Rom.cs class ROM (line 53) | public static class ROM method LoadDescriptions (line 122) | public static void LoadDescriptions() type Origin (line 158) | public enum Origin type Data (line 165) | public enum Data : int method GetFileIDFromTable (line 215) | public static ushort GetFileIDFromTable(int id, Data datatype) method GetFileIDFromTable (line 220) | public static ushort GetFileIDFromTable(int id, int tableoffset) method GetClassIDFromTable (line 226) | public static ushort GetClassIDFromTable(int id) method SetFileIDFromTable (line 232) | public static void SetFileIDFromTable(int id, Data datatype, ushort fid) method getDataForSprite (line 237) | public static string getDataForSprite(int id) method SetFileIDFromTable (line 248) | public static void SetFileIDFromTable(int id, int tableoffset, ushort ... method GetOffset (line 256) | public static int GetOffset(Data datatype) method GetInlineFile (line 261) | public static byte[] GetInlineFile(Data datatype) method decompressOverlay (line 274) | public static byte[] decompressOverlay(byte[] sourcedata) method SubS (line 350) | private static void SubS(out uint dest, uint v1, uint v2, out bool N, ... method Search (line 357) | static private unsafe int[] Search(byte* source, int position, int len... method LZ77_Compress (line 399) | static public unsafe byte[] LZ77_Compress(byte[] source, bool header =... method Compress (line 407) | static public unsafe byte[] Compress(byte* source, int lenght, bool he... method LZ77_FastCompress (line 460) | public static byte[] LZ77_FastCompress(byte[] source) method LZ77_Decompress (line 491) | public static byte[] LZ77_Decompress(byte[] source) method LZ77_DecompressWithHeader (line 554) | public static byte[] LZ77_DecompressWithHeader(byte[] source) method CalcCRC16 (line 653) | public static ushort CalcCRC16(byte[] data) FILE: DS_Map/LibNDSFormats/NSBTX/bytearrayinputstream.cs class ByteArrayInputStream (line 24) | public class ByteArrayInputStream method ByteArrayInputStream (line 30) | public ByteArrayInputStream(byte[] array) method setOrigin (line 36) | public void setOrigin(uint o) method savePos (line 41) | public void savePos() method loadPos (line 46) | public void loadPos() method lengthAvailable (line 59) | public bool lengthAvailable(int len) method readByte (line 64) | public byte readByte() method dumpAsciiData (line 69) | public void dumpAsciiData() method write (line 79) | public void write(byte[] data) method writeByte (line 85) | public void writeByte(byte b) method seek (line 90) | public void seek(uint pos) method seek (line 94) | public void seek(int pos) method skip (line 99) | public void skip(uint bytes) method getData (line 104) | public byte[] getData() method skipback (line 108) | public void skipback(uint bytes) method getPos (line 114) | public uint getPos() method ReadUInt16 (line 119) | public ushort ReadUInt16() method readUInt (line 125) | public uint readUInt() method readInt (line 134) | public int readInt() method readLong (line 144) | public long readLong() method read (line 154) | public void read(byte[] dest) method end (line 160) | public bool end() method ReadString (line 165) | public string ReadString(int l) FILE: DS_Map/LibNDSFormats/NSBTX/directory.cs class Directory (line 24) | public class Directory method Directory (line 43) | public Directory(Filesystem parent, Directory parentDir, bool system, ... method dumpFiles (line 52) | public void dumpFiles() method dumpFiles (line 57) | public void dumpFiles(int ind) method getPath (line 68) | public string getPath() FILE: DS_Map/LibNDSFormats/NSBTX/externalfilesystemsource.cs class ExternalFilesystemSource (line 25) | public class ExternalFilesystemSource : FilesystemSource method ExternalFilesystemSource (line 29) | public ExternalFilesystemSource(string n) method load (line 34) | public override Stream load() method save (line 40) | public override void save() method close (line 46) | public override void close() method getDescription (line 51) | public override string getDescription() FILE: DS_Map/LibNDSFormats/NSBTX/filesystem2.cs class Filesystem (line 25) | public class Filesystem method Filesystem (line 41) | public Filesystem(FilesystemSource fs) method getFileById (line 47) | public File getFileById(int id) method getFileByName (line 54) | public File getFileByName(string name) method getDirByPath (line 63) | public Directory getDirByPath(string path) method addFile (line 83) | protected void addFile(File f) method addDir (line 93) | protected void addDir(Directory d) method findFreeSpace (line 102) | public int findFreeSpace(int len, int align) method findErrors (line 142) | public bool findErrors() method close (line 163) | public void close() method save (line 168) | public void save() method dumpFilesOrdered (line 173) | public void dumpFilesOrdered(TextWriter outs) method fileMoved (line 180) | public virtual void fileMoved(File f) method getFilesystemEnd (line 184) | public int getFilesystemEnd() method readUInt (line 194) | public uint readUInt(Stream s) method moveAllFiles (line 205) | public void moveAllFiles(File first, int firstOffs) FILE: DS_Map/LibNDSFormats/NSBTX/filesystemsource.cs class FilesystemSource (line 25) | public abstract class FilesystemSource method load (line 29) | public abstract Stream load(); method save (line 30) | public abstract void save(); method close (line 31) | public abstract void close(); method getDescription (line 32) | public abstract string getDescription(); FILE: DS_Map/LibNDSFormats/NSBTX/image3d.cs class Image3D (line 8) | public class Image3D : PixelPalettedImage method Image3D (line 34) | public Image3D(InlineFile f, bool color0, int width, int height, int f... method getPixelVal (line 47) | private int getPixelVal(int x, int y) method setPixelVal (line 69) | private void setPixelVal(int x, int y, int v) method getPixel (line 97) | public override int getPixel(int x, int y) method setPixel (line 107) | public override void setPixel(int x, int y, int c) method getWidth (line 125) | public override int getWidth() method getHeight (line 130) | public override int getHeight() method getRawData (line 135) | public override byte[] getRawData() method getRawData5 (line 139) | public override byte[] getRawData5() method setRawData (line 143) | public override void setRawData(byte[] data) method save (line 148) | public override void save() method close (line 153) | public override void close() method ToString (line 159) | public override string ToString() FILE: DS_Map/LibNDSFormats/NSBTX/image3dformat5.cs class Image3Dformat5 (line 10) | public class Image3Dformat5 : PalettedImage method Image3Dformat5 (line 19) | public Image3Dformat5(InlineFile f, InlineFile f5, int width, int height) method getWidth (line 34) | public override int getWidth() method getHeight (line 39) | public override int getHeight() method render (line 44) | public override Bitmap render(Palette p) method close (line 91) | public override void close() method replaceWithPal (line 97) | public override void replaceWithPal(Bitmap b, Palette p) method replaceImgAndPal (line 102) | public override void replaceImgAndPal(Bitmap b, Palette p) method save (line 115) | public override void save() method getRawData (line 120) | public override byte[] getRawData() method getRawData5 (line 124) | public override byte[] getRawData5() method setRawData (line 129) | public override void setRawData(byte[] data) method ToString (line 133) | public override string ToString() FILE: DS_Map/LibNDSFormats/NSBTX/imageindexer.cs class ImageIndexer (line 36) | public class ImageIndexer { method ImageIndexer (line 48) | public ImageIndexer(List bl, bool useAlpha) method ImageIndexer (line 52) | public ImageIndexer(List bl) method ImageIndexer (line 56) | public ImageIndexer(List bl, int paletteCount, bool useAlpha, ... method getTiledImageData (line 196) | public byte[] getTiledImageData() { method getTiledImageDataPart (line 212) | public byte[] getTiledImageDataPart(int px, int py, int ptx, int pty) { method previewImage (line 229) | public Bitmap previewImage(int i) { method closestMultiColor (line 243) | private byte closestMultiColor(MultiColor mc) { method split (line 260) | private void split(Box b) { method median (line 290) | private byte median(List values, int total) { method getDominantBox (line 311) | private Box getDominantBox() { method shrinkBox (line 325) | private Box shrinkBox(Box b) { method reduce (line 348) | public static byte reduce(int c) { class MultiColor (line 357) | private class MultiColor { method MultiColor (line 361) | public MultiColor(int count) { method setColor (line 367) | public void setColor(int i, Color c) { method merge (line 382) | public void merge(MultiColor b) { method getColor (line 391) | public Color getColor(int i) { method allTransparent (line 396) | public bool allTransparent() { method someTransparent (line 401) | public bool someTransparent() { method calcHash (line 408) | public void calcHash() { method GetHashCode (line 428) | public override int GetHashCode() { method Equals (line 432) | public override bool Equals(object obj) { method diff (line 446) | public float diff(MultiColor b) { method removeAllTransparent (line 456) | internal void removeAllTransparent() { class Box (line 465) | private class Box { method Box (line 469) | public Box(byte[] min, byte[] max) { method Box (line 474) | public Box(int count) { method Box (line 483) | public Box(Box b) { method inside (line 488) | public bool inside(MultiColor c) { method dominantDimension (line 497) | public int dominantDimension(Dictionary freqTable) { method dominantDimensionNum (line 503) | public byte dominantDimensionNum(Dictionary freqTab... method setDimMin (line 516) | public void setDimMin(byte d, byte a) { method setDimMax (line 520) | public void setDimMax(byte d, byte a) { method canSplitInDim (line 525) | public bool canSplitInDim(int i, Dictionary freqTab... method canSplit (line 546) | public bool canSplit(Dictionary freqTable) { method canSplit2 (line 554) | public bool canSplit2(Dictionary freqTable) { method center (line 579) | public MultiColor center() { method ToString (line 586) | public override string ToString() { method arr2str (line 591) | private string arr2str(byte[] a) { class byteint (line 599) | private class byteint : IComparable { method byteint (line 602) | public byteint(byte b, int i) { method CompareTo (line 607) | public int CompareTo(object obj) { method ToString (line 619) | public override string ToString() { method createPaletteForImage (line 629) | public static Color[] createPaletteForImage(Bitmap b) { method createPaletteForImage (line 633) | public static Color[] createPaletteForImage(Bitmap b, int palLen) { method createPaletteForImage (line 637) | public static Color[] createPaletteForImage(Bitmap b, int palLen, bool... method indexImageWithPalette (line 646) | public static byte[] indexImageWithPalette(Bitmap b, Color[] palette) { method indexImageWithPalette2 (line 669) | public static byte[] indexImageWithPalette2(Bitmap b, Color[] palette) { method colorDifference (line 692) | public static float colorDifference(Color a, Color b) { method colorDifferenceWithoutAlpha (line 706) | public static float colorDifferenceWithoutAlpha(Color a, Color b) { method closest (line 719) | public static byte closest(Color c, Color[] palette) { FILE: DS_Map/LibNDSFormats/NSBTX/imagetexeler.cs class ImageTexeler (line 9) | public class ImageTexeler method ImageTexeler (line 161) | public ImageTexeler(Bitmap img, int paletteMaxNum, ref System.Componen... class LockBitmap (line 390) | public class LockBitmap method LockBitmap (line 401) | public LockBitmap(Bitmap source) method LockBits (line 409) | public void LockBits() method UnlockBits (line 453) | public void UnlockBits() method GetPixel (line 475) | public Color GetPixel(int x, int y) method SetPixel (line 518) | public void SetPixel(int x, int y, Color color) method contains (line 546) | public int contains(Color[][] c, Color[] a) method transparentToTheEnd (line 580) | private void transparentToTheEnd(Color[] pal) method calcPaletteDiffs (line 597) | public int calcPaletteDiffs(int pal) method countUsedPalettes (line 616) | public int countUsedPalettes() method palDif (line 626) | public float palDif(Color[] a, Color[] b) method palDifUni (line 631) | public float palDifUni(Color[] a, Color[] b) method palMerge (line 665) | public Color[] palMerge(Color[] a, Color[] b) method getClosestColor (line 726) | public int getClosestColor(Color c, Color[] pal) method getClosestColorWithAlpha (line 743) | public int getClosestColorWithAlpha(Color c, Color[] pal) FILE: DS_Map/LibNDSFormats/NSBTX/imagetiler.cs class ImageTiler (line 26) | class ImageTiler method ImageTiler (line 38) | public ImageTiler(Bitmap b, int tilenr) method mergeTiles (line 182) | private void mergeTiles(int t1, int t2) method countUsedTiles (line 196) | private int countUsedTiles() method fillDiffs (line 212) | private int fillDiffs(int tile) method colorDifference (line 233) | private static float colorDifference(Color a, Color b) method colorMatrixDiff (line 249) | private static float colorMatrixDiff(Color[,] a, Color[,] b) method colorMatrixBorderDiff (line 260) | private static float colorMatrixBorderDiff(Color[,] a, Color[,] b) method colorMatrixReduce (line 275) | private static Color[,] colorMatrixReduce(Color[,] m) method mean (line 288) | private static int mean(int a, int b, int wa, int wb) method colorMean (line 293) | public static Color colorMean(Color a, Color b, int wa, int wb) class TileDiff (line 303) | private class TileDiff : IComparable method CompareTo (line 308) | public int CompareTo(TileDiff t) class Tile (line 315) | private class Tile method Tile (line 320) | public Tile(Bitmap b, int xp, int yp) method makeReductions (line 335) | private void makeReductions() method difference (line 340) | public float difference(Tile b) method merge (line 350) | public void merge(Tile b) FILE: DS_Map/LibNDSFormats/NSBTX/inlinefile.cs class InlineFile (line 7) | public class InlineFile : File type CompressionType (line 14) | public enum CompressionType : int method InlineFile (line 21) | public InlineFile(File parent, int offs, int len, string name, Directo... method InlineFile (line 27) | public InlineFile(File parent, int offs, int len, string name, Directo... method getContents (line 39) | public override byte[] getContents() method replace (line 55) | public override void replace(byte[] newFile, object editor) method beginEdit (line 73) | public override void beginEdit(object editor) method endEdit (line 79) | public override void endEdit(object editor) method refreshOffsets (line 85) | public override void refreshOffsets() method saveOffsets (line 91) | public override void saveOffsets() method enableEdition (line 95) | public override void enableEdition() FILE: DS_Map/LibNDSFormats/NSBTX/nsbmetileset.cs class NSMBTileset (line 147) | public class NSMBTileset method toRGB15 (line 350) | public static ushort toRGB15(Color c) method fromRGB15 (line 364) | public static Color fromRGB15(ushort c) method paletteToRawData (line 372) | public static byte[] paletteToRawData(Color[] pal) class ObjectDef (line 665) | public class ObjectDef method ObjectDef (line 672) | public ObjectDef(NSMBTileset t) method save (line 706) | public void save(ByteArrayOutputStream outp) class ObjectDefTile (line 718) | public class ObjectDefTile method ObjectDefTile (line 749) | public ObjectDefTile(NSMBTileset t) { this.t = t; } method write (line 770) | public void write(ByteArrayOutputStream outp) FILE: DS_Map/LibNDSFormats/NSBTX/nsbtx.cs class NSBTX (line 30) | public class NSBTX { method NSBTX (line 45) | public NSBTX(DSFileSystem.File f) method close (line 207) | public void close() { method save (line 211) | public byte[] save() { class PaletteDef (line 216) | public class PaletteDef : IComparable { method CompareTo (line 220) | public int CompareTo(PaletteDef b) { class NSBTX_File (line 225) | public class NSBTX_File { type TextureFormat (line 226) | public enum TextureFormat : byte { type Header (line 240) | public struct Header { type TextureInformation (line 249) | public struct TextureInformation { type CompressedTextureInformation (line 256) | public struct CompressedTextureInformation { type PaletteInformation (line 264) | public struct PaletteInformation { type TEX0 (line 272) | public struct TEX0 { type UnknownBlock (line 278) | public struct UnknownBlock { type TexInfo_Master (line 286) | public struct TexInfo_Master { type Info (line 294) | public struct Info { type TexInfo (line 295) | public struct TexInfo { type PalInfo_Master (line 327) | public struct PalInfo_Master { type Info (line 334) | public struct Info { type PalInfo (line 335) | public struct PalInfo { method NSBTX_File (line 350) | public NSBTX_File(FileStream f) { method GetBitmap (line 549) | public (Bitmap bmp, int ctrlCode) GetBitmap(int imageIndex, int palInd... method ToByteArray (line 665) | public byte[] ToByteArray() { method convert_4x4texel (line 803) | public bool convert_4x4texel(uint[] tex, int width, int height, ushort... method convert_4x4texel_b (line 884) | public void convert_4x4texel_b(byte[] tex, int width, int height, byte... method AnalyzeRepetitions (line 899) | internal HashSet<(byte f1, byte f2)> AnalyzeRepetitions() { class DupFrameHashSetComparer (line 918) | public class DupFrameHashSetComparer : IEqualityComparer x, HashSet<(byte f1, ... method GetHashCode (line 925) | public int GetHashCode(HashSet<(byte f1, byte f2)> obj) { FILE: DS_Map/LibNDSFormats/NSBTX/palettedimage.cs class PalettedImage (line 5) | public abstract class PalettedImage method render (line 9) | public abstract Bitmap render(Palette p); method replaceWithPal (line 10) | public abstract void replaceWithPal(Bitmap b, Palette p); method replaceImgAndPal (line 11) | public abstract void replaceImgAndPal(Bitmap b, Palette p); method supportsReplaceWithPal (line 12) | public bool supportsReplaceWithPal() { return true; } method save (line 13) | public abstract void save(); method getWidth (line 14) | public abstract int getWidth(); method getHeight (line 15) | public abstract int getHeight(); method close (line 16) | public abstract void close(); method getRawData (line 24) | public abstract byte[] getRawData(); method getRawData5 (line 25) | public abstract byte[] getRawData5(); method setRawData (line 26) | public abstract void setRawData(byte[] data); FILE: DS_Map/LibNDSFormats/NSBTX/pallete2.cs class Palette (line 8) | public abstract class Palette method save (line 12) | public abstract void save(); method getRawData (line 13) | public abstract byte[] getRawData(); method close (line 14) | public abstract void close(); method getClosestColor (line 16) | public int getClosestColor(Color c) method getColorSafe (line 37) | public Color getColorSafe(int ind) FILE: DS_Map/LibNDSFormats/NSBTX/pixelpalletedimage.cs class PixelPalettedImage (line 8) | public abstract class PixelPalettedImage : PalettedImage method replaceImgAndPal (line 10) | public override void replaceImgAndPal(Bitmap b, Palette p) method replaceWithPal (line 16) | public override void replaceWithPal(Bitmap b, Palette p) method render (line 29) | public override Bitmap render(Palette p) method setPixelData (line 46) | public void setPixelData(byte[,] a, int xx, int yy) method setPixelData (line 58) | public void setPixelData(int[,] a, int xx, int yy) method setPixel (line 70) | public abstract void setPixel(int x, int y, int c); method getPixel (line 71) | public abstract int getPixel(int x, int y); FILE: DS_Map/LibNDSFormats/StreamExt.cs class StreamExt (line 24) | static class StreamExt { method GetRemainingLength (line 32) | public static long GetRemainingLength(this Stream stream) { method Skip (line 40) | public static void Skip(this Stream stream, long skipCount) { method Skip (line 48) | public static void Skip(this Stream stream, uint skipCount) { FILE: DS_Map/LibNDSFormats/Utils.cs class Utils (line 27) | public static class Utils { method ReadNSBMDString (line 37) | public static string ReadNSBMDString(EndianBinaryReader reader) { method Read2BytesAsushort (line 50) | public static ushort Read2BytesAsushort(byte[] bytes, int offset) { method Read2BytesAsInt16 (line 63) | public static Int16 Read2BytesAsInt16(byte[] bytes, int offset) { method Read3BytesAsInt24 (line 76) | public static int Read3BytesAsInt24(byte[] bytes, int offset) { method Read4BytesAsInt32 (line 89) | public static int Read4BytesAsInt32(byte[] bytes, int offset) { method Read4BytesAsFloat (line 101) | public static float Read4BytesAsFloat(byte[] bytes, int offset) { method Read4BytesAsUInt32 (line 114) | public static UInt32 Read4BytesAsUInt32(byte[] bytes, int offset) { FILE: DS_Map/LibNDSFormats/bytearrayoutputstream.cs class ByteArrayOutputStream (line 23) | public class ByteArrayOutputStream { method ByteArrayOutputStream (line 30) | public ByteArrayOutputStream() { method getPos (line 33) | public int getPos() { method getArray (line 37) | public byte[] getArray() { method writeByte (line 43) | public void writeByte(byte b) { method writeUShort (line 51) | public void writeUShort(ushort u) { method writeUInt (line 55) | public void writeUInt(uint u) { method writeInt (line 62) | public void writeInt(int i) { method writeLong (line 66) | public void writeLong(long u) { method align (line 77) | public void align(int m) { method grow (line 82) | private void grow() { method write (line 88) | public void write(byte[] ar) { FILE: DS_Map/LibNDSFormats/convertir.cs class Convertir (line 30) | public static class Convertir { method BGR555ToColorArray (line 37) | public static Color[] BGR555ToColorArray(this byte[] bytes) { method ColorArrayToBGR555 (line 45) | public static byte[] ColorArrayToBGR555(this Color[] palette) { method ToBGR555 (line 55) | public static (byte b1, byte b2) ToBGR555(this Color c) { method BGR555ToColor (line 65) | public static Color BGR555ToColor(byte byte1, byte byte2) { method BytesToTiles_NoChanged (line 82) | public static byte[][] BytesToTiles_NoChanged(byte[] bytes, int tilesX... method decodeColor (line 117) | public static int decodeColor(int value, nclr_e.CColorFormat format) { method TilesToBytes (line 164) | public static byte[] TilesToBytes(byte[][] tiles) { method BytesToTiles (line 179) | public static byte[][] BytesToTiles(byte[] bytes) { method Bit4ToBit8 (line 201) | public static Byte[] Bit4ToBit8(byte[] bits4) { method Bit8ToBit4 (line 219) | public static Byte[] Bit8ToBit4(byte[] bits8) { method ModificarGif (line 240) | public static void ModificarGif(string gif, int delay, int loops) { method CrearGif (line 303) | public static void CrearGif(string fout, Image[] frames, int delay, in... FILE: DS_Map/LibNDSFormats/nclr_e.cs class nclr_e (line 12) | public partial class nclr_e : Form { method nclr_e (line 19) | public nclr_e(Color[] c, bool bpp8, uint unknown) { method nclr_e (line 24) | public nclr_e() { method decodeColor (line 27) | public int decodeColor(int value, CColorFormat format) { method encodeColor (line 68) | public static int encodeColor(int value, CColorFormat format) { class CColorFormat (line 119) | public class CColorFormat { method CColorFormat (line 121) | public CColorFormat(String name, int id, int depth, int[] res) { method ToString (line 128) | public override string ToString() { method GetName (line 132) | public string GetName() { method getId (line 136) | public int getId() { method getDepth (line 140) | public int getDepth() { method getResolution (line 144) | public int[] getResolution() { method getWidth (line 148) | public int getWidth(int field) { FILE: DS_Map/Main Window.Designer.cs class MainProgram (line 3) | partial class MainProgram method Dispose (line 14) | protected override void Dispose(bool disposing) method InitializeComponent (line 29) | private void InitializeComponent() FILE: DS_Map/Main Window.cs class MainProgram (line 34) | public partial class MainProgram : Form { method MainProgram (line 36) | public MainProgram() { method MainProgram_FormClosing (line 69) | private void MainProgram_FormClosing(object sender, FormClosingEventAr... method GetBuildingsList (line 75) | private string[] GetBuildingsList(bool interior) { method GetTrainerNames (line 88) | private string[] GetTrainerNames() { method PaintGameIcon (line 114) | private void PaintGameIcon(object sender, PaintEventArgs e) { method updateBuildingListComboBox (line 209) | private void updateBuildingListComboBox(bool interior) { method SetupTextEditor (line 220) | private void SetupTextEditor() { method UnpackRomCheckUserChoice (line 240) | private int UnpackRomCheckUserChoice() { method UnpackRom (line 265) | private bool UnpackRom(string ndsFileName) { method GetDSPREVersion (line 296) | public string GetDSPREVersion() { method romToolBoxToolStripMenuItem_Click (line 301) | private void romToolBoxToolStripMenuItem_Click(object sender, EventArg... method UpdateItemComboBox (line 314) | private void UpdateItemComboBox(string[] itemNames) { method scriptCommandsDatabaseToolStripButton_Click (line 325) | private void scriptCommandsDatabaseToolStripButton_Click(object sender... method nsbmdExportTexButton_Click (line 328) | private void nsbmdExportTexButton_Click(object sender, EventArgs e) { method nsbmdRemoveTexButton_Click (line 356) | private void nsbmdRemoveTexButton_Click(object sender, EventArgs e) { method nsbmdAddTexButton_Click (line 400) | private void nsbmdAddTexButton_Click(object sender, EventArgs e) { method OpenCommandsDatabase (line 446) | private void OpenCommandsDatabase(Dictionary namesDict... method headerSearchToolStripButton_Click (line 454) | private void headerSearchToolStripButton_Click(object sender, EventArg... method advancedHeaderSearchToolStripMenuItem_Click (line 460) | private void advancedHeaderSearchToolStripMenuItem_Click(object sender... method buildingEditorButton_Click (line 463) | private void buildingEditorButton_Click(object sender, EventArgs e) { method unpackBuildingEditorNARCs (line 469) | private void unpackBuildingEditorNARCs(bool forceUnpack = false) { method aboutToolStripMenuItem_Click (line 504) | private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { method loadRom_Click (line 514) | private void loadRom_Click(object sender, EventArgs e) { method CheckROMLanguage (line 585) | private void CheckROMLanguage() { method readDataFromFolderButton_Click (line 601) | private void readDataFromFolderButton_Click(object sender, EventArgs e) { method SetupROMLanguage (line 631) | private void SetupROMLanguage(string headerPath) { method ReadROMInitData (line 639) | private void ReadROMInitData() { method saveRom_Click (line 688) | private void saveRom_Click(object sender, EventArgs e) { method unpackAllButton_Click (line 760) | private void unpackAllButton_Click(object sender, EventArgs e) { method updateMapNarcsButton_Click (line 794) | private void updateMapNarcsButton_Click(object sender, EventArgs e) { method diamondAndPearlToolStripMenuItem_Click (line 815) | private void diamondAndPearlToolStripMenuItem_Click(object sender, Eve... method platinumToolStripMenuItem_Click (line 819) | private void platinumToolStripMenuItem_Click(object sender, EventArgs ... method heartGoldAndSoulSilverToolStripMenuItem_Click (line 823) | private void heartGoldAndSoulSilverToolStripMenuItem_Click(object send... method mainTabControl_SelectedIndexChanged (line 827) | private void mainTabControl_SelectedIndexChanged(object sender, EventA... method tabPageScriptEditor_Enter (line 882) | private void tabPageScriptEditor_Enter(object sender, EventArgs e) { method tabPageLevelScriptEditor_Enter (line 886) | private void tabPageLevelScriptEditor_Enter(object sender, EventArgs e) { method tabPageEncountersEditor_Enter (line 890) | private void tabPageEncountersEditor_Enter(object sender, EventArgs e) { method spawnEditorToolStripButton_Click (line 894) | private void spawnEditorToolStripButton_Click(object sender, EventArgs... method spawnEditorToolStripMenuItem_Click (line 902) | private void spawnEditorToolStripMenuItem_Click(object sender, EventAr... method wildEditorButton_Click (line 905) | private void wildEditorButton_Click(object sender, EventArgs e) { method openWildEditorWithIdButtonClick (line 908) | private void openWildEditorWithIdButtonClick(object sender, EventArgs ... method openWildEditor (line 911) | private void openWildEditor(bool loadCurrent) { method SetupHeaderEditor (line 945) | private void SetupHeaderEditor() { method addHeaderBTN_Click (line 1043) | private void addHeaderBTN_Click(object sender, EventArgs e) { method removeLastHeaderBTN_Click (line 1061) | private void removeLastHeaderBTN_Click(object sender, EventArgs e) { method areaDataUpDown_ValueChanged (line 1084) | private void areaDataUpDown_ValueChanged(object sender, EventArgs e) { method internalNameBox_TextChanged (line 1090) | private void internalNameBox_TextChanged(object sender, EventArgs e) { method areaIconComboBox_SelectedIndexChanged (line 1101) | private void areaIconComboBox_SelectedIndexChanged(object sender, Even... method eventFileUpDown_ValueChanged (line 1122) | private void eventFileUpDown_ValueChanged(object sender, EventArgs e) { method battleBackgroundUpDown_ValueChanged (line 1128) | private void battleBackgroundUpDown_ValueChanged(object sender, EventA... method followModeComboBox_SelectedIndexChanged (line 1131) | private void followModeComboBox_SelectedIndexChanged(object sender, Ev... method kantoRadioButton_CheckedChanged (line 1142) | private void kantoRadioButton_CheckedChanged(object sender, EventArgs ... method headerFlagsCheckBoxes_CheckedChanged (line 1151) | private void headerFlagsCheckBoxes_CheckedChanged(object sender, Event... method headerListBox_SelectedValueChanged (line 1179) | private void headerListBox_SelectedValueChanged(object sender, EventAr... method RefreshHeaderEditorFields (line 1199) | private void RefreshHeaderEditorFields() { method RefreshFlags (line 1263) | private void RefreshFlags() { method eventsTabControl_SelectedIndexChanged (line 1277) | private void eventsTabControl_SelectedIndexChanged(object sender, Even... method headerListBox_Leave (line 1312) | private void headerListBox_Leave(object sender, EventArgs e) { method levelScriptUpDown_ValueChanged (line 1318) | private void levelScriptUpDown_ValueChanged(object sender, EventArgs e) { method mapNameComboBox_SelectedIndexChanged (line 1324) | private void mapNameComboBox_SelectedIndexChanged(object sender, Event... method matrixUpDown_ValueChanged (line 1341) | private void matrixUpDown_ValueChanged(object sender, EventArgs e) { method openScriptButton_Click (line 1348) | private void openScriptButton_Click(object sender, EventArgs e) { method openLevelScriptButton_Click (line 1352) | private void openLevelScriptButton_Click(object sender, EventArgs e) { method musicDayComboBox_SelectedIndexChanged (line 1356) | private void musicDayComboBox_SelectedIndexChanged(object sender, Even... method musicNightComboBox_SelectedIndexChanged (line 1372) | private void musicNightComboBox_SelectedIndexChanged(object sender, Ev... method musicDayUpDown_ValueChanged (line 1389) | private void musicDayUpDown_ValueChanged(object sender, EventArgs e) { method musicNightUpDown_ValueChanged (line 1414) | private void musicNightUpDown_ValueChanged(object sender, EventArgs e) { method worldmapXCoordUpDown_ValueChanged (line 1439) | private void worldmapXCoordUpDown_ValueChanged(object sender, EventArg... method worldmapYCoordUpDown_ValueChanged (line 1442) | private void worldmapYCoordUpDown_ValueChanged(object sender, EventArg... method updateWeatherPicAndComboBox (line 1445) | private void updateWeatherPicAndComboBox() { method updateCameraPicAndComboBox (line 1498) | private void updateCameraPicAndComboBox() { method weatherComboBox_SelectedIndexChanged (line 1545) | private void weatherComboBox_SelectedIndexChanged(object sender, Event... method weatherUpDown_ValueChanged (line 1563) | private void weatherUpDown_ValueChanged(object sender, EventArgs e) { method cameraComboBox_SelectedIndexChanged (line 1567) | private void cameraComboBox_SelectedIndexChanged(object sender, EventA... method cameraUpDown_ValueChanged (line 1585) | private void cameraUpDown_ValueChanged(object sender, EventArgs e) { method openAreaDataButton_Click (line 1589) | private void openAreaDataButton_Click(object sender, EventArgs e) { method openEventsButton_Click (line 1604) | private void openEventsButton_Click(object sender, EventArgs e) { method openMatrixButton_Click (line 1620) | private void openMatrixButton_Click(object sender, EventArgs e) { method openTextArchiveButton_Click (line 1643) | private void openTextArchiveButton_Click(object sender, EventArgs e) { method saveHeaderButton_Click (line 1651) | private void saveHeaderButton_Click(object sender, EventArgs e) { method StringToInternalName (line 1666) | private byte[] StringToInternalName(string text) { method updateCurrentInternalName (line 1672) | private void updateCurrentInternalName() { method updateHeaderNameShown (line 1688) | private void updateHeaderNameShown(int thisIndex) { method resetButton_Click (line 1696) | private void resetButton_Click(object sender, EventArgs e) { method resetHeaderSearch (line 1700) | void resetHeaderSearch() { method searchHeaderTextBox_KeyPress (line 1706) | private void searchHeaderTextBox_KeyPress(object sender, KeyEventArgs ... method searchHeaderButton_Click (line 1711) | private void searchHeaderButton_Click(object sender, EventArgs e) { method startSearchGameLocation (line 1714) | private void startSearchGameLocation() { method PrintMapHeadersSummary (line 1759) | private void PrintMapHeadersSummary() { method scriptFileUpDown_ValueChanged (line 1821) | private void scriptFileUpDown_ValueChanged(object sender, EventArgs e) { method areaSettingsComboBox_SelectedIndexChanged (line 1827) | private void areaSettingsComboBox_SelectedIndexChanged(object sender, ... method textFileUpDown_ValueChanged (line 1834) | private void textFileUpDown_ValueChanged(object sender, EventArgs e) { method wildPokeUpDown_ValueChanged (line 1841) | private void wildPokeUpDown_ValueChanged(object sender, EventArgs e) { method importHeaderFromFileButton_Click (line 1858) | private void importHeaderFromFileButton_Click(object sender, EventArgs... method exportHeaderToFileButton_Click (line 1901) | private void exportHeaderToFileButton_Click(object sender, EventArgs e) { method copyHeaderButton_Click (line 1949) | private void copyHeaderButton_Click(object sender, EventArgs e) { method copyInternalNameButton_Click (line 2004) | private void copyInternalNameButton_Click(object sender, EventArgs e) { method copyLocationNameButton_Click (line 2009) | private void copyLocationNameButton_Click(object sender, EventArgs e) { method copyAreaSettingsButton_Click (line 2013) | private void copyAreaSettingsButton_Click(object sender, EventArgs e) { method copyAreaIconButton_Click (line 2017) | private void copyAreaIconButton_Click(object sender, EventArgs e) { method copyWildEncountersButton_Click (line 2021) | private void copyWildEncountersButton_Click(object sender, EventArgs e) { method copyMusicDayButton_Click (line 2026) | private void copyMusicDayButton_Click(object sender, EventArgs e) { method copyWeatherButton_Click (line 2030) | private void copyWeatherButton_Click(object sender, EventArgs e) { method copyMusicNightButton_Click (line 2034) | private void copyMusicNightButton_Click(object sender, EventArgs e) { method copyCameraAngleButton_Click (line 2038) | private void copyCameraAngleButton_Click(object sender, EventArgs e) { method copyScriptsButton_Click (line 2042) | private void copyScriptsButton_Click(object sender, EventArgs e) { method copyLevelScriptsButton_Click (line 2047) | private void copyLevelScriptsButton_Click(object sender, EventArgs e) { method copyEventsButton_Click (line 2052) | private void copyEventsButton_Click(object sender, EventArgs e) { method copyTextsButton_Click (line 2057) | private void copyTextsButton_Click(object sender, EventArgs e) { method copyMatrixButton_Click (line 2062) | private void copyMatrixButton_Click(object sender, EventArgs e) { method copyAreaDataButton_Click (line 2067) | private void copyAreaDataButton_Click(object sender, EventArgs e) { method worldmapCoordsCopyButton_Click (line 2072) | private void worldmapCoordsCopyButton_Click(object sender, EventArgs e) { method copyMapSettingsButton_Click (line 2077) | private void copyMapSettingsButton_Click(object sender, EventArgs e) { method pasteHeaderButton_Click (line 2086) | private void pasteHeaderButton_Click(object sender, EventArgs e) { method pasteInternalNameButton_Click (line 2112) | private void pasteInternalNameButton_Click(object sender, EventArgs e) { method pasteLocationNameButton_Click (line 2115) | private void pasteLocationNameButton_Click(object sender, EventArgs e) { method pasteAreaSettingsButton_Click (line 2118) | private void pasteAreaSettingsButton_Click(object sender, EventArgs e) { method pasteAreaIconButton_Click (line 2121) | private void pasteAreaIconButton_Click(object sender, EventArgs e) { method pasteWildEncountersButton_Click (line 2126) | private void pasteWildEncountersButton_Click(object sender, EventArgs ... method pasteMusicDayButton_Click (line 2129) | private void pasteMusicDayButton_Click(object sender, EventArgs e) { method pasteScriptsButton_Click (line 2132) | private void pasteScriptsButton_Click(object sender, EventArgs e) { method pasteLevelScriptsButton_Click (line 2135) | private void pasteLevelScriptsButton_Click(object sender, EventArgs e) { method pasteEventsButton_Click (line 2138) | private void pasteEventsButton_Click(object sender, EventArgs e) { method pasteTextsButton_Click (line 2141) | private void pasteTextsButton_Click(object sender, EventArgs e) { method pasteMatrixButton_Click (line 2144) | private void pasteMatrixButton_Click(object sender, EventArgs e) { method pasteAreaDataButton_Click (line 2147) | private void pasteAreaDataButton_Click(object sender, EventArgs e) { method pasteWeatherButton_Click (line 2150) | private void pasteWeatherButton_Click(object sender, EventArgs e) { method pasteMusicNightButton_Click (line 2153) | private void pasteMusicNightButton_Click(object sender, EventArgs e) { method pasteCameraAngleButton_Click (line 2156) | private void pasteCameraAngleButton_Click(object sender, EventArgs e) { method worldmapCoordsPasteButton_Click (line 2159) | private void worldmapCoordsPasteButton_Click(object sender, EventArgs ... method pasteMapSettingsButton_Click (line 2163) | private void pasteMapSettingsButton_Click(object sender, EventArgs e) { method ClearMatrixTables (line 2180) | private void ClearMatrixTables() { method FormatMapCell (line 2190) | private (Color background, Color foreground) FormatMapCell(uint cellVa... method GenerateMatrixTables (line 2197) | private void GenerateMatrixTables() { method SetupMatrixEditor (line 2250) | private void SetupMatrixEditor() { method addHeaderSectionButton_Click (line 2274) | private void addHeaderSectionButton_Click(object sender, EventArgs e) { method addHeightsButton_Click (line 2280) | private void addHeightsButton_Click(object sender, EventArgs e) { method addMatrixButton_Click (line 2286) | private void addMatrixButton_Click(object sender, EventArgs e) { method exportMatrixButton_Click (line 2300) | private void exportMatrixButton_Click(object sender, EventArgs e) { method saveMatrixButton_Click (line 2303) | private void saveMatrixButton_Click(object sender, EventArgs e) { method headersGridView_SelectionChanged (line 2309) | private void headersGridView_SelectionChanged(object sender, EventArgs... method heightsGridView_SelectionChanged (line 2313) | private void heightsGridView_SelectionChanged(object sender, EventArgs... method mapFilesGridView_SelectionChanged (line 2317) | private void mapFilesGridView_SelectionChanged(object sender, EventArg... method DisplaySelection (line 2320) | private void DisplaySelection(DataGridViewSelectedCellCollection selec... method headersGridView_CellMouseDoubleClick (line 2325) | private void headersGridView_CellMouseDoubleClick(object sender, DataG... method headersGridView_CellValueChanged (line 2336) | private void headersGridView_CellValueChanged(object sender, DataGridV... method headersGridView_CellFormatting (line 2354) | private void headersGridView_CellFormatting(object sender, DataGridVie... method heightsGridView_CellValueChanged (line 2378) | private void heightsGridView_CellValueChanged(object sender, DataGridV... method widthUpDown_ValueChanged (line 2393) | private void widthUpDown_ValueChanged(object sender, EventArgs e) { method heightUpDown_ValueChanged (line 2431) | private void heightUpDown_ValueChanged(object sender, EventArgs e) { method heightsGridView_CellFormatting (line 2468) | private void heightsGridView_CellFormatting(object sender, DataGridVie... method importMatrixButton_Click (line 2494) | private void importMatrixButton_Click(object sender, EventArgs e) { method mapFilesGridView_CellMouseDoubleClick (line 2531) | private void mapFilesGridView_CellMouseDoubleClick(object sender, Data... method mapFilesGridView_CellValueChanged (line 2656) | private void mapFilesGridView_CellValueChanged(object sender, DataGrid... method mapFilesGridView_CellFormatting (line 2671) | private void mapFilesGridView_CellFormatting(object sender, DataGridVi... method matrixNameTextBox_TextChanged (line 2689) | private void matrixNameTextBox_TextChanged(object sender, EventArgs e) { method removeHeadersButton_Click (line 2695) | private void removeHeadersButton_Click(object sender, EventArgs e) { method removeHeightsButton_Click (line 2699) | private void removeHeightsButton_Click(object sender, EventArgs e) { method removeMatrixButton_Click (line 2703) | private void removeMatrixButton_Click(object sender, EventArgs e) { method setSpawnPointButton_Click (line 2729) | private void setSpawnPointButton_Click(object sender, EventArgs e) { method selectMatrixComboBox_SelectedIndexChanged (line 2776) | private void selectMatrixComboBox_SelectedIndexChanged(object sender, ... method importColorTableButton_Click (line 2791) | private void importColorTableButton_Click(object sender, EventArgs e) { method ReadColorTable (line 2802) | private bool ReadColorTable(string fileName, bool silent) { method Swap (line 2924) | public void Swap(ref uint a, ref uint b) { method resetColorTableButton_Click (line 2929) | private void resetColorTableButton_Click(object sender, EventArgs e) { method FillBuildingsBox (line 3005) | private void FillBuildingsBox() { method MW_LoadModelTextures (line 3028) | private void MW_LoadModelTextures(NSBMD model, string textureFolder, i... method RenderMap (line 3038) | private void RenderMap(ref NSBMDGlRenderer mapRenderer, ref NSBMDGlRen... method ScaleTranslateRotateBuilding (line 3085) | private void ScaleTranslateRotateBuilding(Building building) { method SetupRenderer (line 3099) | private void SetupRenderer(float ang, float dist, float elev, float pe... method SetupMapEditor (line 3138) | private void SetupMapEditor() { method addMapFileButton_Click (line 3264) | private void addMapFileButton_Click(object sender, EventArgs e) { method replaceMapBinButton_Click (line 3272) | private void replaceMapBinButton_Click(object sender, EventArgs e) { method UpdateMapBinAndRefresh (line 3304) | private void UpdateMapBinAndRefresh(MapFile newerVersion, string messa... method buildTextureComboBox_SelectedIndexChanged (line 3317) | private void buildTextureComboBox_SelectedIndexChanged(object sender, ... method mapTextureComboBox_SelectedIndexChanged (line 3357) | private void mapTextureComboBox_SelectedIndexChanged(object sender, Ev... method mapEditorTabPage_Enter (line 3375) | private void mapEditorTabPage_Enter(object sender, EventArgs e) { method mapOpenGlControl_MouseWheel (line 3380) | private void mapOpenGlControl_MouseWheel(object sender, MouseEventArgs... method mapOpenGlControl_PreviewKeyDown (line 3387) | private void mapOpenGlControl_PreviewKeyDown(object sender, PreviewKey... method mapOpenGlControl_KeyUp (line 3433) | private void mapOpenGlControl_KeyUp(object sender, KeyEventArgs e) { method mapOpenGlControl_Click (line 3449) | private void mapOpenGlControl_Click(object sender, EventArgs e) { method bldRoundWhole_CheckedChanged (line 3462) | private void bldRoundWhole_CheckedChanged(object sender, EventArgs e) { method bldRoundDec_CheckedChanged (line 3465) | private void bldRoundDec_CheckedChanged(object sender, EventArgs e) { method bldRoundCent_CheckedChanged (line 3468) | private void bldRoundCent_CheckedChanged(object sender, EventArgs e) { method bldRoundMil_CheckedChanged (line 3471) | private void bldRoundMil_CheckedChanged(object sender, EventArgs e) { method bldRoundDecmil_CheckedChanged (line 3474) | private void bldRoundDecmil_CheckedChanged(object sender, EventArgs e) { method bldRoundCentMil_CheckedChanged (line 3477) | private void bldRoundCentMil_CheckedChanged(object sender, EventArgs e) { method bldPlaceWithMouseCheckbox_CheckedChanged (line 3480) | private void bldPlaceWithMouseCheckbox_CheckedChanged(object sender, E... method bldPlaceLockXcheckbox_CheckedChanged (line 3491) | private void bldPlaceLockXcheckbox_CheckedChanged(object sender, Event... method bldPlaceLockZcheckbox_CheckedChanged (line 3495) | private void bldPlaceLockZcheckbox_CheckedChanged(object sender, Event... method mapPartsTabControl_SelectedIndexChanged (line 3498) | private void mapPartsTabControl_SelectedIndexChanged(object sender, Ev... method radio2D_CheckedChanged (line 3555) | private void radio2D_CheckedChanged(object sender, EventArgs e) { method SetCam2D (line 3569) | private void SetCam2D() { method SetCam3D (line 3579) | private void SetCam3D() { method mapScreenshotButton_Click (line 3589) | private void mapScreenshotButton_Click(object sender, EventArgs e) { method removeLastMapFileButton_Click (line 3613) | private void removeLastMapFileButton_Click(object sender, EventArgs e) { method saveMapButton_Click (line 3628) | private void saveMapButton_Click(object sender, EventArgs e) { method exportCurrentMapBinButton_Click (line 3631) | private void exportCurrentMapBinButton_Click(object sender, EventArgs ... method selectMapComboBox_SelectedIndexChanged (line 3634) | private void selectMapComboBox_SelectedIndexChanged(object sender, Eve... method wireframeCheckBox_CheckedChanged (line 3686) | private void wireframeCheckBox_CheckedChanged(object sender, EventArgs... method addBuildingButton_Click (line 3697) | private void addBuildingButton_Click(object sender, EventArgs e) { method duplicateBuildingButton_Click (line 3701) | private void duplicateBuildingButton_Click(object sender, EventArgs e) { method AddBuildingToMap (line 3707) | private void AddBuildingToMap(Building b) { method buildIndexComboBox_SelectedIndexChanged (line 3723) | private void buildIndexComboBox_SelectedIndexChanged(object sender, Ev... method buildingsListBox_SelectedIndexChanged (line 3739) | private void buildingsListBox_SelectedIndexChanged(object sender, Even... method xRotBuildUpDown_ValueChanged (line 3771) | private void xRotBuildUpDown_ValueChanged(object sender, EventArgs e) { method yRotBuildUpDown_ValueChanged (line 3786) | private void yRotBuildUpDown_ValueChanged(object sender, EventArgs e) { method zRotBuildUpDown_ValueChanged (line 3800) | private void zRotBuildUpDown_ValueChanged(object sender, EventArgs e) { method xRotDegBldUpDown_ValueChanged (line 3814) | private void xRotDegBldUpDown_ValueChanged(object sender, EventArgs e) { method yRotDegBldUpDown_ValueChanged (line 3827) | private void yRotDegBldUpDown_ValueChanged(object sender, EventArgs e) { method zRotDegBldUpDown_ValueChanged (line 3840) | private void zRotDegBldUpDown_ValueChanged(object sender, EventArgs e) { method buildingHeightUpDown_ValueChanged (line 3853) | private void buildingHeightUpDown_ValueChanged(object sender, EventArg... method buildingLengthUpDown_ValueChanged (line 3860) | private void buildingLengthUpDown_ValueChanged(object sender, EventArg... method buildingWidthUpDown_ValueChanged (line 3867) | private void buildingWidthUpDown_ValueChanged(object sender, EventArgs... method exportBuildingsButton_Click (line 3874) | private void exportBuildingsButton_Click(object sender, EventArgs e) { method importBuildingsButton_Click (line 3888) | private void importBuildingsButton_Click(object sender, EventArgs e) { method interiorRadioButton_CheckedChanged (line 3909) | private void interiorRadioButton_CheckedChanged(object sender, EventAr... method removeBuildingButton_Click (line 3936) | private void removeBuildingButton_Click(object sender, EventArgs e) { method xBuildUpDown_ValueChanged (line 3961) | private void xBuildUpDown_ValueChanged(object sender, EventArgs e) { method zBuildUpDown_ValueChanged (line 3979) | private void zBuildUpDown_ValueChanged(object sender, EventArgs e) { method yBuildUpDown_ValueChanged (line 3996) | private void yBuildUpDown_ValueChanged(object sender, EventArgs e) { method GrabMapScreenshot (line 4017) | private Bitmap GrabMapScreenshot(int width, int height) { method DrawCollisionGrid (line 4025) | private void DrawCollisionGrid() { method DrawSmallCollision (line 4042) | private void DrawSmallCollision() { method DrawTypeGrid (line 4059) | private void DrawTypeGrid() { method DrawSmallTypeCollision (line 4084) | private void DrawSmallTypeCollision() { method scanUsedCollisionTypesButton_Click (line 4101) | private void scanUsedCollisionTypesButton_Click(object sender, EventAr... method FindUsedCollisions (line 4120) | private SortedSet FindUsedCollisions() { method FindUnusedCollisions (line 4131) | private SortedSet FindUnusedCollisions() { method EditCell (line 4142) | private void EditCell(int xPosition, int yPosition) { method FloodFillUtil (line 4187) | private void FloodFillUtil(byte[,] screen, int x, int y, byte prevC, b... method FloodFillCell (line 4206) | private void FloodFillCell(int x, int y) { method RestorePainter (line 4228) | private void RestorePainter() { method PrepareCollisionPainterGraphics (line 4237) | private void PrepareCollisionPainterGraphics(byte collisionValue) { method PrepareTypePainterGraphics (line 4277) | private void PrepareTypePainterGraphics(byte typeValue) { method clearCurrentButton_Click (line 4438) | private void clearCurrentButton_Click(object sender, EventArgs e) { method collisionPictureBox_Click (line 4468) | private void collisionPictureBox_Click(object sender, EventArgs e) { method exportMovButton_Click (line 4477) | private void exportMovButton_Click(object sender, EventArgs e) { method importMovButton_Click (line 4490) | private void importMovButton_Click(object sender, EventArgs e) { method movPictureBox_Click (line 4512) | private void movPictureBox_Click(object sender, EventArgs e) { method movPictureBox_MouseMove (line 4533) | private void movPictureBox_MouseMove(object sender, MouseEventArgs e) { method collisionPainterComboBox_SelectedIndexChange (line 4538) | private void collisionPainterComboBox_SelectedIndexChange(object sende... method typePainterComboBox_SelectedIndexChanged (line 4545) | private void typePainterComboBox_SelectedIndexChanged(object sender, E... method StringToCollisionByte (line 4553) | private byte? StringToCollisionByte(string selectedItem) { method typePainterUpDown_ValueChanged (line 4563) | private void typePainterUpDown_ValueChanged(object sender, EventArgs e) { method updateCollisions (line 4566) | private void updateCollisions(byte typeValue) { method updateTypeCollisions (line 4586) | private void updateTypeCollisions(byte typeValue) { method typePictureBox_Click (line 4609) | private void typePictureBox_Click(object sender, EventArgs e) { method typesRadioButton_CheckedChanged (line 4618) | private void typesRadioButton_CheckedChanged(object sender, EventArgs ... method valueTypeRadioButton_CheckedChanged (line 4625) | private void valueTypeRadioButton_CheckedChanged(object sender, EventA... method importMapButton_Click (line 4637) | private void importMapButton_Click(object sender, EventArgs e) { method exportMapButton_Click (line 4667) | private void exportMapButton_Click(object sender, EventArgs e) { method daeExportButton_Click (line 4696) | private void daeExportButton_Click(object sender, EventArgs e) { method glbExportButton_Click (line 4704) | private void glbExportButton_Click(object sender, EventArgs e) { method bdhcImportButton_Click (line 4714) | private void bdhcImportButton_Click(object sender, EventArgs e) { method bdhcExportButton_Click (line 4727) | private void bdhcExportButton_Click(object sender, EventArgs e) { method soundPlatesImportButton_Click (line 4745) | private void soundPlatesImportButton_Click(object sender, EventArgs e) { method soundPlatesExportButton_Click (line 4758) | private void soundPlatesExportButton_Click(object sender, EventArgs e) { method soundPlatesBlankButton_Click (line 4772) | private void soundPlatesBlankButton_Click(object sender, EventArgs e) { method itemsSelectorHelpBtn_Click (line 4804) | private void itemsSelectorHelpBtn_Click(object sender, EventArgs e) { method CenterEventViewOnEntities (line 4810) | private void CenterEventViewOnEntities() { method centerEventViewOnSelectedEvent_Click (line 4836) | private void centerEventViewOnSelectedEvent_Click(object sender, Event... method eventPictureBox_MouseMove (line 4918) | private void eventPictureBox_MouseMove(object sender, MouseEventArgs e) { method DisplayActiveEvents (line 4924) | private void DisplayActiveEvents() { method DrawWarpCollisions (line 5004) | private void DrawWarpCollisions(Graphics g) { method DrawSelectionRectangle (line 5021) | private void DrawSelectionRectangle(Graphics g, Event ev) { method DrawSelectionRectangleTrigger (line 5026) | private void DrawSelectionRectangleTrigger(Graphics g, Trigger t) { method DrawSelectionRectangleOverworld (line 5031) | private void DrawSelectionRectangleOverworld(Graphics g, Overworld ow) { method DisplayEventMap (line 5036) | private void DisplayEventMap(bool readGraphicsFromHeader = true) { method DrawEventMatrix (line 5096) | private void DrawEventMatrix() { method FillSpawnablesBox (line 5113) | private void FillSpawnablesBox() { method FillOverworldsBox (line 5121) | private void FillOverworldsBox() { method FillWarpsBox (line 5129) | private void FillWarpsBox() { method FillTriggersBox (line 5137) | private void FillTriggersBox() { method GetOverworldImage (line 5145) | private Bitmap GetOverworldImage(ushort eventEntryID, ushort orientati... method MarkUsedCells (line 5213) | private void MarkUsedCells() { method MarkActiveCell (line 5236) | private void MarkActiveCell(int xPosition, int yPosition) { method isEventOnCurrentMatrix (line 5256) | private bool isEventOnCurrentMatrix(Event ev) { method isEventUnderMouse (line 5265) | private bool isEventUnderMouse(Event ev, Point mouseTilePos, int width... method SetupEventEditor (line 5277) | private void SetupEventEditor() { method addEventFileButton_Click (line 5429) | private void addEventFileButton_Click(object sender, EventArgs e) { method eventEditorTabPage_Enter (line 5437) | private void eventEditorTabPage_Enter(object sender, EventArgs e) { method eventMatrixPictureBox_Click (line 5440) | private void eventMatrixPictureBox_Click(object sender, EventArgs e) { method eventMatrixUpDown_ValueChanged (line 5449) | private void eventMatrixUpDown_ValueChanged(object sender, EventArgs e) { method eventShiftLeftButton_Click (line 5464) | private void eventShiftLeftButton_Click(object sender, EventArgs e) { method eventShiftUpButton_Click (line 5469) | private void eventShiftUpButton_Click(object sender, EventArgs e) { method eventShiftRightButton_Click (line 5474) | private void eventShiftRightButton_Click(object sender, EventArgs e) { method eventShiftDownButton_Click (line 5479) | private void eventShiftDownButton_Click(object sender, EventArgs e) { method eventMatrixCoordsUpDown_ValueChanged (line 5484) | private void eventMatrixCoordsUpDown_ValueChanged(object sender, Event... method eventEditorFullMapReload (line 5491) | private void eventEditorFullMapReload(int coordX, int coordY) { method exportEventFileButton_Click (line 5499) | private void exportEventFileButton_Click(object sender, EventArgs e) { method saveEventsButton_Click (line 5502) | private void saveEventsButton_Click(object sender, EventArgs e) { method importEventFileButton_Click (line 5508) | private void importEventFileButton_Click(object sender, EventArgs e) { method removeEventFileButton_Click (line 5608) | private void removeEventFileButton_Click(object sender, EventArgs e) { method selectEventComboBox_SelectedIndexChanged (line 5624) | private void selectEventComboBox_SelectedIndexChanged(object sender, E... method ChangeLoadedEventFile (line 5632) | private void ChangeLoadedEventFile(int evfile, ushort mapHeader) { method showEventsCheckBoxes_CheckedChanged (line 5670) | private void showEventsCheckBoxes_CheckedChanged(object sender, EventA... method eventAreaDataUpDown_ValueChanged (line 5681) | private void eventAreaDataUpDown_ValueChanged(object sender, EventArgs... method eventPictureBox_Click (line 5684) | private void eventPictureBox_Click(object sender, EventArgs e) { method addSpawnableButton_Click (line 5801) | private void addSpawnableButton_Click(object sender, EventArgs e) { method removeSpawnableButton_Click (line 5810) | private void removeSpawnableButton_Click(object sender, EventArgs e) { method duplicateSpawnableButton_Click (line 5832) | private void duplicateSpawnableButton_Click(object sender, EventArgs e) { method spawnablesListBox_SelectedIndexChanged (line 5843) | private void spawnablesListBox_SelectedIndexChanged(object sender, Eve... method spawnableMatrixXUpDown_ValueChanged (line 5865) | private void spawnableMatrixXUpDown_ValueChanged(object sender, EventA... method spawnableMatrixYUpDown_ValueChanged (line 5874) | private void spawnableMatrixYUpDown_ValueChanged(object sender, EventA... method spawnableScriptUpDown_ValueChanged (line 5883) | private void spawnableScriptUpDown_ValueChanged(object sender, EventAr... method spawnableMapXUpDown_ValueChanged (line 5892) | private void spawnableMapXUpDown_ValueChanged(object sender, EventArgs... method spawnableMapYUpDown_ValueChanged (line 5901) | private void spawnableMapYUpDown_ValueChanged(object sender, EventArgs... method spawnableZUpDown_ValueChanged (line 5910) | private void spawnableZUpDown_ValueChanged(object sender, EventArgs e) { method spawnableDirComboBox_SelectedIndexChanged (line 5919) | private void spawnableDirComboBox_SelectedIndexChanged(object sender, ... method spawnableTypeComboBox_SelectedIndexChanged (line 5928) | private void spawnableTypeComboBox_SelectedIndexChanged(object sender,... method addOverworldButton_Click (line 5942) | private void addOverworldButton_Click(object sender, EventArgs e) { method removeOverworldButton_Click (line 5955) | private void removeOverworldButton_Click(object sender, EventArgs e) { method sortOWsByIDAscButton_Click (line 5976) | private void sortOWsByIDAscButton_Click(object sender, EventArgs e) { method sortOWsByIDDescButton_Click (line 5983) | private void sortOWsByIDDescButton_Click(object sender, EventArgs e) { method duplicateOverworldsButton_Click (line 5989) | private void duplicateOverworldsButton_Click(object sender, EventArgs ... method OWTypeChanged (line 5999) | private void OWTypeChanged(object sender, EventArgs e) { method owItemComboBox_SelectedIndexChanged (line 6057) | private void owItemComboBox_SelectedIndexChanged(object sender, EventA... method overworldsListBox_SelectedIndexChanged (line 6064) | private void overworldsListBox_SelectedIndexChanged(object sender, Eve... method owFlagNumericUpDown_ValueChanged (line 6138) | private void owFlagNumericUpDown_ValueChanged(object sender, EventArgs... method owIDNumericUpDown_ValueChanged (line 6147) | private void owIDNumericUpDown_ValueChanged(object sender, EventArgs e) { method owMovementComboBox_SelectedIndexChanged (line 6157) | private void owMovementComboBox_SelectedIndexChanged(object sender, Ev... method owOrientationComboBox_SelectedIndexChanged (line 6166) | private void owOrientationComboBox_SelectedIndexChanged(object sender,... method owScriptNumericUpDown_ValueChanged (line 6186) | private void owScriptNumericUpDown_ValueChanged(object sender, EventAr... method owSightRangeUpDown_ValueChanged (line 6196) | private void owSightRangeUpDown_ValueChanged(object sender, EventArgs ... method owSpriteComboBox_SelectedIndexChanged (line 6201) | private void owSpriteComboBox_SelectedIndexChanged(object sender, Even... method owPartnerTrainerCheckBox_CheckedChanged (line 6228) | private void owPartnerTrainerCheckBox_CheckedChanged(object sender, Ev... method owTrainerComboBox_SelectedIndexChanged (line 6233) | private void owTrainerComboBox_SelectedIndexChanged(object sender, Eve... method owXMapUpDown_ValueChanged (line 6241) | private void owXMapUpDown_ValueChanged(object sender, EventArgs e) { method owXRangeUpDown_ValueChanged (line 6251) | private void owXRangeUpDown_ValueChanged(object sender, EventArgs e) { method owYRangeUpDown_ValueChanged (line 6260) | private void owYRangeUpDown_ValueChanged(object sender, EventArgs e) { method owYMapUpDown_ValueChanged (line 6269) | private void owYMapUpDown_ValueChanged(object sender, EventArgs e) { method owZPositionUpDown_ValueChanged (line 6279) | private void owZPositionUpDown_ValueChanged(object sender, EventArgs e) { method owXMatrixUpDown_ValueChanged (line 6289) | private void owXMatrixUpDown_ValueChanged(object sender, EventArgs e) { method owYMatrixUpDown_ValueChanged (line 6301) | private void owYMatrixUpDown_ValueChanged(object sender, EventArgs e) { method addWarpButton_Click (line 6316) | private void addWarpButton_Click(object sender, EventArgs e) { method removeWarpButton_Click (line 6328) | private void removeWarpButton_Click(object sender, EventArgs e) { method duplicateWarpsButton_Click (line 6350) | private void duplicateWarpsButton_Click(object sender, EventArgs e) { method warpAnchorUpDown_ValueChanged (line 6366) | private void warpAnchorUpDown_ValueChanged(object sender, EventArgs e) { method eventEditorWarpHeaderListBox_SelectedIndexChanged (line 6374) | private void eventEditorWarpHeaderListBox_SelectedIndexChanged(object ... method updateSelectedSpawnableName (line 6421) | private void updateSelectedSpawnableName() { method updateSelectedOverworldName (line 6428) | private void updateSelectedOverworldName() { method updateSelectedWarpName (line 6435) | private void updateSelectedWarpName() { method updateSelectedTriggerName (line 6442) | private void updateSelectedTriggerName() { method warpsListBox_SelectedIndexChanged (line 6450) | private void warpsListBox_SelectedIndexChanged(object sender, EventArg... method warpMatrixXUpDown_ValueChanged (line 6474) | private void warpMatrixXUpDown_ValueChanged(object sender, EventArgs e) { method warpMatrixYUpDown_ValueChanged (line 6483) | private void warpMatrixYUpDown_ValueChanged(object sender, EventArgs e) { method warpXMapUpDown_ValueChanged (line 6492) | private void warpXMapUpDown_ValueChanged(object sender, EventArgs e) { method warpYMapUpDown_ValueChanged (line 6501) | private void warpYMapUpDown_ValueChanged(object sender, EventArgs e) { method warpZUpDown_ValueChanged (line 6510) | private void warpZUpDown_ValueChanged(object sender, EventArgs e) { method goToWarpDestination_Click (line 6519) | private void goToWarpDestination_Click(object sender, EventArgs e) { method addTriggerButton_Click (line 6564) | private void addTriggerButton_Click(object sender, EventArgs e) { method removeTriggerButton_Click (line 6571) | private void removeTriggerButton_Click(object sender, EventArgs e) { method duplicateTriggersButton_Click (line 6594) | private void duplicateTriggersButton_Click(object sender, EventArgs e) { method triggersListBox_SelectedIndexChanged (line 6605) | private void triggersListBox_SelectedIndexChanged(object sender, Event... method triggerVariableWatchedUpDown_ValueChanged (line 6632) | private void triggerVariableWatchedUpDown_ValueChanged(object sender, ... method expectedVarValueTriggerUpDown_ValueChanged (line 6641) | private void expectedVarValueTriggerUpDown_ValueChanged(object sender,... method triggerScriptUpDown_ValueChanged (line 6650) | private void triggerScriptUpDown_ValueChanged(object sender, EventArgs... method triggerXMapUpDown_ValueChanged (line 6659) | private void triggerXMapUpDown_ValueChanged(object sender, EventArgs e) { method triggerYMapUpDown_ValueChanged (line 6668) | private void triggerYMapUpDown_ValueChanged(object sender, EventArgs e) { method triggerZUpDown_ValueChanged (line 6677) | private void triggerZUpDown_ValueChanged(object sender, EventArgs e) { method triggerXMatrixUpDown_ValueChanged (line 6686) | private void triggerXMatrixUpDown_ValueChanged(object sender, EventArg... method triggerYMatrixUpDown_ValueChanged (line 6695) | private void triggerYMatrixUpDown_ValueChanged(object sender, EventArg... method triggerWidthUpDown_ValueChanged (line 6704) | private void triggerWidthUpDown_ValueChanged(object sender, EventArgs ... method triggerLengthUpDown_ValueChanged (line 6713) | private void triggerLengthUpDown_ValueChanged(object sender, EventArgs... method addTextArchiveButton_Click (line 6735) | private void addTextArchiveButton_Click(object sender, EventArgs e) { method addStringButton_Click (line 6743) | private void addStringButton_Click(object sender, EventArgs e) { method exportTextFileButton_Click (line 6762) | private void exportTextFileButton_Click(object sender, EventArgs e) { method saveTextArchiveButton_Click (line 6809) | private void saveTextArchiveButton_Click(object sender, EventArgs e) { method selectedLineMoveUpButton_Click (line 6815) | private void selectedLineMoveUpButton_Click(object sender, EventArgs e) { method selectedLineMoveDownButton_Click (line 6828) | private void selectedLineMoveDownButton_Click(object sender, EventArgs... method ReloadHeaderEditorLocationsList (line 6840) | private void ReloadHeaderEditorLocationsList(IEnumerable conte... method importTextFileButton_Click (line 6846) | private void importTextFileButton_Click(object sender, EventArgs e) { method removeMessageFileButton_Click (line 6884) | private void removeMessageFileButton_Click(object sender, EventArgs e) { method removeStringButton_Click (line 6900) | private void removeStringButton_Click(object sender, EventArgs e) { method searchMessageButton_Click (line 6906) | private void searchMessageButton_Click(object sender, EventArgs e) { method searchTexts (line 6940) | private List searchTexts(int firstArchive, int lastArchive, Fu... method searchMessageTextBox_KeyDown (line 6956) | private void searchMessageTextBox_KeyDown(object sender, KeyEventArgs ... method replaceMessageButton_Click (line 6961) | private void replaceMessageButton_Click(object sender, EventArgs e) { method selectTextFileComboBox_SelectedIndexChanged (line 7035) | private void selectTextFileComboBox_SelectedIndexChanged(object sender... method UpdateTextEditorFileView (line 7038) | private void UpdateTextEditorFileView(bool readAgain) { method PrintTextEditorLinesHex (line 7060) | private void PrintTextEditorLinesHex() { method PrintTextEditorLinesDecimal (line 7067) | private void PrintTextEditorLinesDecimal() { method textEditorDataGridView_CellValueChanged (line 7074) | private void textEditorDataGridView_CellValueChanged(object sender, Da... method textEditorDataGridView_CurrentCellChanged (line 7086) | private void textEditorDataGridView_CurrentCellChanged(object sender, ... method textSearchResultsListBox_GoToEntryResult (line 7107) | private void textSearchResultsListBox_GoToEntryResult(object sender, M... method textSearchResultsListBox_KeyDown (line 7127) | private void textSearchResultsListBox_KeyDown(object sender, KeyEventA... method hexRadiobutton_CheckedChanged (line 7132) | private void hexRadiobutton_CheckedChanged(object sender, EventArgs e) { method updateTextEditorLineNumbers (line 7136) | private void updateTextEditorLineNumbers() { method FillTilesetBox (line 7151) | public void FillTilesetBox() { method SetupNSBTXEditor (line 7165) | private void SetupNSBTXEditor() { method buildingsTilesetRadioButton_CheckedChanged (line 7221) | private void buildingsTilesetRadioButton_CheckedChanged(object sender,... method exportNSBTXButton_Click (line 7231) | private void exportNSBTXButton_Click(object sender, EventArgs e) { method importNSBTXButton_Click (line 7247) | private void importNSBTXButton_Click(object sender, EventArgs e) { method mapTilesetRadioButton_CheckedChanged (line 7267) | private void mapTilesetRadioButton_CheckedChanged(object sender, Event... method palettesListBox_SelectedIndexChanged (line 7280) | private void palettesListBox_SelectedIndexChanged(object sender, Event... method texturePacksListBox_SelectedIndexChanged (line 7294) | private void texturePacksListBox_SelectedIndexChanged(object sender, E... method texturesListBox_SelectedIndexChanged (line 7330) | private void texturesListBox_SelectedIndexChanged(object sender, Event... method findAndSelectMatchingPalette (line 7356) | private string findAndSelectMatchingPalette(string findThis) { method areaDataBuildingTilesetUpDown_ValueChanged (line 7378) | private void areaDataBuildingTilesetUpDown_ValueChanged(object sender,... method areaDataDynamicTexturesUpDown_ValueChanged (line 7384) | private void areaDataDynamicTexturesUpDown_ValueChanged(object sender,... method areaDataLightTypeComboBox_SelectedIndexChanged (line 7396) | private void areaDataLightTypeComboBox_SelectedIndexChanged(object sen... method areaDataMapTilesetUpDown_ValueChanged (line 7402) | private void areaDataMapTilesetUpDown_ValueChanged(object sender, Even... method saveAreaDataButton_Click (line 7408) | private void saveAreaDataButton_Click(object sender, EventArgs e) { method selectAreaDataListBox_SelectedIndexChanged (line 7411) | private void selectAreaDataListBox_SelectedIndexChanged(object sender,... method indoorAreaRadioButton_CheckedChanged (line 7428) | private void indoorAreaRadioButton_CheckedChanged(object sender, Event... method addNSBTXButton_Click (line 7431) | private void addNSBTXButton_Click(object sender, EventArgs e) { method removeNSBTXButton_Click (line 7452) | private void removeNSBTXButton_Click(object sender, EventArgs e) { method addAreaDataButton_Click (line 7485) | private void addAreaDataButton_Click(object sender, EventArgs e) { method removeAreaDataButton_Click (line 7498) | private void removeAreaDataButton_Click(object sender, EventArgs e) { method exportAreaDataButton_Click (line 7520) | private void exportAreaDataButton_Click(object sender, EventArgs e) { method importAreaDataButton_Click (line 7523) | private void importAreaDataButton_Click(object sender, EventArgs e) { method SetupCameraEditor (line 7552) | private void SetupCameraEditor() { method saveCameraTableButton_Click (line 7623) | private void saveCameraTableButton_Click(object sender, EventArgs e) { method cameraEditorDataGridView_CellValidated (line 7626) | private void cameraEditorDataGridView_CellValidated(object sender, Dat... method exportCameraTableButton_Click (line 7630) | private void exportCameraTableButton_Click(object sender, EventArgs e) { method SaveCameraTable (line 7642) | private void SaveCameraTable(string path, uint destFileOffset) { method cameraEditorDataGridView_CellContentClick (line 7648) | private void cameraEditorDataGridView_CellContentClick(object sender, ... method importCameraTableButton_Click (line 7680) | private void importCameraTableButton_Click(object sender, EventArgs e) { method SetupTrainerClassEncounterMusicTable (line 7738) | private void SetupTrainerClassEncounterMusicTable() { method RefreshAbilities (line 7761) | public void RefreshAbilities(int forPokemon) { method SetupTrainerEditor (line 7770) | private void SetupTrainerEditor() { method trainerComboBox_SelectedIndexChanged (line 7976) | private void trainerComboBox_SelectedIndexChanged(object sender, Event... method RefreshTrainerPropertiesGUI (line 8008) | public void RefreshTrainerPropertiesGUI() { method RefreshTrainerPartyGUI (line 8027) | public void RefreshTrainerPartyGUI() { method ShowPartyPokemonPic (line 8057) | private void ShowPartyPokemonPic(byte partyPos) { method partyPokemon1ComboBox_SelectedIndexChanged (line 8066) | private void partyPokemon1ComboBox_SelectedIndexChanged(object sender,... method partyPokemon2ComboBox_SelectedIndexChanged (line 8076) | private void partyPokemon2ComboBox_SelectedIndexChanged(object sender,... method partyPokemon3ComboBox_SelectedIndexChanged (line 8085) | private void partyPokemon3ComboBox_SelectedIndexChanged(object sender,... method partyPokemon4ComboBox_SelectedIndexChanged (line 8094) | private void partyPokemon4ComboBox_SelectedIndexChanged(object sender,... method partyPokemon5ComboBox_SelectedIndexChanged (line 8103) | private void partyPokemon5ComboBox_SelectedIndexChanged(object sender,... method partyPokemon6ComboBox_SelectedIndexChanged (line 8112) | private void partyPokemon6ComboBox_SelectedIndexChanged(object sender,... method showTrainerEditorItemPic (line 8121) | private void showTrainerEditorItemPic(byte partyPos) { method partyItem1ComboBox_SelectedIndexChanged (line 8126) | private void partyItem1ComboBox_SelectedIndexChanged(object sender, Ev... method partyItem2ComboBox_SelectedIndexChanged (line 8130) | private void partyItem2ComboBox_SelectedIndexChanged(object sender, Ev... method partyItem3ComboBox_SelectedIndexChanged (line 8134) | private void partyItem3ComboBox_SelectedIndexChanged(object sender, Ev... method partyItem4ComboBox_SelectedIndexChanged (line 8138) | private void partyItem4ComboBox_SelectedIndexChanged(object sender, Ev... method partyItem5ComboBox_SelectedIndexChanged (line 8142) | private void partyItem5ComboBox_SelectedIndexChanged(object sender, Ev... method partyItem6ComboBox_SelectedIndexChanged (line 8146) | private void partyItem6ComboBox_SelectedIndexChanged(object sender, Ev... method DVExplainButton_Click (line 8150) | private void DVExplainButton_Click(object sender, EventArgs e) { method partyCountUpDown_ValueChanged (line 8155) | private void partyCountUpDown_ValueChanged(object sender, EventArgs e) { method trainerMovesCheckBox_CheckedChanged (line 8165) | private void trainerMovesCheckBox_CheckedChanged(object sender, EventA... method trainerItemsCheckBox_CheckedChanged (line 8189) | private void trainerItemsCheckBox_CheckedChanged(object sender, EventA... method partyMoveComboBox_SelectedIndexChanged (line 8194) | private void partyMoveComboBox_SelectedIndexChanged(object sender, Eve... method trainerSaveCurrentButton_Click (line 8208) | private void trainerSaveCurrentButton_Click(object sender, EventArgs e) { method UpdateCurrentTrainerShownName (line 8300) | private void UpdateCurrentTrainerShownName() { method GetTrainerClassNameFromListbox (line 8314) | private string GetTrainerClassNameFromListbox(object selectedItem) { method UpdateCurrentTrainerName (line 8319) | private void UpdateCurrentTrainerName(string newName) { method UpdateCurrentTrainerClassName (line 8329) | private void UpdateCurrentTrainerClassName(string newName) { method trainerClassListBox_SelectedIndexChanged (line 8335) | private void trainerClassListBox_SelectedIndexChanged(object sender, E... method LoadTrainerClassPic (line 8366) | private int LoadTrainerClassPic(int trClassID) { method UpdateTrainerClassPic (line 8385) | private void UpdateTrainerClassPic(PictureBox pb, int frameNumber = 0) { method addTrainerButton_Click (line 8403) | private void addTrainerButton_Click(object sender, EventArgs e) { method exportTrainerButton_Click (line 8425) | private void exportTrainerButton_Click(object sender, EventArgs e) { method importTrainerButton_Click (line 8429) | private void importTrainerButton_Click(object sender, EventArgs e) { method exportPropertiesButton_Click (line 8463) | private void exportPropertiesButton_Click(object sender, EventArgs e) { method replacePropertiesButton_Click (line 8467) | private void replacePropertiesButton_Click(object sender, EventArgs e) { method exportPartyButton_Click (line 8483) | private void exportPartyButton_Click(object sender, EventArgs e) { method importReplacePartyButton_Click (line 8489) | private void importReplacePartyButton_Click(object sender, EventArgs e) { method saveTrainerClassButton_Click (line 8506) | private void saveTrainerClassButton_Click(object sender, EventArgs e) { method trClassFramePreviewUpDown_ValueChanged (line 8545) | private void trClassFramePreviewUpDown_ValueChanged(object sender, Eve... method getPokemonAbilities (line 8549) | private (int abi1, int abi2)[] getPokemonAbilities(int numPokemonSpeci... method getPokemonAbilityNames (line 8559) | private (string ability1, string ability2) getPokemonAbilityNames(int ... method setTrainerPartyPokemonAbilities (line 8564) | private void setTrainerPartyPokemonAbilities(int partyPokemonPosition) { method setTrainerPokemonGender (line 8585) | private void setTrainerPokemonGender(int partyPokemonPosition) { method getPokemonFormNames (line 8617) | private List getPokemonFormNames(int pokemonID) { method setTrainerPartyPokemonForm (line 8679) | private void setTrainerPartyPokemonForm(int partyPokemonPosition) { method SetupConditionalMusicTable (line 8717) | private void SetupConditionalMusicTable() { method SetupBattleEffectsTables (line 8762) | private void SetupBattleEffectsTables() { method RepopulateTableEditorTrainerClasses (line 8880) | private void RepopulateTableEditorTrainerClasses() { method conditionalMusicTableListBox_SelectedIndexChanged (line 8888) | private void conditionalMusicTableListBox_SelectedIndexChanged(object ... method headerConditionalMusicComboBox_SelectedIndexChanged (line 8899) | private void headerConditionalMusicComboBox_SelectedIndexChanged(objec... method flagConditionalMusicUpDown_ValueChanged (line 8921) | private void flagConditionalMusicUpDown_ValueChanged(object sender, Ev... method musicIDconditionalMusicUpDown_ValueChanged (line 8930) | private void musicIDconditionalMusicUpDown_ValueChanged(object sender,... method HOWconditionalMusicTableButton_Click (line 8938) | private void HOWconditionalMusicTableButton_Click(object sender, Event... method saveConditionalMusicTableBTN_Click (line 8942) | private void saveConditionalMusicTableBTN_Click(object sender, EventAr... method TBLEditortrainerClassPreviewPic_ValueChanged (line 8950) | private void TBLEditortrainerClassPreviewPic_ValueChanged(object sende... method saveEffectComboBTN_Click (line 8954) | private void saveEffectComboBTN_Click(object sender, EventArgs e) { method saveVSPokemonEntryBTN_Click (line 8978) | private void saveVSPokemonEntryBTN_Click(object sender, EventArgs e) { method saveVSTrainerEntryBTN_Click (line 8995) | private void saveVSTrainerEntryBTN_Click(object sender, EventArgs e) { method HOWpbEffectsTableButton_Click (line 9011) | private void HOWpbEffectsTableButton_Click(object sender, EventArgs e) { method HOWvsPokemonButton_Click (line 9017) | private void HOWvsPokemonButton_Click(object sender, EventArgs e) { method HOWVsTrainerButton_Click (line 9023) | private void HOWVsTrainerButton_Click(object sender, EventArgs e) { method pbEffectsVsTrainerListbox_SelectedIndexChanged (line 9028) | private void pbEffectsVsTrainerListbox_SelectedIndexChanged(object sen... method pbEffectsVsPokemonListbox_SelectedIndexChanged (line 9041) | private void pbEffectsVsPokemonListbox_SelectedIndexChanged(object sen... method pbEffectsCombosListbox_SelectedIndexChanged (line 9058) | private void pbEffectsCombosListbox_SelectedIndexChanged(object sender... method pbEffectsTrainerCombobox_SelectedIndexChanged (line 9070) | private void pbEffectsTrainerCombobox_SelectedIndexChanged(object send... method pbEffectsPokemonCombobox_SelectedIndexChanged (line 9077) | private void pbEffectsPokemonCombobox_SelectedIndexChanged(object send... method ExclusiveCBInvert (line 9084) | private void ExclusiveCBInvert(CheckBox cb) { method unpackToFolderToolStripMenuItem_Click (line 9098) | private void unpackToFolderToolStripMenuItem_Click(object sender, Even... method buildFromFolderToolStripMenuItem_Click (line 9133) | private void buildFromFolderToolStripMenuItem_Click(object sender, Eve... method listBasedToolStripMenuItem_Click (line 9157) | private void listBasedToolStripMenuItem_Click(object sender, EventArgs... method contentBasedToolStripMenuItem_Click (line 9252) | private void contentBasedToolStripMenuItem_Click(object sender, EventA... method ContentBasedBatchRename (line 9256) | private void ContentBasedBatchRename(DirectoryInfo d = null) { method fromFolderContentsToolStripMenuItem_Click (line 9372) | private void fromFolderContentsToolStripMenuItem_Click(object sender, ... method enumBasedListBuilderToolStripButton_Click (line 9400) | private void enumBasedListBuilderToolStripButton_Click(object sender, ... method MakeUniqueName (line 9510) | private string MakeUniqueName(string fileName, string fileNameOnly = n... method OpenNonEmptyDir (line 9530) | private (DirectoryInfo, FileInfo[]) OpenNonEmptyDir(DirectoryInfo d = ... method simpleToolStripMenuItem_MouseDown (line 9557) | private void simpleToolStripMenuItem_MouseDown(object sender, MouseEve... method SetMenuLayout (line 9562) | private void SetMenuLayout(byte layoutStyle) { method ExplorerSelect (line 9646) | public static void ExplorerSelect(string path) { method locateCurrentMatrixFile_Click (line 9652) | private void locateCurrentMatrixFile_Click(object sender, EventArgs e) { method locateCurrentMapBin_Click (line 9656) | private void locateCurrentMapBin_Click(object sender, EventArgs e) { method locateCurrentNsbtx_Click (line 9660) | private void locateCurrentNsbtx_Click(object sender, EventArgs e) { method locateCurrentAreaData_Click (line 9668) | private void locateCurrentAreaData_Click(object sender, EventArgs e) { method locateCurrentEvFile_Click (line 9671) | private void locateCurrentEvFile_Click(object sender, EventArgs e) { method locateCurrentScriptFile_Click (line 9674) | private void locateCurrentScriptFile_Click(object sender, EventArgs e) { method locateCurrentTextArchive_Click (line 9677) | private void locateCurrentTextArchive_Click(object sender, EventArgs e) { method PictureBoxDisable (line 9686) | public void PictureBoxDisable(object sender, PaintEventArgs e) { method NSBTXRender (line 9694) | private int NSBTXRender(int tex, int pal, float scale = -1, NSBTX_File... method scalingTrackBar_Scroll (line 9719) | private void scalingTrackBar_Scroll(object sender, EventArgs e) { method invertDragCheckbox_CheckedChanged (line 9727) | private void invertDragCheckbox_CheckedChanged(object sender, EventArg... method repositionImageButton_Click (line 9731) | private void repositionImageButton_Click(object sender, EventArgs e) { method texturedMapRenderCheckBox_CheckedChanged (line 9735) | private void texturedMapRenderCheckBox_CheckedChanged(object sender, E... method texturedBldRenderCheckBox_CheckedChanged (line 9740) | private void texturedBldRenderCheckBox_CheckedChanged(object sender, E... method trainerEditorStatButton_Click (line 9745) | private void trainerEditorStatButton_Click(object sender, EventArgs e) { method ExportTrainerUsageToCSV (line 9799) | public void ExportTrainerUsageToCSV(Dictionary ReadMessageArchive(FileStream fileStream, b... method EncodeMessage (line 186) | private static int[] EncodeMessage(string message, bool isTrainerName ... method EncodeMessages (line 294) | private static List EncodeMessages(List messages, bool ... method GetInitialKey (line 304) | private static int GetInitialKey(string filePath) method WriteMessageArchive (line 328) | public static bool WriteMessageArchive(int messageArchiveId, List DrawAt(0, 0); FILE: DS_Map/OverlayEditor.Designer.cs class OverlayEditor (line 2) | partial class OverlayEditor { method Dispose (line 12) | protected override void Dispose(bool disposing) { method InitializeComponent (line 25) | private void InitializeComponent() { FILE: DS_Map/OverlayEditor.cs class OverlayEditor (line 13) | public partial class OverlayEditor : Form { method OverlayEditor (line 19) | public OverlayEditor() { method isMarkedCompressedButton_Click (line 45) | private void isMarkedCompressedButton_Click(object sender, EventArgs e) { method isCompressedButton_Click (line 52) | private void isCompressedButton_Click(object sender, EventArgs e) { method revertChangesButton_Click (line 59) | private void revertChangesButton_Click(object sender, EventArgs e) { method overlayDataGrid_CellFormatting (line 74) | private void overlayDataGrid_CellFormatting(object sender, DataGridVie... method saveChangesButton_Click (line 84) | private void saveChangesButton_Click(object sender, EventArgs e) { method FindMismatches (line 131) | private bool FindMismatches(bool paintThem = true) { method overlayDataGrid_SelectionChanged (line 150) | private void overlayDataGrid_SelectionChanged(object sender, EventArgs... method overlayDataGrid_CellValueChanged (line 154) | private void overlayDataGrid_CellValueChanged(object sender, DataGridV... class Overlay (line 159) | public class Overlay { FILE: DS_Map/PatchToolboxDialog.Designer.cs class PatchToolboxDialog (line 3) | partial class PatchToolboxDialog method Dispose (line 14) | protected override void Dispose(bool disposing) method InitializeComponent (line 29) | private void InitializeComponent() { FILE: DS_Map/PatchToolboxDialog.cs class PatchToolboxDialog (line 18) | public partial class PatchToolboxDialog : Form method PatchToolboxDialog (line 39) | public PatchToolboxDialog() method DisableOverlay1patch (line 107) | private void DisableOverlay1patch(string reason) method DisableBDHCamPatch (line 115) | private void DisableBDHCamPatch(string reason) method DisableARM9patch (line 124) | private void DisableARM9patch(string reason) method DisableDynamicHeadersPatch (line 132) | private void DisableDynamicHeadersPatch(string reason) method DisableMatrixExpansionPatch (line 140) | private void DisableMatrixExpansionPatch(string reason) method DisableStandardizeItemsPatch (line 148) | private void DisableStandardizeItemsPatch(string reason) method DisableScrcmdRepointPatch (line 156) | private void DisableScrcmdRepointPatch(string reason) method DisableKillTextureAnimationsPatch (line 165) | private void DisableKillTextureAnimationsPatch(string reason) method DisableTrainerNameExpansionPatch (line 173) | private void DisableTrainerNameExpansionPatch(string reason) method CheckFilesArm9ExpansionApplied (line 187) | private static bool CheckFilesArm9ExpansionApplied() method CheckFilesBDHCamPatchApplied (line 204) | public static bool CheckFilesBDHCamPatchApplied() method CheckFilesMatrixExpansionApplied (line 237) | public static bool CheckFilesMatrixExpansionApplied() method CheckScriptsStandardizedItemNumbers (line 258) | public static bool CheckScriptsStandardizedItemNumbers() method CheckStandardizedItems (line 276) | public bool CheckStandardizedItems() method CheckMatrixExpansionApplied (line 295) | public bool CheckMatrixExpansionApplied() method CheckARM9ExpansionApplied (line 313) | private bool CheckARM9ExpansionApplied() method CheckDynamicHeadersPatchApplied (line 341) | public bool CheckDynamicHeadersPatchApplied() method CheckFilesDynamicHeadersPatchApplied (line 358) | public static bool CheckFilesDynamicHeadersPatchApplied() method CheckBDHCamPatchApplied (line 365) | public bool CheckBDHCamPatchApplied() method CheckScrcmdRepointPatchApplied (line 388) | public void CheckScrcmdRepointPatchApplied() method CheckExpandedTrainerNamesPatchApplied (line 393) | public void CheckExpandedTrainerNamesPatchApplied() method SentenceCasePatchButton_Click (line 420) | private void SentenceCasePatchButton_Click(object sender, EventArgs e) method BDHCAMPatchButton_Click (line 453) | private void BDHCAMPatchButton_Click(object sender, EventArgs e) method overlay1uncomprButton_Click (line 527) | private void overlay1uncomprButton_Click(object sender, EventArgs e) method ConfigureOverlay1Uncompressed (line 536) | public static bool ConfigureOverlay1Uncompressed() method ApplyItemStandardizeButton_Click (line 571) | private void ApplyItemStandardizeButton_Click(object sender, EventArgs e) method ApplyARM9ExpansionButton_Click (line 686) | private void ApplyARM9ExpansionButton_Click(object sender, EventArgs e) method expandMatrixButton_Click (line 745) | private void expandMatrixButton_Click(object sender, EventArgs e) method dynamicHeadersButton_Click (line 805) | private void dynamicHeadersButton_Click(object sender, EventArgs e) method disableDynamicTexturesButton_Click (line 946) | private void disableDynamicTexturesButton_Click(object sender, EventAr... method expandTrainerNamesButton_Click (line 977) | private void expandTrainerNamesButton_Click(object sender, EventArgs e) method applyCustomCommands (line 1021) | private void applyCustomCommands(object sender, EventArgs e) method GetCommandTableOffset (line 1050) | private int GetCommandTableOffset() method RepointCommandTable (line 1067) | private void RepointCommandTable() method ImportCustomCommand (line 1095) | private bool ImportCustomCommand() method AlreadyApplied (line 1183) | private void AlreadyApplied() FILE: DS_Map/PersonalDataEditor.Designer.cs class PersonalDataEditor (line 2) | partial class PersonalDataEditor { method Dispose (line 12) | protected override void Dispose(bool disposing) { method InitializeComponent (line 25) | private void InitializeComponent() { FILE: DS_Map/PersonalDataEditor.cs class PersonalDataEditor (line 12) | public partial class PersonalDataEditor : Form { method PersonalDataEditor (line 26) | public PersonalDataEditor(string[] itemNames, string[] abilityNames, S... method setDirty (line 82) | private void setDirty(bool status) { method baseHpNumericUpDown_ValueChanged (line 91) | private void baseHpNumericUpDown_ValueChanged(object sender, EventArgs... method baseAtkNumericUpDown_ValueChanged (line 99) | private void baseAtkNumericUpDown_ValueChanged(object sender, EventArg... method baseDefNumericUpDown_ValueChanged (line 106) | private void baseDefNumericUpDown_ValueChanged(object sender, EventArg... method baseSpAtkNumericUpDown_ValueChanged (line 114) | private void baseSpAtkNumericUpDown_ValueChanged(object sender, EventA... method baseSpDefNumericUpDown_ValueChanged (line 122) | private void baseSpDefNumericUpDown_ValueChanged(object sender, EventA... method baseSpeedNumericUpDown_ValueChanged (line 130) | private void baseSpeedNumericUpDown_ValueChanged(object sender, EventA... method evHpNumericUpDown_ValueChanged (line 138) | private void evHpNumericUpDown_ValueChanged(object sender, EventArgs e) { method evAtkNumericUpDown_ValueChanged (line 146) | private void evAtkNumericUpDown_ValueChanged(object sender, EventArgs ... method evDefNumericUpDown_ValueChanged (line 154) | private void evDefNumericUpDown_ValueChanged(object sender, EventArgs ... method evSpAtkNumericUpDown_ValueChanged (line 162) | private void evSpAtkNumericUpDown_ValueChanged(object sender, EventArg... method evSpDefNumericUpDown_ValueChanged (line 170) | private void evSpDefNumericUpDown_ValueChanged(object sender, EventArg... method evSpeedNumericUpDown_ValueChanged (line 178) | private void evSpeedNumericUpDown_ValueChanged(object sender, EventArg... method type1InputComboBox_SelectedIndexChanged (line 187) | private void type1InputComboBox_SelectedIndexChanged(object sender, Ev... method type2InputComboBox_SelectedIndexChanged (line 195) | private void type2InputComboBox_SelectedIndexChanged(object sender, Ev... method growthCurveInputComboBox_SelectedIndexChanged (line 203) | private void growthCurveInputComboBox_SelectedIndexChanged(object send... method baseExpYieldNumericUpDown_ValueChanged (line 211) | private void baseExpYieldNumericUpDown_ValueChanged(object sender, Eve... method dexColorInputComboBox_SelectedIndexChanged (line 219) | private void dexColorInputComboBox_SelectedIndexChanged(object sender,... method flipFlagCheckBox_CheckedChanged (line 227) | private void flipFlagCheckBox_CheckedChanged(object sender, EventArgs ... method escapeRateNumericUpDown_ValueChanged (line 235) | private void escapeRateNumericUpDown_ValueChanged(object sender, Event... method catchRateNumericUpDown_ValueChanged (line 243) | private void catchRateNumericUpDown_ValueChanged(object sender, EventA... method genderProbabilityNumericUpDown_ValueChanged (line 251) | private void genderProbabilityNumericUpDown_ValueChanged(object sender... method GetGenderText (line 261) | private string GetGenderText(int vec) { method ability1InputComboBox_SelectedIndexChanged (line 277) | private void ability1InputComboBox_SelectedIndexChanged(object sender,... method ability2InputComboBox_SelectedIndexChanged (line 285) | private void ability2InputComboBox_SelectedIndexChanged(object sender,... method eggGroup1InputCombobox_SelectedIndexChanged (line 293) | private void eggGroup1InputCombobox_SelectedIndexChanged(object sender... method eggGroup2InputCombobox_SelectedIndexChanged (line 301) | private void eggGroup2InputCombobox_SelectedIndexChanged(object sender... method eggStepsNumericUpDown_ValueChanged (line 309) | private void eggStepsNumericUpDown_ValueChanged(object sender, EventAr... method item1InputComboBox_SelectedIndexChanged (line 317) | private void item1InputComboBox_SelectedIndexChanged(object sender, Ev... method item2InputComboBox_SelectedIndexChanged (line 325) | private void item2InputComboBox_SelectedIndexChanged(object sender, Ev... method baseFriendshipNumericUpDown_ValueChanged (line 333) | private void baseFriendshipNumericUpDown_ValueChanged(object sender, E... method addMachineButton_Click (line 342) | private void addMachineButton_Click(object sender, EventArgs e) { method removeMachineButton_Click (line 360) | private void removeMachineButton_Click(object sender, EventArgs e) { method addAllMachinesButton_Click (line 377) | private void addAllMachinesButton_Click(object sender, EventArgs e) { method removeAllMachinesButton_Click (line 391) | private void removeAllMachinesButton_Click(object sender, EventArgs e) { method saveDataButton_Click (line 399) | private void saveDataButton_Click(object sender, EventArgs e) { method CheckDiscardChanges (line 408) | public bool CheckDiscardChanges() { method pokemonNameInputComboBox_SelectedIndexChanged (line 425) | private void pokemonNameInputComboBox_SelectedIndexChanged(object send... method monNumberNumericUpDown_ValueChanged (line 440) | private void monNumberNumericUpDown_ValueChanged(object sender, EventA... method ChangeLoadedFile (line 455) | public void ChangeLoadedFile(int toLoad) { method RebuildMachinesListBoxes (line 513) | private void RebuildMachinesListBoxes(bool keepAddableSelection = true... method MachineNameFromZeroBasedIndex (line 557) | private static string MachineNameFromZeroBasedIndex(int n) { method ZeroBasedIndexFromMachineName (line 565) | private static int ZeroBasedIndexFromMachineName(string machineName) { FILE: DS_Map/PokemonEditor.Designer.cs class PokemonEditor (line 2) | partial class PokemonEditor { method Dispose (line 12) | protected override void Dispose(bool disposing) { method InitializeComponent (line 25) | private void InitializeComponent() { FILE: DS_Map/PokemonEditor.cs class PokemonEditor (line 14) | public partial class PokemonEditor : Form { method PokemonEditor (line 19) | public PokemonEditor(string[] itemNames, string[] abilityNames, string... method TrySyncIndices (line 39) | public void TrySyncIndices(ComboBox sender) { method TrySyncIndices (line 64) | public void TrySyncIndices(NumericUpDown sender) { FILE: DS_Map/Program.cs class Program (line 9) | static class Program method Main (line 14) | [STAThread] FILE: DS_Map/Properties/Resources.Designer.cs class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: DS_Map/Properties/Settings.Designer.cs class Settings (line 14) | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] FILE: DS_Map/ROMFiles/AreaData.cs class AreaData (line 8) | public class AreaData : RomFile { method AreaData (line 22) | public AreaData(Stream data) { method AreaData (line 37) | public AreaData (byte ID) : this(new FileStream(RomInfo.gameDirs[DirNa... method ToByteArray (line 41) | public override byte[] ToByteArray() { method SaveToFileDefaultDir (line 59) | public void SaveToFileDefaultDir(int IDtoReplace, bool showSuccessMess... method SaveToFileExplorePath (line 63) | public void SaveToFileExplorePath(string suggestedFileName, bool showS... FILE: DS_Map/ROMFiles/EncounterFile.cs class EncounterFile (line 76) | public abstract class EncounterFile : RomFile { method SaveToFileDefaultDir (line 108) | public void SaveToFileDefaultDir(int IDtoReplace, bool showSuccessMess... method ReportErrors (line 112) | public void ReportErrors(List errorList) { class EncounterFileDPPt (line 135) | public class EncounterFileDPPt : EncounterFile { method EncounterFileDPPt (line 154) | public EncounterFileDPPt(Stream data) { method EncounterFileDPPt (line 320) | public EncounterFileDPPt(int ID) : this(new FileStream(RomInfo.gameDir... method EncounterFileDPPt (line 321) | public EncounterFileDPPt() { method ToByteArray (line 327) | public override byte[] ToByteArray() { method SaveToFileExplorePath (line 420) | public void SaveToFileExplorePath(string suggestedFileName, bool showS... class EncounterFileHGSS (line 429) | public class EncounterFileHGSS : EncounterFile { method EncounterFileHGSS (line 443) | public EncounterFileHGSS(Stream data) { method EncounterFileHGSS (line 687) | public EncounterFileHGSS(int ID) : this(new FileStream(RomInfo.gameDir... method EncounterFileHGSS (line 688) | public EncounterFileHGSS() { method ToByteArray (line 694) | public override byte[] ToByteArray() { method SaveToFileExplorePath (line 779) | public void SaveToFileExplorePath(string suggestedFileName, bool showS... FILE: DS_Map/ROMFiles/EventFile.cs class EventFile (line 13) | public class EventFile : RomFile { type serializationOrder (line 14) | public enum serializationOrder { method EventFile (line 31) | public EventFile(Stream data) { method EventFile (line 58) | public EventFile(int ID) : this(new FileStream(RomInfo.gameDirs[DirNam... method EventFile (line 59) | public EventFile() { } method ToString (line 63) | public override string ToString() { method ToByteArray (line 66) | public override byte[] ToByteArray() { method SaveToFileDefaultDir (line 95) | public void SaveToFileDefaultDir(int IDtoReplace, bool showSuccessMess... method SaveToFileExplorePath (line 98) | public void SaveToFileExplorePath(string suggestedFileName, bool showS... method isEmpty (line 102) | internal bool isEmpty() => (spawnables is null || spawnables.Count == ... class Event (line 110) | public abstract class Event { type EventType (line 111) | public enum EventType : byte { method ToByteArray (line 128) | public abstract byte[] ToByteArray(); class Spawnable (line 132) | public class Spawnable : Event { method Spawnable (line 147) | public Spawnable(Stream data) { method Spawnable (line 171) | public Spawnable(int xMatrixPosition, int yMatrixPosition) { method Spawnable (line 187) | public Spawnable(Spawnable toCopy) { method ToByteArray (line 206) | public override byte[] ToByteArray() { method ToString (line 223) | public override string ToString() { class Overworld (line 244) | public class Overworld : Event { type OwType (line 247) | public enum OwType : ushort { NORMAL = 0, TRAINER = 1, ITEM = 3 }; method Overworld (line 265) | public Overworld(Stream data) { method Overworld (line 292) | public Overworld(int owID, int xMatrixPosition, int yMatrixPosition) { method Overworld (line 314) | public Overworld(Overworld toCopy) { method ToByteArray (line 339) | public override byte[] ToByteArray() { method ToString (line 366) | public override string ToString() { method isAlias (line 371) | private bool isAlias() { class Warp (line 377) | public class Warp : Event { method Warp (line 385) | public Warp(Stream data) { method Warp (line 401) | public Warp(int xMatrixPosition, int yMatrixPosition) { method Warp (line 412) | public Warp(Warp toCopy) { method ToByteArray (line 426) | public override byte[] ToByteArray() { method ToString (line 441) | public override string ToString() { class Trigger (line 448) | public class Trigger : Event { method Trigger (line 459) | public Trigger(Stream data) { method Trigger (line 480) | public Trigger(int xMatrixPosition, int yMatrixPosition) { method Trigger (line 494) | public Trigger(Trigger toCopy) { method ToByteArray (line 511) | public override byte[] ToByteArray() { method ToString (line 527) | public override string ToString() { FILE: DS_Map/ROMFiles/EvolutionFile.cs type EvolutionMethod (line 8) | public enum EvolutionMethod : short { type EvolutionParamMeaning (line 39) | public enum EvolutionParamMeaning { type EvolutionData (line 48) | public struct EvolutionData { method isValid (line 53) | public bool isValid() { class EvolutionFile (line 72) | public class EvolutionFile : RomFile { method EvolutionFile (line 116) | public EvolutionFile(Stream stream) { method EvolutionFile (line 128) | public EvolutionFile(int ID) : this(new FileStream(RomInfo.gameDirs[Di... method EvolutionFile (line 130) | public EvolutionFile() { } method ToByteArray (line 132) | public override byte[] ToByteArray() { method SaveToFileDefaultDir (line 155) | public void SaveToFileDefaultDir(int IDtoReplace, bool showSuccessMess... method SaveToFileExplorePath (line 158) | public void SaveToFileExplorePath(string suggestedFileName, bool showS... FILE: DS_Map/ROMFiles/GameMatrix.cs class GameMatrix (line 25) | public class GameMatrix: RomFile { method GameMatrix (line 45) | public GameMatrix(Stream data) { method GameMatrix (line 92) | public GameMatrix(int ID) : this (new FileStream(RomInfo.gameDirs[DirN... method GameMatrix (line 96) | public GameMatrix(GameMatrix copy, int newID) { method GameMatrix (line 110) | public GameMatrix() { method ResizeMatrix (line 122) | public void ResizeMatrix(int newHeight, int newWidth) method ToString (line 179) | public override string ToString() { method ToByteArray (line 182) | public override byte[] ToByteArray() { method SaveToFileDefaultDir (line 216) | public void SaveToFileDefaultDir(int IDtoReplace, bool showSuccessMess... method SaveToFileExplorePath (line 219) | public void SaveToFileExplorePath(string suggestedFileName, bool showS... FILE: DS_Map/ROMFiles/HeadbuttEncounter.cs class HeadbuttEncounter (line 4) | public class HeadbuttEncounter { method HeadbuttEncounter (line 9) | public HeadbuttEncounter() { method HeadbuttEncounter (line 15) | public HeadbuttEncounter(BinaryReader br) { method ToString (line 21) | public override string ToString() { FILE: DS_Map/ROMFiles/HeadbuttEncounterFile.cs class HeadbuttEncounterFile (line 8) | public class HeadbuttEncounterFile { method HeadbuttEncounterFile (line 22) | public HeadbuttEncounterFile(ushort id) { method HeadbuttEncounterFile (line 28) | public HeadbuttEncounterFile(string path) { method parse_file (line 32) | public void parse_file(string path) { method ToByteArray (line 81) | public byte[] ToByteArray() { method SaveToFile (line 117) | public bool SaveToFile() { method SaveToFile (line 122) | public bool SaveToFile(int id) { method SaveToFile (line 128) | public bool SaveToFile(string path, bool showSuccessMessage = true) { FILE: DS_Map/ROMFiles/HeadbuttEncounterMap.cs class HeadbuttEncounterMap (line 4) | class HeadbuttEncounterMap { method HeadbuttEncounterMap (line 9) | public HeadbuttEncounterMap(int mapID, int x, int y) { method ToString (line 15) | public override string ToString() { method Equals (line 19) | public override bool Equals(object obj) { method GetHashCode (line 32) | public override int GetHashCode() { FILE: DS_Map/ROMFiles/HeadbuttTree.cs class HeadbuttTree (line 4) | public class HeadbuttTree { type Types (line 20) | public enum Types { method HeadbuttTree (line 25) | public HeadbuttTree(ushort globalX = ushort.MaxValue, ushort globalY =... method HeadbuttTree (line 30) | public HeadbuttTree(HeadbuttTree original) { method ToString (line 97) | public override string ToString() { FILE: DS_Map/ROMFiles/HeadbuttTreeGroup.cs class HeadbuttTreeGroup (line 5) | public class HeadbuttTreeGroup { method HeadbuttTreeGroup (line 9) | public HeadbuttTreeGroup(BinaryReader br) { method HeadbuttTreeGroup (line 17) | public HeadbuttTreeGroup() { method HeadbuttTreeGroup (line 23) | public HeadbuttTreeGroup(HeadbuttTreeGroup original) { method ToString (line 29) | public override string ToString() { FILE: DS_Map/ROMFiles/LearnsetData.cs class LearnsetData (line 8) | internal class LearnsetData : RomFile { method GetLearnsetAtLevel (line 15) | public ushort[] GetLearnsetAtLevel(int atLevel) { method LearnsetData (line 40) | public LearnsetData(Stream stream) { method LearnsetData (line 64) | public LearnsetData(int ID) : this(new FileStream(RomInfo.gameDirs[Dir... method ToByteArray (line 66) | public override byte[] ToByteArray() { method SaveToFileDefaultDir (line 84) | public void SaveToFileDefaultDir(int IDtoReplace, bool showSuccessMess... method SaveToFileExplorePath (line 87) | public void SaveToFileExplorePath(string suggestedFileName, bool showS... FILE: DS_Map/ROMFiles/LevelScriptFile.cs class LevelScriptFile (line 7) | public class LevelScriptFile { method LevelScriptFile (line 11) | public LevelScriptFile() { } method LevelScriptFile (line 13) | public LevelScriptFile(int id) { method parse_file (line 20) | public void parse_file(string path) { method write_file (line 95) | public long write_file(string path, bool word_alignment_padding = fals... FILE: DS_Map/ROMFiles/LevelScriptTrigger.cs class LevelScriptTrigger (line 4) | public class LevelScriptTrigger { method LevelScriptTrigger (line 14) | public LevelScriptTrigger(int triggerType, int scriptTriggered) { method IsValidTriggerType (line 19) | public static bool IsValidTriggerType(byte triggerType) { method ToString (line 27) | public override string ToString() { FILE: DS_Map/ROMFiles/MapFile.cs class MapFile (line 48) | public class MapFile : RomFile { method MapFile (line 79) | public MapFile(string path, GameFamilies gFamily, bool discardMoveperm... method MapFile (line 80) | public MapFile(int mapNumber, GameFamilies gFamily, bool discardMovepe... method MapFile (line 81) | public MapFile(Stream data, GameFamilies gFamily, bool discardMoveperm... method BuildingsToByteArray (line 129) | public byte[] BuildingsToByteArray() { method CollisionsToByteArray (line 156) | public byte[] CollisionsToByteArray() { method ImportBuildings (line 168) | public void ImportBuildings(byte[] newData) { method LoadMapModel (line 176) | public bool LoadMapModel(byte[] newData, bool showMessages = true) { method ImportPermissions (line 199) | public void ImportPermissions(byte[] newData) { method ImportSoundPlates (line 209) | public void ImportSoundPlates(byte[] newData) { method ImportTerrain (line 214) | public void ImportTerrain(byte[] newData) { method ToByteArray (line 219) | public override byte[] ToByteArray() { method GetUsedTypes (line 243) | public SortedSet GetUsedTypes() { method SaveToFileDefaultDir (line 255) | public void SaveToFileDefaultDir(int IDtoReplace, bool showSuccessMess... method SaveToFileExplorePath (line 258) | public void SaveToFileExplorePath(string suggestedFileName, bool showS... class Building (line 267) | public class Building { method Building (line 286) | public Building(Stream data) { method Building (line 315) | public Building() { method Building (line 330) | public Building(Building toCopy) { method DegToU16 (line 348) | public static ushort DegToU16(float deg) { method U16ToDeg (line 351) | public static float U16ToDeg(ushort u16) { method LoadModelData (line 354) | public void LoadModelData(string dir) { method LoadModelData (line 358) | public void LoadModelData(bool interior) { method LoadModelDataFromID (line 375) | public void LoadModelDataFromID(int modelID, string bmDir) { FILE: DS_Map/ROMFiles/MapHeader.cs class MapHeader (line 8) | public abstract class MapHeader : RomFile { type SearchableFields (line 17) | public enum SearchableFields: byte { method BuildName (line 54) | public static string BuildName(int headerID, string name) { method LoadFromByteArray (line 58) | public static MapHeader LoadFromByteArray(byte[] headerData, ushort he... method LoadFromFile (line 79) | public static MapHeader LoadFromFile(string filename, ushort headerNum... method LoadFromARM9 (line 85) | public static MapHeader LoadFromARM9(ushort headerNumber, RomInfo.Game... method GetMapHeader (line 90) | public static MapHeader GetMapHeader(ushort headerNumber) { method GetHeaderCount (line 109) | public static int GetHeaderCount() { method SaveFile (line 120) | public void SaveFile() { class HeaderDP (line 138) | public class HeaderDP : MapHeader { method HeaderDP (line 144) | public HeaderDP(ushort headerNumber, Stream data) { method ToByteArray (line 170) | public override byte[] ToByteArray() { class HeaderPt (line 199) | public class HeaderPt : MapHeader { method HeaderPt (line 206) | public HeaderPt(ushort headerNumber, Stream data) { method ToByteArray (line 238) | public override byte[] ToByteArray() { class HeaderHGSS (line 267) | public class HeaderHGSS : MapHeader { method HeaderHGSS (line 279) | public HeaderHGSS(ushort headerNumber, Stream data) { method ToByteArray (line 323) | public override byte[] ToByteArray() { FILE: DS_Map/ROMFiles/MapScreenLoadTrigger.cs class MapScreenLoadTrigger (line 2) | public class MapScreenLoadTrigger : LevelScriptTrigger { method MapScreenLoadTrigger (line 3) | public MapScreenLoadTrigger(int type, int scriptTriggered) : base(type... method ToString (line 5) | public override string ToString() { method Equals (line 18) | public override bool Equals(object obj) { method GetHashCode (line 31) | public override int GetHashCode() { FILE: DS_Map/ROMFiles/MoveData.cs class MoveData (line 10) | public class MoveData : RomFile { type AttackRange (line 11) | public enum AttackRange : ushort { type MoveSplit (line 25) | public enum MoveSplit : byte { type ContestCondition (line 30) | public enum ContestCondition : byte { type MoveFlags (line 38) | public enum MoveFlags : byte { method MoveData (line 66) | public MoveData(Stream stream) { method MoveData (line 85) | public MoveData(int ID) : this(new FileStream(RomInfo.gameDirs[DirName... method ToByteArray (line 87) | public override byte[] ToByteArray() { method SaveToFileDefaultDir (line 113) | public void SaveToFileDefaultDir(int IDtoReplace, bool showSuccessMess... method SaveToFileExplorePath (line 116) | public void SaveToFileExplorePath(string suggestedFileName, bool showS... method UpdateFromText (line 120) | public static void UpdateFromText(MoveData m, string[] split) { method ToString (line 183) | public override string ToString() { method Equals (line 211) | public override bool Equals(object obj) { method GetHashCode (line 227) | public override int GetHashCode() { FILE: DS_Map/ROMFiles/PokemonPersonalData.cs type PokemonGender (line 8) | public enum PokemonGender { type PokemonType (line 13) | public enum PokemonType { type PokemonGrowthCurve (line 33) | public enum PokemonGrowthCurve { type PokemonEggGroup (line 42) | public enum PokemonEggGroup { type PokemonDexColor (line 60) | public enum PokemonDexColor { class PokemonPersonalData (line 74) | public class PokemonPersonalData : RomFile { method PokemonPersonalData (line 118) | public PokemonPersonalData(Stream stream) { method PokemonPersonalData (line 164) | public PokemonPersonalData(int ID) : this(new FileStream(RomInfo.gameD... method ToByteArray (line 166) | public override byte[] ToByteArray() { method BitFieldToSet (line 221) | public SortedSet BitFieldToSet(uint[] bitfield) { method SetToBitField (line 237) | public uint[] SetToBitField(SortedSet set) { method SaveToFileDefaultDir (line 257) | public void SaveToFileDefaultDir(int IDtoReplace, bool showSuccessMess... method SaveToFileExplorePath (line 260) | public void SaveToFileExplorePath(string suggestedFileName, bool showS... FILE: DS_Map/ROMFiles/RomFile.cs class RomFile (line 7) | public abstract class RomFile { method ToByteArray (line 8) | public abstract byte[] ToByteArray(); method SaveToFile (line 9) | public bool SaveToFile(string path, bool showSuccessMessage = true) { method SaveToFileDefaultDir (line 25) | protected internal bool SaveToFileDefaultDir(DirNames dir, int IDtoRep... method SaveToFileExplorePath (line 29) | protected internal void SaveToFileExplorePath(string fileType, string ... FILE: DS_Map/ROMFiles/SafariZoneEncounter.cs class SafariZoneEncounter (line 6) | public class SafariZoneEncounter method SafariZoneEncounter (line 10) | public SafariZoneEncounter() { method SafariZoneEncounter (line 15) | public SafariZoneEncounter(BinaryReader br) { method readEncounter (line 19) | public void readEncounter(BinaryReader br) { method writeEncounter (line 24) | public void writeEncounter(BinaryWriter bw) { method ToString (line 29) | public override string ToString() { FILE: DS_Map/ROMFiles/SafariZoneEncounterFile.cs class SafariZoneEncounterFile (line 5) | public class SafariZoneEncounterFile { method SafariZoneEncounterFile (line 29) | public SafariZoneEncounterFile(int id) { method SafariZoneEncounterFile (line 35) | public SafariZoneEncounterFile(string path) { method parse_file (line 39) | public void parse_file(string path) { method ToByteArray (line 62) | public byte[] ToByteArray() { method SaveToFile (line 84) | public bool SaveToFile() { method SaveToFile (line 89) | public bool SaveToFile(int id) { method SaveToFile (line 95) | public bool SaveToFile(string path, bool showSuccessMessage = true) { FILE: DS_Map/ROMFiles/SafariZoneEncounterGroup.cs class SafariZoneEncounterGroup (line 6) | public class SafariZoneEncounterGroup method readObjectSlots (line 20) | public void readObjectSlots(BinaryReader br) { method writeObjectSlots (line 24) | public void writeObjectSlots(BinaryWriter bw) { method readGroup (line 28) | public void readGroup(BinaryReader br) { method writeGroup (line 68) | public void writeGroup(BinaryWriter bw) { FILE: DS_Map/ROMFiles/SafariZoneObjectRequirement.cs class SafariZoneObjectRequirement (line 5) | public class SafariZoneObjectRequirement { method SafariZoneObjectRequirement (line 17) | public SafariZoneObjectRequirement(byte typeID = 0, byte quantity = 0) { method SafariZoneObjectRequirement (line 22) | public SafariZoneObjectRequirement(BinaryReader br) { method readRequirement (line 26) | public void readRequirement(BinaryReader br) { method writeRequirement (line 31) | public void writeRequirement(BinaryWriter bw) { method ToString (line 36) | public override string ToString() { FILE: DS_Map/ROMFiles/ScriptAction.cs class ActionContainer (line 9) | public class ActionContainer { method ActionContainer (line 14) | public ActionContainer(uint actionNumber, List actionCom... class ScriptAction (line 20) | public class ScriptAction { method ScriptAction (line 28) | public ScriptAction(ushort id, ushort? repetitionCount = null) { method ScriptAction (line 40) | public ScriptAction(string wholeLine, int lineNumber) { FILE: DS_Map/ROMFiles/ScriptActionContainer.cs class ScriptActionContainer (line 4) | public class ScriptActionContainer { method ScriptActionContainer (line 8) | public ScriptActionContainer(uint actionNumber, List com... FILE: DS_Map/ROMFiles/ScriptCommand.cs class ScriptCommand (line 9) | public class ScriptCommand { type ParamTypeEnum (line 10) | enum ParamTypeEnum { method ScriptCommand (line 26) | public ScriptCommand(ushort id, List parametersList) { method FormatCmd_Warp (line 186) | private string FormatCmd_Warp(List parametersList) { method FormatCmd_Overworld_TwoParams (line 190) | private string FormatCmd_Overworld_TwoParams(List parametersLi... method FormatCmd_Overworld_Move (line 194) | private string FormatCmd_Overworld_Move(List parametersList) { method FormatCmd_Overworld_3Coords_Dir (line 198) | private string FormatCmd_Overworld_3Coords_Dir(List parameters... method FormatCmd_Overworld_Dir (line 202) | private string FormatCmd_Overworld_Dir(List parametersList) { method ScriptCommand (line 206) | public ScriptCommand(string wholeLine, int lineNumber = 0) { method FormatNumber (line 356) | private string FormatNumber(byte[] par, ParamTypeEnum paramType = Para... method FormatNumber (line 374) | private string FormatNumber(uint num, ParamTypeEnum paramType = ParamT... method ToString (line 443) | public override string ToString() { FILE: DS_Map/ROMFiles/ScriptCommandContainer.cs class ScriptCommandContainer (line 4) | public class ScriptCommandContainer { method ScriptCommandContainer (line 11) | public ScriptCommandContainer(uint scriptNumber, ScriptFile.ContainerT... method ScriptCommandContainer (line 18) | public ScriptCommandContainer(uint newID, ScriptCommandContainer toCop... FILE: DS_Map/ROMFiles/ScriptFile.cs class ScriptFile (line 13) | public class ScriptFile : RomFile { type ContainerTypes (line 15) | public enum ContainerTypes { type ContainerReference (line 21) | public struct ContainerReference { method ScriptFile (line 36) | public ScriptFile(Stream fs, bool readFunctions = true, bool readActio... method ScriptFile (line 153) | public ScriptFile(int fileID, bool readFunctions = true, bool readActi... method getFileStream (line 157) | static FileStream getFileStream(int fileID) { method ToString (line 162) | public override string ToString() { method ScriptFile (line 167) | public ScriptFile(List scripts, List scriptLines, IEnumerable... method ReadCommand (line 218) | private ScriptCommand ReadCommand(BinaryReader dataReader, ref List parameterList, ushor... method AddReference (line 488) | private void AddReference(ref List references, ushort... method ReadCommandsFromLines (line 500) | private List ReadCommandsFromLines(List ReadActionsFromLines(List ... method ToByteArray (line 634) | public override byte[] ToByteArray() { method FunctionIsInvoked (line 849) | private bool FunctionIsInvoked(List refList, SortedSe... method SaveToFileDefaultDir (line 893) | public bool SaveToFileDefaultDir(int IDtoReplace, bool showSuccessMess... method SaveToFileExplorePath (line 897) | public void SaveToFileExplorePath(string suggestedFileName, bool blind... FILE: DS_Map/ROMFiles/ScriptReference.cs class ScriptReference (line 2) | internal class ScriptReference { method ScriptReference (line 9) | public ScriptReference(ScriptFile.ContainerTypes typeOfCaller, uint ca... method ToString (line 18) | public override string ToString() { FILE: DS_Map/ROMFiles/SpeciesFile.cs class SpeciesFile (line 9) | public class SpeciesFile method SpeciesFile (line 34) | public SpeciesFile(FileStream pokeData) method hasMoreThanOneGender (line 47) | public static bool hasMoreThanOneGender(int pokemonID, SpeciesFile[] p... FILE: DS_Map/ROMFiles/TextArchive.cs class TextArchive (line 17) | public class TextArchive : RomFile method TextArchive (line 28) | public TextArchive(FileStream messageStream, List msg, bool di... method TextArchive (line 33) | public TextArchive(int ID, List msg = null, bool discardLines ... method EncodeString (line 41) | public int[] EncodeString(string currentMessage, int stringIndex, int ... method GetStringLength (line 140) | public int GetStringLength(string currentMessage) method ToByteArray (line 224) | private byte[] ToByteArray(List msgSource) method ToString (line 266) | public override string ToString() method ToByteArray (line 271) | public override byte[] ToByteArray() method SaveToFileDefaultDir (line 276) | public void SaveToFileDefaultDir(int IDtoReplace, bool showSuccessMess... method SaveToFileExplorePath (line 285) | public void SaveToFileExplorePath(string suggestedFileName, bool showS... FILE: DS_Map/ROMFiles/TrainerFile.cs class PartyPokemon (line 9) | public class PartyPokemon : RomFile { type GenderAndAbilityFlags (line 27) | public enum GenderAndAbilityFlags { method PartyPokemon (line 37) | public PartyPokemon(bool chooseItems = false, bool chooseMoves = false) { method PartyPokemon (line 41) | public PartyPokemon(byte difficulty, GenderAndAbilityFlags genderAndAb... method PartyPokemon (line 51) | public PartyPokemon(byte difficulty, ushort Level, ushort pokeNum, ush... method PartyPokemon (line 59) | public PartyPokemon(byte difficulty, GenderAndAbilityFlags genderAndAb... method ToByteArray (line 64) | public override byte[] ToByteArray() { method UpdateItemsAndMoves (line 86) | public void UpdateItemsAndMoves(bool chooseItems = false, bool chooseM... method ToString (line 95) | public override string ToString() { method CheckEmpty (line 98) | public bool CheckEmpty() { class TrainerProperties (line 104) | public class TrainerProperties : RomFile { method TrainerProperties (line 124) | public TrainerProperties(ushort ID, byte partyCount = 0) { method TrainerProperties (line 130) | public TrainerProperties(ushort ID, Stream trainerPropertiesStream) { method ToByteArray (line 152) | public override byte[] ToByteArray() { method SaveToFileExplorePath (line 181) | public void SaveToFileExplorePath(string suggestedFileName, bool showS... class Party (line 188) | public class Party : RomFile { method Party (line 194) | public Party(int POKE_IN_PARTY, bool init, TrainerProperties trp) { method Party (line 205) | public Party(bool readFirstByte, int maxPoke, Stream partyData, Traine... method ToString (line 275) | public override string ToString() { method CountNonEmptyMons (line 292) | public byte CountNonEmptyMons() { method ToByteArray (line 303) | public override byte[] ToByteArray() { method SaveToFileExplorePath (line 319) | public void SaveToFileExplorePath(string suggestedFileName, bool showS... class TrainerFile (line 323) | public class TrainerFile : RomFile { method TrainerFile (line 335) | public TrainerFile(TrainerProperties trp, string name = "") { method TrainerFile (line 341) | public TrainerFile(TrainerProperties trp, Stream partyData, string nam... method ToByteArray (line 349) | public override byte[] ToByteArray() { method SaveToFileExplorePath (line 365) | public void SaveToFileExplorePath(string suggestedFileName, bool showS... FILE: DS_Map/ROMFiles/VariableValueTrigger.cs class VariableValueTrigger (line 2) | public class VariableValueTrigger : LevelScriptTrigger { method VariableValueTrigger (line 6) | public VariableValueTrigger(int scriptIDtoTrigger, int variableToWatch... method ToString (line 11) | public override string ToString() { method Equals (line 15) | public override bool Equals(object obj) { method GetHashCode (line 28) | public override int GetHashCode() { FILE: DS_Map/Resources/CommandsDatabase.Designer.cs class CommandsDatabase (line 3) | partial class CommandsDatabase { method Dispose (line 13) | protected override void Dispose(bool disposing) { method InitializeComponent (line 26) | private void InitializeComponent() { FILE: DS_Map/Resources/CommandsDatabase.cs class CommandsDatabase (line 7) | public partial class CommandsDatabase : Form { method CommandsDatabase (line 17) | public CommandsDatabase(Dictionary namesDict, Dictiona... method SetupFromScriptDictionaries (line 42) | private void SetupFromScriptDictionaries(DataGridView table, int entri... method startSearchButtonScripts_Click (line 84) | private void startSearchButtonScripts_Click(object sender, EventArgs e) { method startSearchButtonActions_Click (line 87) | private void startSearchButtonActions_Click(object sender, EventArgs e) { method StartSearch (line 90) | private void StartSearch(DataGridView table, TextBox searchBox, List BuildCommandNamesDatabase(Gam... method BuildCommandParametersDatabase (line 275) | public static Dictionary BuildCommandParametersDatabas... method BuildActionNamesDatabase (line 304) | public static Dictionary BuildActionNamesDatabase(Game... method BuildComparisonOperatorsDatabase (line 323) | public static Dictionary BuildComparisonOperatorsDatab... method Set3DOverworldsDict (line 339) | public static void Set3DOverworldsDict() method SetHeaderTableOffset (line 354) | public static void SetHeaderTableOffset() method SetupSpawnSettings (line 447) | public static void SetupSpawnSettings() method PrepareCameraData (line 546) | public static void PrepareCameraData() method SetOWtable (line 583) | public static void SetOWtable() method SetConditionalMusicTableOffsetToRAMAddress (line 706) | public static void SetConditionalMusicTableOffsetToRAMAddress() method SetBattleEffectsData (line 732) | public static void SetBattleEffectsData() method SetEncounterMusicTableOffsetToRAMAddress (line 787) | public static void SetEncounterMusicTableOffsetToRAMAddress() method SetMonIconsPalTableAddress (line 853) | public static void SetMonIconsPalTableAddress() method SetItemScriptFileNumber (line 940) | private static void SetItemScriptFileNumber() method SetNullEncounterID (line 958) | private static void SetNullEncounterID() method SetAbilityNamesTextNumber (line 973) | private static void SetAbilityNamesTextNumber() method SetAttackNamesTextNumber (line 994) | private static void SetAttackNamesTextNumber() method SetItemNamesTextNumber (line 1012) | private static void SetItemNamesTextNumber() method SetLocationNamesTextNumber (line 1030) | private static void SetLocationNamesTextNumber() method SetPokemonNamesTextNumber (line 1048) | private static void SetPokemonNamesTextNumber() method SetTrainerNamesMessageNumber (line 1066) | private static void SetTrainerNamesMessageNumber() method SetTrainerClassMessageNumber (line 1092) | private static void SetTrainerClassMessageNumber() method SetMoveTextNumbers (line 1117) | private static void SetMoveTextNumbers() { method SetTrainerFunnyScriptNumber (line 1132) | private static void SetTrainerFunnyScriptNumber() { method SetTrainerNameLenOffset (line 1148) | private static void SetTrainerNameLenOffset() method SetTrainerNameMaxLen (line 1232) | public static int SetTrainerNameMaxLen() method GetBuildingModelsDirPath (line 1246) | public string GetBuildingModelsDirPath(bool interior) => interior ? ga... method GetRomNameFromWorkdir (line 1248) | public string GetRomNameFromWorkdir() => workDir.Substring(0, workDir.... method GetHeaderCount (line 1250) | public static int GetHeaderCount() => (int)new FileInfo(internalNamesP... method GetLocationNames (line 1252) | public static List GetLocationNames() => new TextArchive(locat... method GetSimpleTrainerNames (line 1254) | public static string[] GetSimpleTrainerNames() => new TextArchive(trai... method GetTrainerClassNames (line 1256) | public static string[] GetTrainerClassNames() => new TextArchive(train... method GetItemNames (line 1258) | public static string[] GetItemNames() => new TextArchive(itemNamesText... method GetItemNames (line 1260) | public static string[] GetItemNames(int startIndex = 0, int? count = n... method GetPokemonNames (line 1266) | public static string[] GetPokemonNames() => new TextArchive(pokemonNam... method GetAbilityNames (line 1268) | public static string[] GetAbilityNames() => new TextArchive(abilityNam... method GetAttackNames (line 1270) | public static string[] GetAttackNames() => new TextArchive(attackNames... method GetLearnsetFilesCount (line 1272) | public static int GetLearnsetFilesCount() => Directory.GetFiles(gameDi... method GetPersonalFilesCount (line 1274) | public static int GetPersonalFilesCount() => Directory.GetFiles(gameDi... method GetEvolutionFilesList (line 1276) | public static string[] GetEvolutionFilesList() => Directory.GetFiles(g... method GetEvolutionFilesCount (line 1278) | public static int GetEvolutionFilesCount() => GetEvolutionFilesList().... method GetBattleEffectSequenceFiles (line 1279) | public static string[] GetBattleEffectSequenceFiles() => Directory.Get... method GetBattleEffectSequenceFilesCount (line 1280) | public static int GetBattleEffectSequenceFilesCount() => GetBattleEffe... method GetAreaDataCount (line 1282) | public int GetAreaDataCount() => Directory.GetFiles(gameDirs[DirNames.... method GetMapTexturesCount (line 1284) | public int GetMapTexturesCount() => Directory.GetFiles(gameDirs[DirNam... method GetBuildingTexturesCount (line 1286) | public int GetBuildingTexturesCount() => Directory.GetFiles(gameDirs[D... method GetMatrixCount (line 1288) | public int GetMatrixCount() => Directory.GetFiles(gameDirs[DirNames.ma... method GetTextArchivesCount (line 1290) | public int GetTextArchivesCount() => Directory.GetFiles(gameDirs[DirNa... method GetMapCount (line 1292) | public int GetMapCount() => Directory.GetFiles(gameDirs[DirNames.maps]... method GetEventCount (line 1294) | public int GetEventCount() => Directory.GetFiles(gameDirs[DirNames.eve... method GetScriptCount (line 1296) | public int GetScriptCount() => Directory.GetFiles(gameDirs[DirNames.sc... method GetBuildingCount (line 1298) | public int GetBuildingCount(bool interior) => Directory.GetFiles(GetBu... method GetEventFileCount (line 1300) | public static int GetEventFileCount() => Directory.GetFiles(RomInfo.ga... method LoadGameLanguage (line 1306) | private void LoadGameLanguage() method LoadGameFamily (line 1357) | private void LoadGameFamily() method SetNarcDirs (line 1377) | private void SetNarcDirs() method ResetMapCellsColorDictionary (line 1518) | public void ResetMapCellsColorDictionary() method ReadOWTable (line 1533) | public static void ReadOWTable() FILE: DS_Map/ScintillaUtils/HotKeyManager.cs class HotKeyManager (line 8) | internal class HotKeyManager { method AddHotKey (line 12) | public static void AddHotKey(Scintilla control, Action function, Keys ... method IsHotkey (line 20) | public static bool IsHotkey(KeyEventArgs eventData, Keys key, bool ctr... FILE: DS_Map/ScintillaUtils/ScriptTooltip.Designer.cs class ScriptTooltip (line 3) | partial class ScriptTooltip { method Dispose (line 13) | protected override void Dispose(bool disposing) { method InitializeComponent (line 26) | private void InitializeComponent() { FILE: DS_Map/ScintillaUtils/ScriptTooltip.cs class ScriptTooltip (line 10) | public partial class ScriptTooltip : Form { method CreateRoundRectangleRegion (line 11) | [DllImport("Gdi32.dll", EntryPoint = "CreateRoundRectRgn")] method ScriptTooltip (line 24) | public ScriptTooltip(string mainKeywords, string textBuffer) { method WriteText (line 52) | public void WriteText(int delay = 15) { method ToString (line 64) | public override string ToString() { FILE: DS_Map/ScintillaUtils/SearchManager.cs class SearchManager (line 5) | internal class SearchManager { method SearchManager (line 16) | public SearchManager(Form mainprogram, Scintilla TextArea, TextBox Sea... method Find (line 23) | public void Find(bool next, bool incremental, string searchThis = null) { method OpenSearch (line 100) | public void OpenSearch() { method CloseSearch (line 117) | public void CloseSearch() { method InvokeIfNeeded (line 127) | public void InvokeIfNeeded(Form MainProgram, Action action) { FILE: DS_Map/SpawnEditor.Designer.cs class SpawnEditor (line 3) | partial class SpawnEditor { method Dispose (line 13) | protected override void Dispose(bool disposing) { method InitializeComponent (line 26) | private void InitializeComponent() { FILE: DS_Map/SpawnEditor.cs class SpawnEditor (line 9) | public partial class SpawnEditor : Form { method SpawnEditor (line 12) | public SpawnEditor(HashSet results, List allNames, ush... method SpawnEditor (line 28) | public SpawnEditor(List allNames) { method SetupFields (line 34) | private void SetupFields(IEnumerable headersList) { method SetupHeadersList (line 40) | private void SetupHeadersList(IEnumerable headersList) { method SetupDirections (line 44) | private void SetupDirections () { method saveSpawnEditorButton_Click (line 48) | private void saveSpawnEditorButton_Click(object sender, EventArgs e) { method readDefaultSpawnPosButton_Click (line 69) | private void readDefaultSpawnPosButton_Click(object sender, EventArgs ... method ReadDefaultMoney (line 97) | private void ReadDefaultMoney() { method spawnHeaderComboBox_IndexChanged (line 108) | private void spawnHeaderComboBox_IndexChanged(object sender, EventArgs... method resetFilterButton_Click (line 135) | private void resetFilterButton_Click(object sender, EventArgs e) { FILE: DS_Map/UniqueList.cs class UniqueList (line 5) | public class UniqueList { method UniqueList (line 9) | public UniqueList(int capacity) { method UniqueList (line 14) | public UniqueList() { } method Add (line 16) | public void Add(T item) { method Contains (line 23) | public bool Contains(T item) { method Clear (line 27) | public void Clear() { method Remove (line 32) | public bool Remove(T item) { method RemoveAt (line 40) | public bool RemoveAt(int index) { method Find (line 51) | public T Find(Predicate match) { method FindIndex (line 54) | public int FindIndex(Predicate match) { method Sort (line 57) | public void Sort() { method GetEnumerator (line 60) | public IEnumerator GetEnumerator() { FILE: DS_Map/WildEditorDPPt.Designer.cs class WildEditorDPPt (line 3) | partial class WildEditorDPPt method Dispose (line 14) | protected override void Dispose(bool disposing) method InitializeComponent (line 29) | private void InitializeComponent() FILE: DS_Map/WildEditorDPPt.cs class WildEditorDPPt (line 10) | public partial class WildEditorDPPt : Form { method WildEditorDPPt (line 14) | public WildEditorDPPt(string dirPath, string[] names, int encToOpen, i... method SetupControls (line 89) | private void SetupControls() { method GetDSPREVersion (line 238) | public string GetDSPREVersion() { method exportEncounterFileButton_Click (line 243) | private void exportEncounterFileButton_Click(object sender, EventArgs ... method importEncounterFileButton_Click (line 246) | private void importEncounterFileButton_Click(object sender, EventArgs ... method selectEncounterComboBox_SelectedIndexChanged (line 261) | private void selectEncounterComboBox_SelectedIndexChanged(object sende... method saveEncountersButton_Click (line 269) | private void saveEncountersButton_Click(object sender, EventArgs e) { method walkingTwentyFirstComboBox_SelectedIndexChanged (line 272) | private void walkingTwentyFirstComboBox_SelectedIndexChanged(object se... method walkingTwentySecondComboBox_SelectedIndexChanged (line 278) | private void walkingTwentySecondComboBox_SelectedIndexChanged(object s... method walkingTenFirstComboBox_SelectedIndexChanged (line 284) | private void walkingTenFirstComboBox_SelectedIndexChanged(object sende... method walkingTenSecondComboBox_SelectedIndexChanged (line 290) | private void walkingTenSecondComboBox_SelectedIndexChanged(object send... method walkingTenThirdComboBox_SelectedIndexChanged (line 296) | private void walkingTenThirdComboBox_SelectedIndexChanged(object sende... method walkingTenFourthComboBox_SelectedIndexChanged (line 302) | private void walkingTenFourthComboBox_SelectedIndexChanged(object send... method walkingFiveFirstComboBox_SelectedIndexChanged (line 308) | private void walkingFiveFirstComboBox_SelectedIndexChanged(object send... method walkingFiveSecondComboBox_SelectedIndexChanged (line 314) | private void walkingFiveSecondComboBox_SelectedIndexChanged(object sen... method walkingFourFirstComboBox_SelectedIndexChanged (line 320) | private void walkingFourFirstComboBox_SelectedIndexChanged(object send... method walkingFourSecondComboBox_SelectedIndexChanged (line 326) | private void walkingFourSecondComboBox_SelectedIndexChanged(object sen... method walkingOneFirstComboBox_SelectedIndexChanged (line 332) | private void walkingOneFirstComboBox_SelectedIndexChanged(object sende... method walkingOneSecondComboBox_SelectedIndexChanged (line 338) | private void walkingOneSecondComboBox_SelectedIndexChanged(object send... method morningFirstComboBox_SelectedIndexChanged (line 344) | private void morningFirstComboBox_SelectedIndexChanged(object sender, ... method morningSecondComboBox_SelectedIndexChanged (line 350) | private void morningSecondComboBox_SelectedIndexChanged(object sender,... method nightFirstComboBox_SelectedIndexChanged (line 356) | private void nightFirstComboBox_SelectedIndexChanged(object sender, Ev... method nightSecondComboBox_SelectedIndexChanged (line 362) | private void nightSecondComboBox_SelectedIndexChanged(object sender, E... method swarmFirstComboBox_SelectedIndexChanged (line 368) | private void swarmFirstComboBox_SelectedIndexChanged(object sender, Ev... method swarmSecondComboBox_SelectedIndexChanged (line 374) | private void swarmSecondComboBox_SelectedIndexChanged(object sender, E... method rubyFirstComboBox_SelectedIndexChanged (line 380) | private void rubyFirstComboBox_SelectedIndexChanged(object sender, Eve... method rubySecondComboBox_SelectedIndexChanged (line 386) | private void rubySecondComboBox_SelectedIndexChanged(object sender, Ev... method sapphireFirstComboBox_SelectedIndexChanged (line 392) | private void sapphireFirstComboBox_SelectedIndexChanged(object sender,... method sapphireSecondComboBox_SelectedIndexChanged (line 398) | private void sapphireSecondComboBox_SelectedIndexChanged(object sender... method emeraldFirstComboBox_SelectedIndexChanged (line 404) | private void emeraldFirstComboBox_SelectedIndexChanged(object sender, ... method emeraldSecondComboBox_SelectedIndexChanged (line 410) | private void emeraldSecondComboBox_SelectedIndexChanged(object sender,... method fireRedFirstComboBox_SelectedIndexChanged (line 416) | private void fireRedFirstComboBox_SelectedIndexChanged(object sender, ... method fireRedSecondComboBox_SelectedIndexChanged (line 422) | private void fireRedSecondComboBox_SelectedIndexChanged(object sender,... method leafGreenFirstComboBox_SelectedIndexChanged (line 428) | private void leafGreenFirstComboBox_SelectedIndexChanged(object sender... method leafGreenSecondComboBox_SelectedIndexChanged (line 434) | private void leafGreenSecondComboBox_SelectedIndexChanged(object sende... method radarFirstComboBox_SelectedIndexChanged (line 440) | private void radarFirstComboBox_SelectedIndexChanged(object sender, Ev... method radarSecondComboBox_SelectedIndexChanged (line 446) | private void radarSecondComboBox_SelectedIndexChanged(object sender, E... method radarThirdComboBox_SelectedIndexChanged (line 452) | private void radarThirdComboBox_SelectedIndexChanged(object sender, Ev... method radarFourthComboBox_SelectedIndexChanged (line 458) | private void radarFourthComboBox_SelectedIndexChanged(object sender, E... method surfSixtyComboBox_SelectedIndexChanged (line 464) | private void surfSixtyComboBox_SelectedIndexChanged(object sender, Eve... method surfThirtyComboBox_SelectedIndexChanged (line 470) | private void surfThirtyComboBox_SelectedIndexChanged(object sender, Ev... method surfFiveComboBox_SelectedIndexChanged (line 476) | private void surfFiveComboBox_SelectedIndexChanged(object sender, Even... method surfFourComboBox_SelectedIndexChanged (line 482) | private void surfFourComboBox_SelectedIndexChanged(object sender, Even... method surfOneComboBox_SelectedIndexChanged (line 488) | private void surfOneComboBox_SelectedIndexChanged(object sender, Event... method oldRodSixtyComboBox_SelectedIndexChanged (line 494) | private void oldRodSixtyComboBox_SelectedIndexChanged(object sender, E... method oldRodThirtyComboBox_SelectedIndexChanged (line 500) | private void oldRodThirtyComboBox_SelectedIndexChanged(object sender, ... method oldRodFiveComboBox_SelectedIndexChanged (line 506) | private void oldRodFiveComboBox_SelectedIndexChanged(object sender, Ev... method oldRodFourComboBox_SelectedIndexChanged (line 512) | private void oldRodFourComboBox_SelectedIndexChanged(object sender, Ev... method oldRodOneComboBox_SelectedIndexChanged (line 518) | private void oldRodOneComboBox_SelectedIndexChanged(object sender, Eve... method goodRodFirstFortyComboBox_SelectedIndexChanged (line 524) | private void goodRodFirstFortyComboBox_SelectedIndexChanged(object sen... method goodRodSecondFortyComboBox_SelectedIndexChanged (line 530) | private void goodRodSecondFortyComboBox_SelectedIndexChanged(object se... method goodRodFifteenComboBox_SelectedIndexChanged (line 536) | private void goodRodFifteenComboBox_SelectedIndexChanged(object sender... method goodRodFourComboBox_SelectedIndexChanged (line 542) | private void goodRodFourComboBox_SelectedIndexChanged(object sender, E... method goodRodOneComboBox_SelectedIndexChanged (line 548) | private void goodRodOneComboBox_SelectedIndexChanged(object sender, Ev... method superRodFirstFortyComboBox_SelectedIndexChanged (line 554) | private void superRodFirstFortyComboBox_SelectedIndexChanged(object se... method superRodSecondFortyComboBox_SelectedIndexChanged (line 560) | private void superRodSecondFortyComboBox_SelectedIndexChanged(object s... method superRodFifteenComboBox_SelectedIndexChanged (line 566) | private void superRodFifteenComboBox_SelectedIndexChanged(object sende... method superRodFourComboBox_SelectedIndexChanged (line 572) | private void superRodFourComboBox_SelectedIndexChanged(object sender, ... method superRodOneComboBox_SelectedIndexChanged (line 578) | private void superRodOneComboBox_SelectedIndexChanged(object sender, E... method walkingTwentyFirstUpDown_ValueChanged (line 586) | private void walkingTwentyFirstUpDown_ValueChanged(object sender, Even... method walkingTwentySecondUpDown_ValueChanged (line 592) | private void walkingTwentySecondUpDown_ValueChanged(object sender, Eve... method walkingTenFirstUpDown_ValueChanged (line 598) | private void walkingTenFirstUpDown_ValueChanged(object sender, EventAr... method walkingTenSecondUpDown_ValueChanged (line 604) | private void walkingTenSecondUpDown_ValueChanged(object sender, EventA... method walkingTenThirdUpDown_ValueChanged (line 610) | private void walkingTenThirdUpDown_ValueChanged(object sender, EventAr... method walkingTenFourthUpDown_ValueChanged (line 616) | private void walkingTenFourthUpDown_ValueChanged(object sender, EventA... method walkingFiveFirstUpDown_ValueChanged (line 622) | private void walkingFiveFirstUpDown_ValueChanged(object sender, EventA... method walkingFiveSecondUpDown_ValueChanged (line 628) | private void walkingFiveSecondUpDown_ValueChanged(object sender, Event... method walkingFourFirstUpDown_ValueChanged (line 634) | private void walkingFourFirstUpDown_ValueChanged(object sender, EventA... method walkingFourSecondUpDown_ValueChanged (line 640) | private void walkingFourSecondUpDown_ValueChanged(object sender, Event... method walkingOneFirstUpDown_ValueChanged (line 646) | private void walkingOneFirstUpDown_ValueChanged(object sender, EventAr... method walkingOneSecondUpDown_ValueChanged (line 652) | private void walkingOneSecondUpDown_ValueChanged(object sender, EventA... method surfSixtyMinLevelUpDown_ValueChanged (line 660) | private void surfSixtyMinLevelUpDown_ValueChanged(object sender, Event... method surfThirtyMinLevelUpDown_ValueChanged (line 666) | private void surfThirtyMinLevelUpDown_ValueChanged(object sender, Even... method surfFiveMinLevelUpDown_ValueChanged (line 672) | private void surfFiveMinLevelUpDown_ValueChanged(object sender, EventA... method surfFourMinLevelUpDown_ValueChanged (line 678) | private void surfFourMinLevelUpDown_ValueChanged(object sender, EventA... method surfOneMinLevelUpDown_ValueChanged (line 684) | private void surfOneMinLevelUpDown_ValueChanged(object sender, EventAr... method surfSixtyMaxLevelUpDown_ValueChanged (line 690) | private void surfSixtyMaxLevelUpDown_ValueChanged(object sender, Event... method surfThirtyMaxLevelUpDown_ValueChanged (line 696) | private void surfThirtyMaxLevelUpDown_ValueChanged(object sender, Even... method surfFiveMaxLevelUpDown_ValueChanged (line 702) | private void surfFiveMaxLevelUpDown_ValueChanged(object sender, EventA... method surfFourMaxLevelUpDown_ValueChanged (line 708) | private void surfFourMaxLevelUpDown_ValueChanged(object sender, EventA... method surfOneMaxLevelUpDown_ValueChanged (line 714) | private void surfOneMaxLevelUpDown_ValueChanged(object sender, EventAr... method oldRodSixtyMinLevelUpDown_ValueChanged (line 721) | private void oldRodSixtyMinLevelUpDown_ValueChanged(object sender, Eve... method oldRodThirtyMinLevelUpDown_ValueChanged (line 727) | private void oldRodThirtyMinLevelUpDown_ValueChanged(object sender, Ev... method oldRodFiveMinLevelUpDown_ValueChanged (line 733) | private void oldRodFiveMinLevelUpDown_ValueChanged(object sender, Even... method oldRodFourMinLevelUpDown_ValueChanged (line 739) | private void oldRodFourMinLevelUpDown_ValueChanged(object sender, Even... method oldRodOneMinLevelUpDown_ValueChanged (line 745) | private void oldRodOneMinLevelUpDown_ValueChanged(object sender, Event... method oldRodSixtyMaxLevelUpDown_ValueChanged (line 751) | private void oldRodSixtyMaxLevelUpDown_ValueChanged(object sender, Eve... method oldRodThirtyMaxLevelUpDown_ValueChanged (line 757) | private void oldRodThirtyMaxLevelUpDown_ValueChanged(object sender, Ev... method oldRodFiveMaxLevelUpDown_ValueChanged (line 763) | private void oldRodFiveMaxLevelUpDown_ValueChanged(object sender, Even... method oldRodFourMaxLevelUpDown_ValueChanged (line 769) | private void oldRodFourMaxLevelUpDown_ValueChanged(object sender, Even... method oldRodOneMaxLevelUpDown_ValueChanged (line 775) | private void oldRodOneMaxLevelUpDown_ValueChanged(object sender, Event... method goodRodFirstFortyMinLevelUpDown_ValueChanged (line 782) | private void goodRodFirstFortyMinLevelUpDown_ValueChanged(object sende... method goodRodSecondFortyMinLevelUpDown_ValueChanged (line 788) | private void goodRodSecondFortyMinLevelUpDown_ValueChanged(object send... method goodRodFifteenMinLevelUpDown_ValueChanged (line 794) | private void goodRodFifteenMinLevelUpDown_ValueChanged(object sender, ... method goodRodFourMinLevelUpDown_ValueChanged (line 800) | private void goodRodFourMinLevelUpDown_ValueChanged(object sender, Eve... method goodRodOneMinLevelUpDown_ValueChanged (line 806) | private void goodRodOneMinLevelUpDown_ValueChanged(object sender, Even... method goodRodFirstFortyMaxLevelUpDown_ValueChanged (line 812) | private void goodRodFirstFortyMaxLevelUpDown_ValueChanged(object sende... method goodRodSecondFortyMaxLevelUpDown_ValueChanged (line 818) | private void goodRodSecondFortyMaxLevelUpDown_ValueChanged(object send... method goodRodFifteenMaxLevelUpDown_ValueChanged (line 824) | private void goodRodFifteenMaxLevelUpDown_ValueChanged(object sender, ... method goodRodFourMaxLevelUpDown_ValueChanged (line 830) | private void goodRodFourMaxLevelUpDown_ValueChanged(object sender, Eve... method goodRodOneMaxLevelUpDown_ValueChanged (line 836) | private void goodRodOneMaxLevelUpDown_ValueChanged(object sender, Even... method superRodFirstFortyMinLevelUpDown_ValueChanged (line 843) | private void superRodFirstFortyMinLevelUpDown_ValueChanged(object send... method superRodSecondFortyMinLevelUpDown_ValueChanged (line 849) | private void superRodSecondFortyMinLevelUpDown_ValueChanged(object sen... method superRodFifteenMinLevelUpDown_ValueChanged (line 855) | private void superRodFifteenMinLevelUpDown_ValueChanged(object sender,... method superRodFourMinLevelUpDown_ValueChanged (line 861) | private void superRodFourMinLevelUpDown_ValueChanged(object sender, Ev... method superRodOneMinLevelUpDown_ValueChanged (line 867) | private void superRodOneMinLevelUpDown_ValueChanged(object sender, Eve... method superRodFirstFortyMaxLevelUpDown_ValueChanged (line 873) | private void superRodFirstFortyMaxLevelUpDown_ValueChanged(object send... method superRodSecondFortyMaxLevelUpDown_ValueChanged (line 879) | private void superRodSecondFortyMaxLevelUpDown_ValueChanged(object sen... method superRodFifteenMaxLevelUpDown_ValueChanged (line 885) | private void superRodFifteenMaxLevelUpDown_ValueChanged(object sender,... method superRodFourMaxLevelUpDown_ValueChanged (line 891) | private void superRodFourMaxLevelUpDown_ValueChanged(object sender, Ev... method superRodOneMaxLevelUpDown_ValueChanged (line 897) | private void superRodOneMaxLevelUpDown_ValueChanged(object sender, Eve... method walkingRateUpDown_ValueChanged (line 905) | private void walkingRateUpDown_ValueChanged(object sender, EventArgs e) { method surfRateUpDown_ValueChanged (line 911) | private void surfRateUpDown_ValueChanged(object sender, EventArgs e) { method oldRodRateUpDown_ValueChanged (line 917) | private void oldRodRateUpDown_ValueChanged(object sender, EventArgs e) { method goodRodRateUpDown_ValueChanged (line 923) | private void goodRodRateUpDown_ValueChanged(object sender, EventArgs e) { method superRodRateUpDown_ValueChanged (line 930) | private void superRodRateUpDown_ValueChanged(object sender, EventArgs ... method addEncounterFileButton_Click (line 937) | private void addEncounterFileButton_Click(object sender, EventArgs e) { method removeLastEncounterFileButton_Click (line 951) | private void removeLastEncounterFileButton_Click(object sender, EventA... method repairAllButton_Click (line 972) | private void repairAllButton_Click(object sender, EventArgs e) { FILE: DS_Map/WildEditorHGSS.Designer.cs class WildEditorHGSS (line 3) | partial class WildEditorHGSS method Dispose (line 14) | protected override void Dispose(bool disposing) method InitializeComponent (line 29) | private void InitializeComponent() FILE: DS_Map/WildEditorHGSS.cs class WildEditorHGSS (line 10) | public partial class WildEditorHGSS : Form { method WildEditorHGSS (line 14) | public WildEditorHGSS(string dirPath, string[] names, int encToOpen, i... method GetDSPREVersion (line 93) | public string GetDSPREVersion() { method SetupControls (line 98) | public void SetupControls() { method exportEncounterFileButton_Click (line 269) | private void exportEncounterFileButton_Click(object sender, EventArgs ... method importEncounterFileButton_Click (line 272) | private void importEncounterFileButton_Click(object sender, EventArgs ... method selectEncounterComboBox_SelectedIndexChanged (line 287) | private void selectEncounterComboBox_SelectedIndexChanged(object sende... method saveEncountersButton_Click (line 295) | private void saveEncountersButton_Click(object sender, EventArgs e) { method walkingRateUpDown_ValueChanged (line 299) | private void walkingRateUpDown_ValueChanged(object sender, EventArgs e) { method rockSmashRateUpDown_ValueChanged (line 305) | private void rockSmashRateUpDown_ValueChanged(object sender, EventArgs... method surfRateUpDown_ValueChanged (line 311) | private void surfRateUpDown_ValueChanged(object sender, EventArgs e) { method oldRodRateUpDown_ValueChanged (line 317) | private void oldRodRateUpDown_ValueChanged(object sender, EventArgs e) { method goodRodRateUpDown_ValueChanged (line 323) | private void goodRodRateUpDown_ValueChanged(object sender, EventArgs e) { method superRodRateUpDown_ValueChanged (line 329) | private void superRodRateUpDown_ValueChanged(object sender, EventArgs ... method morningTwentyFirstComboBox_SelectedIndexChanged (line 335) | private void morningTwentyFirstComboBox_SelectedIndexChanged(object se... method morningTwentySecondComboBox_SelectedIndexChanged (line 341) | private void morningTwentySecondComboBox_SelectedIndexChanged(object s... method morningTenFirstComboBox_SelectedIndexChanged (line 347) | private void morningTenFirstComboBox_SelectedIndexChanged(object sende... method morningTenSecondComboBox_SelectedIndexChanged (line 353) | private void morningTenSecondComboBox_SelectedIndexChanged(object send... method morningTenThirdComboBox_SelectedIndexChanged (line 359) | private void morningTenThirdComboBox_SelectedIndexChanged(object sende... method morningTenFourthComboBox_SelectedIndexChanged (line 365) | private void morningTenFourthComboBox_SelectedIndexChanged(object send... method morningFiveFirstComboBox_SelectedIndexChanged (line 371) | private void morningFiveFirstComboBox_SelectedIndexChanged(object send... method morningFiveSecondComboBox_SelectedIndexChanged (line 377) | private void morningFiveSecondComboBox_SelectedIndexChanged(object sen... method morningFourFirstComboBox_SelectedIndexChanged (line 383) | private void morningFourFirstComboBox_SelectedIndexChanged(object send... method morningFourSecondComboBox_SelectedIndexChanged (line 389) | private void morningFourSecondComboBox_SelectedIndexChanged(object sen... method morningOneFirstComboBox_SelectedIndexChanged (line 395) | private void morningOneFirstComboBox_SelectedIndexChanged(object sende... method morningOneSecondComboBox_SelectedIndexChanged (line 401) | private void morningOneSecondComboBox_SelectedIndexChanged(object send... method dayTwentyFirstComboBox_SelectedIndexChanged (line 407) | private void dayTwentyFirstComboBox_SelectedIndexChanged(object sender... method dayTwentySecondComboBox_SelectedIndexChanged (line 413) | private void dayTwentySecondComboBox_SelectedIndexChanged(object sende... method dayTenFirstComboBox_SelectedIndexChanged (line 419) | private void dayTenFirstComboBox_SelectedIndexChanged(object sender, E... method dayTenSecondComboBox_SelectedIndexChanged (line 425) | private void dayTenSecondComboBox_SelectedIndexChanged(object sender, ... method dayTenThirdComboBox_SelectedIndexChanged (line 431) | private void dayTenThirdComboBox_SelectedIndexChanged(object sender, E... method dayTenFourthComboBox_SelectedIndexChanged (line 437) | private void dayTenFourthComboBox_SelectedIndexChanged(object sender, ... method dayFiveFirstComboBox_SelectedIndexChanged (line 443) | private void dayFiveFirstComboBox_SelectedIndexChanged(object sender, ... method dayFiveSecondComboBox_SelectedIndexChanged (line 449) | private void dayFiveSecondComboBox_SelectedIndexChanged(object sender,... method dayFourFirstComboBox_SelectedIndexChanged (line 455) | private void dayFourFirstComboBox_SelectedIndexChanged(object sender, ... method dayFourSecondComboBox_SelectedIndexChanged (line 461) | private void dayFourSecondComboBox_SelectedIndexChanged(object sender,... method dayOneFirstComboBox_SelectedIndexChanged (line 467) | private void dayOneFirstComboBox_SelectedIndexChanged(object sender, E... method dayOneSecondComboBox_SelectedIndexChanged (line 473) | private void dayOneSecondComboBox_SelectedIndexChanged(object sender, ... method nightTwentyFirstComboBox_SelectedIndexChanged (line 479) | private void nightTwentyFirstComboBox_SelectedIndexChanged(object send... method nightTwentySecondComboBox_SelectedIndexChanged (line 485) | private void nightTwentySecondComboBox_SelectedIndexChanged(object sen... method nightTenFirstComboBox_SelectedIndexChanged (line 491) | private void nightTenFirstComboBox_SelectedIndexChanged(object sender,... method nightTenSecondComboBox_SelectedIndexChanged (line 497) | private void nightTenSecondComboBox_SelectedIndexChanged(object sender... method nightTenThirdComboBox_SelectedIndexChanged (line 503) | private void nightTenThirdComboBox_SelectedIndexChanged(object sender,... method nightTenFourthComboBox_SelectedIndexChanged (line 509) | private void nightTenFourthComboBox_SelectedIndexChanged(object sender... method nightFiveFirstComboBox_SelectedIndexChanged (line 515) | private void nightFiveFirstComboBox_SelectedIndexChanged(object sender... method nightFiveSecondComboBox_SelectedIndexChanged (line 521) | private void nightFiveSecondComboBox_SelectedIndexChanged(object sende... method nightFourFirstComboBox_SelectedIndexChanged (line 527) | private void nightFourFirstComboBox_SelectedIndexChanged(object sender... method nightFourSecondComboBox_SelectedIndexChanged (line 533) | private void nightFourSecondComboBox_SelectedIndexChanged(object sende... method nightOneFirstComboBox_SelectedIndexChanged (line 539) | private void nightOneFirstComboBox_SelectedIndexChanged(object sender,... method nightOneSecondComboBox_SelectedIndexChanged (line 545) | private void nightOneSecondComboBox_SelectedIndexChanged(object sender... method twentyFirstLevelUpDown_ValueChanged (line 552) | private void twentyFirstLevelUpDown_ValueChanged(object sender, EventA... method twentySecondLevelUpDown_ValueChanged (line 558) | private void twentySecondLevelUpDown_ValueChanged(object sender, Event... method tenFirstLevelUpDown_ValueChanged (line 564) | private void tenFirstLevelUpDown_ValueChanged(object sender, EventArgs... method tenSecondLevelUpDown_ValueChanged (line 570) | private void tenSecondLevelUpDown_ValueChanged(object sender, EventArg... method tenThirdLevelUpDown_ValueChanged (line 576) | private void tenThirdLevelUpDown_ValueChanged(object sender, EventArgs... method tenFourthLevelUpDown_ValueChanged (line 582) | private void tenFourthLevelUpDown_ValueChanged(object sender, EventArg... method fiveFirstLevelUpDown_ValueChanged (line 588) | private void fiveFirstLevelUpDown_ValueChanged(object sender, EventArg... method fiveSecondLevelUpDown_ValueChanged (line 594) | private void fiveSecondLevelUpDown_ValueChanged(object sender, EventAr... method fourFirstLevelUpDown_ValueChanged (line 600) | private void fourFirstLevelUpDown_ValueChanged(object sender, EventArg... method fourSecondLevelUpDown_ValueChanged (line 606) | private void fourSecondLevelUpDown_ValueChanged(object sender, EventAr... method oneFirstLevelUpDown_ValueChanged (line 612) | private void oneFirstLevelUpDown_ValueChanged(object sender, EventArgs... method oneSecondLevelUpDown_ValueChanged (line 618) | private void oneSecondLevelUpDown_ValueChanged(object sender, EventArg... method hoennFirstComboBox_SelectedIndexChanged (line 625) | private void hoennFirstComboBox_SelectedIndexChanged(object sender, Ev... method hoennSecondComboBox_SelectedIndexChanged (line 631) | private void hoennSecondComboBox_SelectedIndexChanged(object sender, E... method sinnohFirstComboBox_SelectedIndexChanged (line 637) | private void sinnohFirstComboBox_SelectedIndexChanged(object sender, E... method sinnohSecondComboBox_SelectedIndexChanged (line 643) | private void sinnohSecondComboBox_SelectedIndexChanged(object sender, ... method rockSmashNinetyComboBox_SelectedIndexChanged (line 650) | private void rockSmashNinetyComboBox_SelectedIndexChanged(object sende... method rockSmashTenComboBox_SelectedIndexChanged (line 656) | private void rockSmashTenComboBox_SelectedIndexChanged(object sender, ... method rockSmashNinetyMinLevelUpDown_ValueChanged (line 662) | private void rockSmashNinetyMinLevelUpDown_ValueChanged(object sender,... method rockSmashTenMinLevelUpDown_ValueChanged (line 668) | private void rockSmashTenMinLevelUpDown_ValueChanged(object sender, Ev... method rockSmashNinetyMaxLevelUpDown_ValueChanged (line 674) | private void rockSmashNinetyMaxLevelUpDown_ValueChanged(object sender,... method rockSmashTenMaxLevelUpDown_ValueChanged (line 680) | private void rockSmashTenMaxLevelUpDown_ValueChanged(object sender, Ev... method rockSmashNinetyMaxLevelUpDown_ValueChanged_1 (line 686) | private void rockSmashNinetyMaxLevelUpDown_ValueChanged_1(object sende... method rockSmashTenMaxLevelUpDown_ValueChanged_1 (line 692) | private void rockSmashTenMaxLevelUpDown_ValueChanged_1(object sender, ... method grassSwarmComboBox_SelectedIndexChanged (line 699) | private void grassSwarmComboBox_SelectedIndexChanged(object sender, Ev... method surfSwarmComboBox_SelectedIndexChanged (line 705) | private void surfSwarmComboBox_SelectedIndexChanged(object sender, Eve... method goodRodSwarmComboBox_SelectedIndexChanged (line 711) | private void goodRodSwarmComboBox_SelectedIndexChanged(object sender, ... method superRodSwarmComboBox_SelectedIndexChanged (line 717) | private void superRodSwarmComboBox_SelectedIndexChanged(object sender,... method surfSixtyComboBox_SelectedIndexChanged (line 724) | private void surfSixtyComboBox_SelectedIndexChanged(object sender, Eve... method surfThirtyComboBox_SelectedIndexChanged (line 730) | private void surfThirtyComboBox_SelectedIndexChanged(object sender, Ev... method surfFiveComboBox_SelectedIndexChanged (line 736) | private void surfFiveComboBox_SelectedIndexChanged(object sender, Even... method surfFourComboBox_SelectedIndexChanged (line 742) | private void surfFourComboBox_SelectedIndexChanged(object sender, Even... method surfOneComboBox_SelectedIndexChanged (line 748) | private void surfOneComboBox_SelectedIndexChanged(object sender, Event... method oldRodSixtyComboBox_SelectedIndexChanged (line 754) | private void oldRodSixtyComboBox_SelectedIndexChanged(object sender, E... method oldRodThirtyComboBox_SelectedIndexChanged (line 760) | private void oldRodThirtyComboBox_SelectedIndexChanged(object sender, ... method oldRodFiveComboBox_SelectedIndexChanged (line 766) | private void oldRodFiveComboBox_SelectedIndexChanged(object sender, Ev... method oldRodFourComboBox_SelectedIndexChanged (line 772) | private void oldRodFourComboBox_SelectedIndexChanged(object sender, Ev... method oldRodOneComboBox_SelectedIndexChanged (line 778) | private void oldRodOneComboBox_SelectedIndexChanged(object sender, Eve... method goodRodFirstFortyComboBox_SelectedIndexChanged (line 784) | private void goodRodFirstFortyComboBox_SelectedIndexChanged(object sen... method goodRodSecondFortyComboBox_SelectedIndexChanged (line 790) | private void goodRodSecondFortyComboBox_SelectedIndexChanged(object se... method goodRodFifteenComboBox_SelectedIndexChanged (line 796) | private void goodRodFifteenComboBox_SelectedIndexChanged(object sender... method goodRodFourComboBox_SelectedIndexChanged (line 802) | private void goodRodFourComboBox_SelectedIndexChanged(object sender, E... method goodRodOneComboBox_SelectedIndexChanged (line 808) | private void goodRodOneComboBox_SelectedIndexChanged(object sender, Ev... method superRodFirstFortyComboBox_SelectedIndexChanged (line 814) | private void superRodFirstFortyComboBox_SelectedIndexChanged(object se... method superRodSecondFortyComboBox_SelectedIndexChanged (line 820) | private void superRodSecondFortyComboBox_SelectedIndexChanged(object s... method superRodFifteenComboBox_SelectedIndexChanged (line 826) | private void superRodFifteenComboBox_SelectedIndexChanged(object sende... method superRodFourComboBox_SelectedIndexChanged (line 832) | private void superRodFourComboBox_SelectedIndexChanged(object sender, ... method superRodOneComboBox_SelectedIndexChanged (line 838) | private void superRodOneComboBox_SelectedIndexChanged(object sender, E... method surfSixtyMinLevelUpDown_ValueChanged (line 846) | private void surfSixtyMinLevelUpDown_ValueChanged(object sender, Event... method surfThirtyMinLevelUpDown_ValueChanged (line 852) | private void surfThirtyMinLevelUpDown_ValueChanged(object sender, Even... method surfFiveMinLevelUpDown_ValueChanged (line 858) | private void surfFiveMinLevelUpDown_ValueChanged(object sender, EventA... method surfFourMinLevelUpDown_ValueChanged (line 864) | private void surfFourMinLevelUpDown_ValueChanged(object sender, EventA... method surfOneMinLevelUpDown_ValueChanged (line 870) | private void surfOneMinLevelUpDown_ValueChanged(object sender, EventAr... method surfSixtyMaxLevelUpDown_ValueChanged (line 876) | private void surfSixtyMaxLevelUpDown_ValueChanged(object sender, Event... method surfThirtyMaxLevelUpDown_ValueChanged (line 882) | private void surfThirtyMaxLevelUpDown_ValueChanged(object sender, Even... method surfFiveMaxLevelUpDown_ValueChanged (line 888) | private void surfFiveMaxLevelUpDown_ValueChanged(object sender, EventA... method surfFourMaxLevelUpDown_ValueChanged (line 894) | private void surfFourMaxLevelUpDown_ValueChanged(object sender, EventA... method surfOneMaxLevelUpDown_ValueChanged (line 900) | private void surfOneMaxLevelUpDown_ValueChanged(object sender, EventAr... method oldRodSixtyMinLevelUpDown_ValueChanged (line 907) | private void oldRodSixtyMinLevelUpDown_ValueChanged(object sender, Eve... method oldRodThirtyMinLevelUpDown_ValueChanged (line 913) | private void oldRodThirtyMinLevelUpDown_ValueChanged(object sender, Ev... method oldRodFiveMinLevelUpDown_ValueChanged (line 919) | private void oldRodFiveMinLevelUpDown_ValueChanged(object sender, Even... method oldRodFourMinLevelUpDown_ValueChanged (line 925) | private void oldRodFourMinLevelUpDown_ValueChanged(object sender, Even... method oldRodOneMinLevelUpDown_ValueChanged (line 931) | private void oldRodOneMinLevelUpDown_ValueChanged(object sender, Event... method oldRodSixtyMaxLevelUpDown_ValueChanged (line 937) | private void oldRodSixtyMaxLevelUpDown_ValueChanged(object sender, Eve... method oldRodThirtyMaxLevelUpDown_ValueChanged (line 943) | private void oldRodThirtyMaxLevelUpDown_ValueChanged(object sender, Ev... method oldRodFiveMaxLevelUpDown_ValueChanged (line 949) | private void oldRodFiveMaxLevelUpDown_ValueChanged(object sender, Even... method oldRodFourMaxLevelUpDown_ValueChanged (line 955) | private void oldRodFourMaxLevelUpDown_ValueChanged(object sender, Even... method oldRodOneMaxLevelUpDown_ValueChanged (line 961) | private void oldRodOneMaxLevelUpDown_ValueChanged(object sender, Event... method goodRodFirstFortyMinLevelUpDown_ValueChanged (line 968) | private void goodRodFirstFortyMinLevelUpDown_ValueChanged(object sende... method goodRodSecondFortyMinLevelUpDown_ValueChanged (line 976) | private void goodRodSecondFortyMinLevelUpDown_ValueChanged(object send... method goodRodFifteenMinLevelUpDown_ValueChanged (line 983) | private void goodRodFifteenMinLevelUpDown_ValueChanged(object sender, ... method goodRodFourMinLevelUpDown_ValueChanged (line 989) | private void goodRodFourMinLevelUpDown_ValueChanged(object sender, Eve... method goodRodOneMinLevelUpDown_ValueChanged (line 995) | private void goodRodOneMinLevelUpDown_ValueChanged(object sender, Even... method goodRodFirstFortyMaxLevelUpDown_ValueChanged (line 1001) | private void goodRodFirstFortyMaxLevelUpDown_ValueChanged(object sende... method goodRodSecondFortyMaxLevelUpDown_ValueChanged (line 1007) | private void goodRodSecondFortyMaxLevelUpDown_ValueChanged(object send... method goodRodFifteenMaxLevelUpDown_ValueChanged (line 1013) | private void goodRodFifteenMaxLevelUpDown_ValueChanged(object sender, ... method goodRodFourMaxLevelUpDown_ValueChanged (line 1019) | private void goodRodFourMaxLevelUpDown_ValueChanged(object sender, Eve... method goodRodOneMaxLevelUpDown_ValueChanged (line 1025) | private void goodRodOneMaxLevelUpDown_ValueChanged(object sender, Even... method superRodFirstFortyMinLevelUpDown_ValueChanged (line 1032) | private void superRodFirstFortyMinLevelUpDown_ValueChanged(object send... method superRodSecondFortyMinLevelUpDown_ValueChanged (line 1038) | private void superRodSecondFortyMinLevelUpDown_ValueChanged(object sen... method superRodFifteenMinLevelUpDown_ValueChanged (line 1044) | private void superRodFifteenMinLevelUpDown_ValueChanged(object sender,... method superRodFourMinLevelUpDown_ValueChanged (line 1050) | private void superRodFourMinLevelUpDown_ValueChanged(object sender, Ev... method superRodOneMinLevelUpDown_ValueChanged (line 1056) | private void superRodOneMinLevelUpDown_ValueChanged(object sender, Eve... method superRodFirstFortyMaxLevelUpDown_ValueChanged (line 1062) | private void superRodFirstFortyMaxLevelUpDown_ValueChanged(object send... method superRodSecondFortyMaxLevelUpDown_ValueChanged (line 1068) | private void superRodSecondFortyMaxLevelUpDown_ValueChanged(object sen... method superRodFifteenMaxLevelUpDown_ValueChanged (line 1074) | private void superRodFifteenMaxLevelUpDown_ValueChanged(object sender,... method superRodFourMaxLevelUpDown_ValueChanged (line 1080) | private void superRodFourMaxLevelUpDown_ValueChanged(object sender, Ev... method superRodOneMaxLevelUpDown_ValueChanged (line 1086) | private void superRodOneMaxLevelUpDown_ValueChanged(object sender, Eve... method addEncounterFileButton_Click (line 1093) | private void addEncounterFileButton_Click(object sender, EventArgs e) { method removeLastEncounterFileButton_Click (line 1107) | private void removeLastEncounterFileButton_Click(object sender, EventA... method repairAllButton_Click (line 1130) | private void repairAllButton_Click(object sender, EventArgs e) { FILE: Ekona/Helper/BinaryReaderBE.cs class BinaryReaderBE (line 32) | public class BinaryReaderBE : BinaryReader method BinaryReaderBE (line 34) | public BinaryReaderBE(string file) : base(File.OpenRead(file)) method ReadUInt16 (line 37) | public override ushort ReadUInt16() FILE: Ekona/Helper/BinaryWriterBE.cs class BinaryWriterBE (line 32) | public class BinaryWriterBE : BinaryWriter method BinaryWriterBE (line 35) | public BinaryWriterBE(string file) : base(File.OpenWrite(file)) method Write (line 38) | public override void Write(ushort value) FILE: Ekona/Helper/BitsConverter.cs class BitsConverter (line 32) | public static class BitsConverter method ByteToBits (line 35) | public static Byte[] ByteToBits(Byte data) method ByteToBit2 (line 44) | public static Byte[] ByteToBit2(Byte data) method ByteToBit4 (line 55) | public static Byte[] ByteToBit4(Byte data) method BytesToBit4 (line 64) | public static Byte[] BytesToBit4(Byte[] data) method BytesToHexString (line 75) | public static String BytesToHexString(Byte[] bytes) method BitsToBytes (line 86) | public static Byte[] BitsToBytes(Byte[] bits) method Bit4ToByte (line 103) | public static Byte Bit4ToByte(Byte[] data) method Bit4ToByte (line 107) | public static Byte Bit4ToByte(Byte b1, Byte b2) method Bits4ToByte (line 111) | public static Byte[] Bits4ToByte(Byte[] data) method StringToBytes (line 120) | public static Byte[] StringToBytes(String text, int num_bytes) FILE: Ekona/Helper/CRC.cs class CRC16 (line 32) | public static class CRC16 method Calculate (line 34) | public static UInt32 Calculate(byte[] bytes, UInt32 init = 0xFFFF) class CRC32 (line 83) | public static class CRC32 method CreateCrcTable (line 90) | private static void CreateCrcTable() method Calculate (line 123) | public static byte[] Calculate(byte[] buffer) FILE: Ekona/Helper/IOutil.cs class IOutil (line 34) | public static class IOutil method Append (line 36) | public static void Append(ref BinaryWriter bw, string file) method Append (line 44) | public static void Append(ref BinaryWriter bw, ref BinaryReader br) method LastSelectedFile (line 60) | public static string LastSelectedFile() method GetLastOpenSaveFile (line 80) | public static string GetLastOpenSaveFile(string extention) FILE: Ekona/Helper/LNK.cs class LNK (line 36) | public class LNK method LNK (line 40) | public LNK(string fileIn) method Read (line 45) | private void Read(string fileIn) method Read_Header (line 64) | private SHELL_LINK_HEADER Read_Header(BinaryReader br) method Read_LinkFlags (line 93) | private LINK_FLAGS Read_LinkFlags(uint value) method Read_FileAttribute (line 126) | private FILE_ATTRIBUTE_FLAGS Read_FileAttribute(uint value) method Read_LinkIDList (line 149) | private LINKTARGET_IDLIST Read_LinkIDList(BinaryReader br) method Read_IDList (line 158) | private IDLIST Read_IDList(BinaryReader br) method Read_LinkInfo (line 177) | private LINKINFO Read_LinkInfo(BinaryReader br) method Read_StringData (line 266) | private STRING_DATA Read_StringData(BinaryReader br) method Read_Extra (line 303) | private EXTRA_DATA Read_Extra(BinaryReader br) method Get_Boolean (line 423) | private bool Get_Boolean(uint value) method Get_String (line 428) | private string Get_String(BinaryReader br, bool unicode, uint offset = 0) method Get_String (line 450) | private string Get_String(BinaryReader br, int size, bool unicode) method Check (line 458) | public static bool Check(string fileIn) type SHELL_LINK (line 487) | public struct SHELL_LINK type SHELL_LINK_HEADER (line 496) | public struct SHELL_LINK_HEADER type LINK_FLAGS (line 513) | public struct LINK_FLAGS // 4 bytes type FILE_ATTRIBUTE_FLAGS (line 543) | public struct FILE_ATTRIBUTE_FLAGS // 4 bytes type FILE_TIME (line 561) | public struct FILE_TIME // 8 bytes type SHOW_COMMAND (line 571) | public enum SHOW_COMMAND : uint type HOTKEYS_FLAGS (line 577) | public struct HOTKEYS_FLAGS // 2 bytes type LOW_BYTE (line 582) | public enum LOW_BYTE : byte type HIGH_BYTE (line 647) | public enum HIGH_BYTE : byte type LINKTARGET_IDLIST (line 655) | public struct LINKTARGET_IDLIST type IDLIST (line 662) | public struct IDLIST type ITEM_IDLIST (line 667) | public struct ITEM_IDLIST type LINKINFO (line 673) | public struct LINKINFO type VOLUMEID (line 697) | public struct VOLUMEID type DRIVE_TYPE (line 706) | public enum DRIVE_TYPE : uint type COMMON_NETWORK_RELATIVE_LINK (line 716) | public struct COMMON_NETWORK_RELATIVE_LINK type PROVIDER_TYPE (line 736) | public enum PROVIDER_TYPE : uint type STRING_DATA (line 781) | public struct STRING_DATA type NAME_STRING (line 789) | public struct NAME_STRING type RELATIVE_PATH (line 794) | public struct RELATIVE_PATH type WORKING_DIR (line 799) | public struct WORKING_DIR type COMMAND_LINE_ARGUMENTS (line 804) | public struct COMMAND_LINE_ARGUMENTS type ICON_LOCATION (line 809) | public struct ICON_LOCATION type EXTRA_DATA (line 815) | public struct EXTRA_DATA type CONSOLE_PROPS (line 830) | public struct CONSOLE_PROPS type FILL_ATTRIBUTES (line 858) | public enum FILL_ATTRIBUTES : ushort type FONT_FAMILY (line 869) | public enum FONT_FAMILY : uint type CONSOLE_FE_PROPS (line 878) | public struct CONSOLE_FE_PROPS type DRAWIN_PROPS (line 884) | public struct DRAWIN_PROPS type ENVIRONMENT_PROPS (line 891) | public struct ENVIRONMENT_PROPS type ICON_ENVIRONMENT_PROPS (line 898) | public struct ICON_ENVIRONMENT_PROPS type KNOWN_FOLDER_PROPS (line 905) | public struct KNOWN_FOLDER_PROPS type PROPERTY_STORE_PROPS (line 912) | public struct PROPERTY_STORE_PROPS type SHIM_PROPS (line 918) | public struct SHIM_PROPS type SPECIAL_FOLDER_PROPS (line 924) | public struct SPECIAL_FOLDER_PROPS type TRACKER_PROPS (line 931) | public struct TRACKER_PROPS type VISTA_AND_ABOVE_IDLIST_PROPS (line 941) | public struct VISTA_AND_ABOVE_IDLIST_PROPS type TERMINAL_BLOCK (line 947) | public struct TERMINAL_BLOCK FILE: Ekona/Helper/Translation.cs class Translation (line 33) | public static class Translation method Translation (line 40) | static Translation() method GetTranslationFile (line 53) | public static string GetTranslationFile() method GetTranslationFile (line 66) | public static string GetTranslationFile(string assemblyName) method GetTranslationXml (line 79) | public static XElement GetTranslationXml() method GetTranslationXml (line 91) | public static XElement GetTranslationXml(string assemblyName) method TranslateControls (line 116) | public static void TranslateControls(Control.ControlCollection control... method TranslateControls (line 132) | public static void TranslateControls(Control[] controls, string xmlNam... FILE: Ekona/IGamePlugin.cs type IGamePlugin (line 32) | public interface IGamePlugin method Initialize (line 38) | void Initialize(IPluginHost pluginHost, string gameCode); method IsCompatible (line 44) | bool IsCompatible(); method Get_Format (line 55) | Format Get_Format(sFile file, byte[] magic); method Show_Info (line 62) | Control Show_Info(sFile file); method Read (line 71) | void Read(sFile file); method Unpack (line 78) | sFolder Unpack(sFile file); method Pack (line 86) | string Pack(ref sFolder unpacked, sFile file); FILE: Ekona/IPlugin.cs type IPlugin (line 32) | public interface IPlugin method Initialize (line 38) | void Initialize(IPluginHost pluginHost); method Get_Format (line 49) | Format Get_Format(sFile file, byte[] magic); method Show_Info (line 56) | Control Show_Info(sFile file); method Read (line 65) | void Read(sFile file); method Unpack (line 72) | sFolder Unpack(sFile file); method Pack (line 80) | string Pack(ref sFolder unpacked, sFile file); FILE: Ekona/IPluginHost.cs type IPluginHost (line 29) | public interface IPluginHost method Get_Object (line 31) | Object Get_Object(); method Get_Image (line 33) | ImageBase Get_Image(); method Get_Palette (line 34) | PaletteBase Get_Palette(); method Get_Map (line 35) | MapBase Get_Map(); method Get_Sprite (line 36) | SpriteBase Get_Sprite(); method Set_Object (line 38) | void Set_Object(Object objects); method Set_Image (line 40) | void Set_Image(ImageBase image); method Set_Palette (line 41) | void Set_Palette(PaletteBase palette); method Set_Map (line 42) | void Set_Map(MapBase map); method Set_Sprite (line 43) | void Set_Sprite(SpriteBase sprite); method PluginList (line 45) | string[] PluginList(); method Call_Plugin (line 46) | Object Call_Plugin(string[] param, int id, int action); method Set_Files (line 48) | void Set_Files(sFolder folder); method Get_Files (line 49) | sFolder Get_Files(); method Get_DecompressedFiles (line 50) | sFolder Get_DecompressedFiles(int id); method Search_File (line 52) | String Search_File(int id); method Search_File (line 53) | sFile Search_File(short id); method Search_File (line 54) | sFolder Search_File(string name); method Get_Bytes (line 55) | Byte[] Get_Bytes(string path, int offset, int length); method Search_Folder (line 57) | sFolder Search_Folder(int id); method Get_Language (line 59) | string Get_Language(); method Get_LangXML (line 60) | string Get_LangXML(); method Get_LanguageFolder (line 62) | string Get_LanguageFolder(); method Get_TempFile (line 64) | string Get_TempFile(); method Get_TempFolder (line 65) | string Get_TempFolder(); method Set_TempFolder (line 66) | void Set_TempFolder(string newPath); method Restore_TempFolder (line 67) | void Restore_TempFolder(); method Decompress (line 69) | void Decompress(string file); method Decompress (line 70) | void Decompress(byte[] data); method Compress (line 71) | void Compress(string filein, string fileout, FormatCompress format); method ChangeFile (line 78) | void ChangeFile(int id, string newFile); FILE: Ekona/Images/Actions.cs type TileForm (line 26) | public enum TileForm type ColorFormat (line 33) | public enum ColorFormat : byte type ColorEncoding (line 48) | public enum ColorEncoding : byte class Actions (line 55) | public static class Actions method BGR555ToColor (line 63) | public static Color[] BGR555ToColor(byte[] bytes) method BGR555ToColor (line 75) | public static Color BGR555ToColor(byte byte1, byte byte2) method ColorToBGR555 (line 91) | public static Byte[] ColorToBGR555(Color[] colors) method ColorToBGRA555 (line 104) | public static Byte[] ColorToBGRA555(Color color) method ColorToBGR555 (line 118) | public static Byte[] ColorToBGR555(Color color) method Get_Image (line 132) | public static Bitmap Get_Image(Color[] colors) method Palette_16To256 (line 160) | public static Color[][] Palette_16To256(Color[][] palette) method Palette_256To16 (line 173) | public static Color[][] Palette_256To16(Color[][] palette) method AlphaIndexTo32ARGB (line 206) | public static Byte[] AlphaIndexTo32ARGB(Color[] palette, byte[] data, ... method Bpp2ToBpp4 (line 240) | public static Byte[] Bpp2ToBpp4(byte[] data) method Get_Image (line 259) | public static Bitmap Get_Image(Byte[] tiles, Byte[] tile_pal, Color[][... method Get_Color (line 289) | public static Color Get_Color(Byte[] data, Color[] palette, ColorForma... method HorizontalToLineal (line 404) | public static byte[] HorizontalToLineal(byte[] horizontal, int width, ... method LinealToHorizontal (line 435) | public static byte[] LinealToHorizontal(byte[] lineal, int width, int ... method Remove_DuplicatedColors (line 467) | public static int Remove_DuplicatedColors(ref Color[] palette, ref byt... method Remove_NotUsedColors (line 490) | public static int Remove_NotUsedColors(ref Color[] palette, ref byte[]... method Change_Color (line 507) | public static void Change_Color(ref byte[] tiles, int oldIndex, int ne... method Swap_Color (line 525) | public static void Swap_Color(ref byte[] tiles, ref Color[] palette, i... method Replace_Color (line 547) | public static void Replace_Color(ref byte[] tiles, int oldIndex, int n... method Swap_Palette (line 555) | public static void Swap_Palette(ref byte[] tiles, Color[] newp, Color[... method Get_Size (line 597) | public static Size Get_Size(int fileSize, int bpp) method Add_Image (line 619) | public static uint Add_Image(ref byte[] data, byte[] newData, uint blo... method Add_Image (line 639) | public static uint Add_Image(ref byte[] data, byte[] newData, uint par... method FindNextColor (line 659) | public static int FindNextColor(Color c, Color[] palette, decimal thre... method Indexed_Image (line 702) | public static void Indexed_Image(Bitmap img, ColorFormat cf, out byte[... method Apply_Map (line 805) | public static Byte[] Apply_Map(NTFS[] map, Byte[] tiles, out Byte[] ti... method XFlip (line 838) | public static Byte[] XFlip(Byte[] tile, int tile_size, int bpp) method Reverse_Bits (line 856) | public static Byte Reverse_Bits(byte b, int length) method YFlip (line 867) | public static Byte[] YFlip(Byte[] tile, int tile_size, int bpp) method Create_BasicMap (line 883) | public static NTFS[] Create_BasicMap(int num_tiles, int startTile = 0,... method Create_Map (line 901) | public static NTFS[] Create_Map(ref byte[] data, int bpp, int tile_siz... method Compare_Array (line 972) | public static bool Compare_Array(byte[] d1, byte[] d2) method MapInfo (line 984) | public static NTFS MapInfo(ushort value) method MapInfo (line 995) | public static ushort MapInfo(NTFS map) method Get_OAMSize (line 1007) | public static Size Get_OAMSize(byte shape, byte size) method Get_Image (line 1069) | public static Bitmap Get_Image(Bank bank, uint blockSize, ImageBase im... method Get_OAMdata (line 1177) | public static Byte[] Get_OAMdata(OAM oam, byte[] image, ColorFormat fo... method Comparision_OAM (line 1199) | public static int Comparision_OAM(OAM c1, OAM c2) method OAMInfo (line 1216) | public static ushort[] OAMInfo(OAM oam) method OAMInfo (line 1256) | public static OAM OAMInfo(ushort[] obj) method OAMInfo (line 1297) | public static OAM OAMInfo(ushort v1, ushort v2, ushort v3) FILE: Ekona/Images/Dialogs/OAMEditor.Designer.cs class OAMEditor (line 22) | partial class OAMEditor method Dispose (line 33) | protected override void Dispose(bool disposing) method InitializeComponent (line 48) | private void InitializeComponent() FILE: Ekona/Images/Dialogs/OAMEditor.cs class OAMEditor (line 32) | public partial class OAMEditor : Form method OAMEditor (line 42) | public OAMEditor() method OAMEditor (line 46) | public OAMEditor(string langxml, Bank bank) method OAMEditor (line 58) | public OAMEditor(string langxml, Bank bank, SpriteBase sprite, ImageBa... method OAMEditor (line 74) | public OAMEditor(XElement langxml, Bank bank, SpriteBase sprite, Image... method OAMEditor_Load (line 90) | private void OAMEditor_Load(object sender, EventArgs e) method Read_Language (line 96) | private void Read_Language(string langxml) method Read_Language (line 106) | private void Read_Language(XElement xml) method Read_Info (line 159) | private void Read_Info(int i) method Update_Image (line 231) | private void Update_Image() method btnSave_Click (line 254) | private void btnSave_Click(object sender, EventArgs e) method numOAM_ValueChanged (line 264) | private void numOAM_ValueChanged(object sender, EventArgs e) method Change_OBJ0 (line 270) | private void Change_OBJ0(object sender, EventArgs e) method Change_OBJ1 (line 304) | private void Change_OBJ1(object sender, EventArgs e) method Change_OBJ2 (line 316) | private void Change_OBJ2(object sender, EventArgs e) method Change_Preview (line 327) | private void Change_Preview(object sender, EventArgs e) method numNumOAM_ValueChanged (line 331) | private void numNumOAM_ValueChanged(object sender, EventArgs e) method comboSize_SelectedIndexChanged (line 351) | private void comboSize_SelectedIndexChanged(object sender, EventArgs e) method btnAddOAM_Click (line 411) | private void btnAddOAM_Click(object sender, EventArgs e) method btnRemOAM_Click (line 446) | private void btnRemOAM_Click(object sender, EventArgs e) method numObj_ValueChanged (line 461) | private void numObj_ValueChanged(object sender, EventArgs e) FILE: Ekona/Images/Formats/ACO.cs class ACO (line 36) | public class ACO : PaletteBase method ACO (line 38) | public ACO(string file) method ACO (line 43) | public ACO(Color[] colors) method Read (line 49) | public override void Read(string fileIn) method Write (line 77) | public override void Write(string fileOut) FILE: Ekona/Images/Formats/APNG.cs class APNG (line 33) | public static class APNG method Create (line 46) | public static void Create(string[] pngs, string apng, int delay, int l... method Create (line 90) | public static void Create(System.Drawing.Bitmap[] pngs, string apng, i... method Write (line 105) | private static void Write(string apng, byte[] signature, IHDR ihdr, ac... method Read_IHDR (line 174) | private static IHDR Read_IHDR(string png) method Read_fcTL (line 194) | private static fcTL Read_fcTL(string png, int seq, int delay) method Read_IDAT (line 229) | private static byte[] Read_IDAT(string png) method Read_fdAT (line 253) | private static fdAT Read_fdAT(string png, int i) type IHDR (line 287) | private struct IHDR type acTL (line 300) | private struct acTL type fcTL (line 308) | private struct fcTL type fdAT (line 323) | private struct fdAT type IEND (line 331) | private struct IEND FILE: Ekona/Images/Formats/Bitmap.cs class BMP (line 34) | public class BMP : ImageBase method BMP (line 38) | public BMP(string file) : base(file, -1) { } method Read (line 40) | public override void Read(string fileIn) method Write (line 138) | public override void Write(string fileOut, PaletteBase palette) FILE: Ekona/Images/Formats/PaletteWin.cs class PaletteWin (line 31) | public class PaletteWin : PaletteBase method PaletteWin (line 34) | public PaletteWin(string file) : base() method PaletteWin (line 38) | public PaletteWin(Color[] colors) : base() method Read (line 43) | public override void Read(string fileIn) method Write (line 68) | public override void Write(string fileOut) FILE: Ekona/Images/ImageBase.cs class ImageBase (line 31) | public abstract class ImageBase method ImageBase (line 56) | public ImageBase() method ImageBase (line 59) | public ImageBase(Byte[] tiles, int width, int height, ColorFormat format, method ImageBase (line 65) | public ImageBase(string file, int id, string fileName = "") method ImageBase (line 75) | public ImageBase(string file, int id, IPluginHost pluginHost, string f... method Get_Image (line 88) | public Image Get_Image(PaletteBase palette) method Read (line 106) | public abstract void Read(string fileIn); method Write (line 107) | public abstract void Write(string fileOut, PaletteBase palette); method Change_StartByte (line 109) | public void Change_StartByte(int start) method Set_Tiles (line 121) | public void Set_Tiles(Byte[] tiles, int width, int height, ColorFormat... method Set_Tiles (line 154) | public void Set_Tiles(ImageBase new_img) method Set_Tiles (line 185) | public void Set_Tiles(Byte[] tiles) class TestImage (line 316) | public class TestImage : ImageBase method TestImage (line 318) | public TestImage() method Read (line 323) | public override void Read(string fileIn) method Write (line 327) | public override void Write(string fileOut, PaletteBase palette) FILE: Ekona/Images/ImageControl.cs class ImageControl (line 29) | public partial class ImageControl : UserControl method ImageControl (line 39) | public ImageControl() method ImageControl (line 43) | public ImageControl(IPluginHost pluginHost, bool isMap) method ImageControl (line 64) | public ImageControl(IPluginHost pluginHost, ImageBase image, PaletteBa... method ImageControl (line 83) | public ImageControl(IPluginHost pluginHost, ImageBase image, PaletteBa... method ImageControl (line 103) | public ImageControl(XElement lang, ImageBase image, PaletteBase palett... method ImageControl (line 124) | public ImageControl(XElement lang, ImageBase image, PaletteBase palette) method ReadLanguage (line 145) | private void ReadLanguage() method ReadLanguage (line 151) | private void ReadLanguage(XElement xml) method Update_Info (line 182) | private void Update_Info() method Update_Image (line 244) | private void Update_Image() method numericStart_ValueChanged (line 265) | private void numericStart_ValueChanged(object sender, EventArgs e) method numTileSize_ValueChanged (line 277) | private void numTileSize_ValueChanged(object sender, EventArgs e) method numericSize_ValueChanged (line 285) | private void numericSize_ValueChanged(object sender, EventArgs e) method comboDepth_SelectedIndexChanged (line 303) | private void comboDepth_SelectedIndexChanged(object sender, EventArgs e) method comboBox1_SelectedIndexChanged (line 324) | private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) method numPal_ValueChanged (line 349) | private void numPal_ValueChanged(object sender, EventArgs e) method checkTransparency_CheckedChanged (line 356) | private void checkTransparency_CheckedChanged(object sender, EventArgs e) method checkHex_CheckedChanged (line 367) | private void checkHex_CheckedChanged(object sender, EventArgs e) method btnSetTrans_Click (line 371) | private void btnSetTrans_Click(object sender, EventArgs e) method btnExport_Click (line 417) | private void btnExport_Click(object sender, EventArgs e) method btnImport_Click (line 451) | private void btnImport_Click(object sender, EventArgs e) method Save_Files (line 517) | private void Save_Files() method pic_DoubleClick (line 551) | private void pic_DoubleClick(object sender, EventArgs e) method btnBgd_Click (line 573) | private void btnBgd_Click(object sender, EventArgs e) method btnBgdTrans_Click (line 585) | private void btnBgdTrans_Click(object sender, EventArgs e) FILE: Ekona/Images/ImageControl.designer.cs class ImageControl (line 22) | partial class ImageControl method Dispose (line 33) | protected override void Dispose(bool disposing) method InitializeComponent (line 48) | private void InitializeComponent() FILE: Ekona/Images/MapBase.cs class MapBase (line 29) | public abstract class MapBase method MapBase (line 48) | public MapBase() method MapBase (line 51) | public MapBase(string fileIn, int id, string fileName = "") method MapBase (line 61) | public MapBase(string fileIn, int id, IPluginHost pluginHost, string ... method MapBase (line 72) | public MapBase(NTFS[] mapInfo, bool editable, int width = 0, int heigh... method Read (line 78) | public abstract void Read(string fileIn); method Write (line 79) | public abstract void Write(string fileOut, ImageBase image, PaletteBas... method Get_Image (line 81) | public Image Get_Image(ImageBase image, PaletteBase palette) method Set_Map (line 103) | public void Set_Map(NTFS[] mapInfo, bool editable, int width = 0, int ... method Set_Map (line 119) | public void Set_Map(MapBase new_map) method Change_StartByte (line 136) | private void Change_StartByte(int newStart) FILE: Ekona/Images/NitroTextureCompressor.cs class NitroTextureCompressor (line 36) | public class NitroTextureCompressor method Clamp (line 40) | private static double Clamp(double a) method ColorLengthSquared (line 51) | private static double ColorLengthSquared(Vector3 v) method Error (line 56) | private static double Error(Vector3[] inputPoints, int[] mask, Vector3... method ColorSquaredDistance (line 102) | private static uint ColorSquaredDistance(Color c1, Color c2) method VectorToColor (line 110) | private static Color VectorToColor(Vector3 v) method ColorToVector (line 118) | private static Vector3 ColorToVector(Color c) method SumColors (line 123) | private static Color SumColors(Color a, Color b, int wa, int wb) method CalcSecondBoundColor (line 135) | private static Color CalcSecondBoundColor(Color c, Color boundColor) method IsCompressedBlock (line 144) | private static bool IsCompressedBlock(Color[] colors, bool[] uniqueFla... method OptimizeEndPoints3 (line 325) | static void OptimizeEndPoints3(Vector3[] block, ref Vector3[] dxtPoint... method OptimizeEndPoints4 (line 373) | static void OptimizeEndPoints4(Vector3[] block, ref Vector3[] dxtPoint... method ComputeIndices3 (line 423) | static uint ComputeIndices3(Vector3[] block, Vector3 maxColor, Vector3... method ComputeIndices4 (line 448) | static uint ComputeIndices4(Vector3[] block, Vector3 maxColor, Vector3... method ColorDistance (line 480) | static double ColorDistance(Vector3 c0, Vector3 c1) method RoundAndExpand (line 486) | static ushort RoundAndExpand(ref Vector3 v) method CompressBlock (line 543) | public static double CompressBlock(Color[] block, int[] mask, out Colo... method Compress (line 760) | public static byte[] Compress(byte[] bgra, uint width, uint height, bo... FILE: Ekona/Images/PaletteBase.cs class PaletteBase (line 30) | public abstract class PaletteBase method PaletteBase (line 48) | public PaletteBase() method PaletteBase (line 52) | public PaletteBase(Color[][] pal, bool editable, string fileName = "") method PaletteBase (line 57) | public PaletteBase(string fileIn, int id, IPluginHost pluginHost, str... method PaletteBase (line 68) | public PaletteBase(string fileIn, int id, string fileName = "") method Read (line 80) | public abstract void Read(string fileIn); method Write (line 81) | public abstract void Write(string fileOut); method Get_Image (line 83) | public Image Get_Image(int index) method FillColors (line 91) | public void FillColors(int maxColors, int pal_index) method FillColors (line 95) | public void FillColors(int maxColors, int pal_index, Color color) method Change_PaletteDepth (line 110) | private void Change_PaletteDepth(ColorFormat newDepth) method Change_StartByte (line 121) | private void Change_StartByte(int start) method Set_Palette (line 149) | public void Set_Palette(Color[][] palette, bool editable) method Set_Palette (line 181) | public void Set_Palette(Color[][] palette, ColorFormat depth, bool edi... method Set_Palette (line 210) | public void Set_Palette(Color[] palette, ColorFormat depth, bool edita... method Set_Palette (line 214) | public void Set_Palette(Color[] palette, int index) method Set_Palette (line 218) | public void Set_Palette(PaletteBase new_pal) method Set_Palette (line 232) | public void Set_Palette(Color[][] palette) method Has_DuplicatedColors (line 265) | public bool Has_DuplicatedColors(int index) FILE: Ekona/Images/PaletteControl.cs class PaletteControl (line 33) | public partial class PaletteControl : UserControl method PaletteControl (line 39) | public PaletteControl() method PaletteControl (line 43) | public PaletteControl(IPluginHost pluginHost) method PaletteControl (line 54) | public PaletteControl(IPluginHost pluginHost, PaletteBase palette) method Update_Info (line 66) | private void Update_Info() method ReadLanguage (line 83) | private void ReadLanguage() method numericPalette_ValueChanged (line 110) | private void numericPalette_ValueChanged(object sender, EventArgs e) method numericStartByte_ValueChanged (line 115) | private void numericStartByte_ValueChanged(object sender, EventArgs e) method comboDepth_SelectedIndexChanged (line 124) | private void comboDepth_SelectedIndexChanged(object sender, EventArgs e) method picPalette_MouseClick (line 141) | private void picPalette_MouseClick(object sender, MouseEventArgs e) method btnShow_Click (line 149) | private void btnShow_Click(object sender, EventArgs e) method btnExport_Click (line 188) | private void btnExport_Click(object sender, EventArgs e) method btnImport_Click (line 221) | private void btnImport_Click(object sender, EventArgs e) method Write_File (line 264) | private void Write_File() method checkHex_CheckedChanged (line 278) | private void checkHex_CheckedChanged(object sender, EventArgs e) method btnUseThis_Click (line 283) | private void btnUseThis_Click(object sender, EventArgs e) method btnFillColors_Click (line 288) | private void btnFillColors_Click(object sender, EventArgs e) FILE: Ekona/Images/PaletteControl.designer.cs class PaletteControl (line 22) | partial class PaletteControl method Dispose (line 33) | protected override void Dispose(bool disposing) method InitializeComponent (line 48) | private void InitializeComponent() FILE: Ekona/Images/RawData.cs class RawPalette (line 35) | public class RawPalette : PaletteBase method RawPalette (line 41) | public RawPalette(string file, int id, bool editable, ColorFormat dept... method RawPalette (line 52) | public RawPalette(Color[][] colors, bool editable, ColorFormat depth, ... method RawPalette (line 58) | public RawPalette(Color[] colors, bool editable, ColorFormat depth, st... method RawPalette (line 64) | public RawPalette(string file, int id, bool editable, int offset, int ... method Read (line 77) | public override void Read(string fileIn) method Read (line 81) | public void Read(string fileIn, bool editable, ColorFormat depth, int ... method Read (line 103) | public void Read(string fileIn, bool editable, int offset, int fileSize) method Write (line 130) | public override void Write(string fileOut) class RawImage (line 144) | public class RawImage : ImageBase method RawImage (line 150) | public RawImage(String file, int id, TileForm form, ColorFormat format, method RawImage (line 161) | public RawImage(String file, int id, TileForm form, ColorFormat format, method RawImage (line 174) | public RawImage(byte[] tiles, TileForm form, ColorFormat format, int w... method Read (line 183) | public override void Read(string fileIn) method Read (line 187) | public void Read(string fileIn, TileForm form, ColorFormat format, boo... method Write (line 216) | public override void Write(string fileOut, PaletteBase palette) class RawMap (line 238) | public class RawMap : MapBase method RawMap (line 244) | public RawMap(string file, int id, int offset, int size, bool editable... method RawMap (line 255) | public RawMap(NTFS[] map, int width, int height, bool editable, string... method Read (line 260) | public override void Read(string fileIn) method Read (line 264) | public void Read(string fileIn, int offset, int size, bool editable) method Write (line 288) | public override void Write(string fileOut, ImageBase image, PaletteBas... class RawSprite (line 302) | public class RawSprite : SpriteBase method RawSprite (line 305) | public RawSprite(Bank[] banks, uint blocksize, bool editable = false) method RawSprite (line 309) | public RawSprite(OAM[] oams, uint blocksize, bool editable = false) method Read (line 317) | public override void Read(string fileIn) method Write (line 322) | public override void Write(string fileOut, ImageBase image, PaletteBas... FILE: Ekona/Images/SpriteBase.cs class SpriteBase (line 29) | public abstract class SpriteBase method SpriteBase (line 79) | public SpriteBase() method SpriteBase (line 82) | public SpriteBase(string file, int id, string fileName = "") method SpriteBase (line 92) | public SpriteBase(string file, int id, IPluginHost pluginHost, string... method Read (line 105) | public abstract void Read(string fileIn); method Write (line 106) | public abstract void Write(string fileOut, ImageBase image, PaletteBas... method Set_Banks (line 108) | public void Set_Banks(Bank[] banks, uint block_size, bool editable) method Get_Image (line 125) | public Image Get_Image(ImageBase image, PaletteBase pal, int index, in... method Get_Image (line 131) | public Image Get_Image(ImageBase image, PaletteBase pal, Bank bank, in... method Get_Image (line 137) | public Image Get_Image(ImageBase image, PaletteBase pal, Bank bank, in... method Get_Image (line 143) | public Image Get_Image(ImageBase image, PaletteBase pal, int index, in... method Get_Image (line 149) | public Image Get_Image(ImageBase image, PaletteBase pal, int index, in... type Bank (line 158) | public struct Bank type OAM (line 169) | public struct OAM type Obj0 (line 180) | public struct Obj0 // 16 bits type Obj1 (line 191) | public struct Obj1 // 16 bits type Obj2 (line 204) | public struct Obj2 // 16 bits FILE: Ekona/Images/SpriteControl.cs class SpriteControl (line 29) | public partial class SpriteControl : UserControl method SpriteControl (line 40) | public SpriteControl() method SpriteControl (line 44) | public SpriteControl(IPluginHost pluginHost) method SpriteControl (line 56) | public SpriteControl(IPluginHost pluginHost, SpriteBase sprite) method SpriteControl (line 68) | public SpriteControl(IPluginHost pluginHost, SpriteBase sprite, ImageB... method SpriteControl (line 80) | public SpriteControl(XElement lang, SpriteBase sprite, ImageBase image... method Read_Language (line 94) | private void Read_Language() method Read_Language (line 104) | private void Read_Language(XElement xml) method Build_Image (line 140) | public Image Build_Image() method Update_Image (line 151) | private Image Update_Image() { method Update_Info (line 156) | private void Update_Info() method Update_BankInfo (line 173) | private void Update_BankInfo(int i) method comboBank_SelectedIndexChanged (line 180) | private void comboBank_SelectedIndexChanged(object sender, EventArgs e) method check_CheckedChanged (line 185) | private void check_CheckedChanged(object sender, EventArgs e) method btnShowAll_Click (line 190) | private void btnShowAll_Click(object sender, EventArgs e) method btnBgdTrans_Click (line 234) | private void btnBgdTrans_Click(object sender, EventArgs e) method btnBgd_Click (line 240) | private void btnBgd_Click(object sender, EventArgs e) method btnSetTrans_Click (line 253) | private void btnSetTrans_Click(object sender, EventArgs e) method SetTransFromImage (line 257) | private void SetTransFromImage(Color color) method imgBox_MouseClick (line 286) | private void imgBox_MouseClick(object sender, MouseEventArgs e) method btnSave_Click (line 295) | private void btnSave_Click(object sender, EventArgs e) method Export_Single (line 302) | private void Export_Single() method Export_All (line 333) | private void Export_All() method checkBatch_CheckedChanged (line 371) | private void checkBatch_CheckedChanged(object sender, EventArgs e) method btnImport_Click (line 375) | private void btnImport_Click(object sender, EventArgs e) method Import_Single (line 382) | private void Import_Single() method Import_All (line 406) | private void Import_All() method Import_File (line 443) | private void Import_File(string path, int banki) method Save_Files (line 544) | void Save_Files() method btnOAMeditor_Click (line 620) | private void btnOAMeditor_Click(object sender, EventArgs e) FILE: Ekona/Images/SpriteControl.designer.cs class SpriteControl (line 27) | partial class SpriteControl method Dispose (line 38) | protected override void Dispose(bool disposing) method InitializeComponent (line 53) | private void InitializeComponent() FILE: Ekona/Mathematics/NvMath.cs class NvMath (line 8) | internal static class NvMath method Saturate (line 12) | public static float Saturate(float f) method Clamp (line 18) | public static double Clamp(double x, double a, double b) method Max3 (line 24) | public static double Max3(double x, double a, double b) method Min3 (line 30) | public static double Min3(double x, double a, double b) method Swap (line 35) | public static void Swap(ref T o1, ref T o2) method Equal (line 44) | public static bool Equal(float f0, float f1, float epsilon = NV_EPSILON) FILE: Ekona/Mathematics/Vector3.cs type Vector3 (line 33) | public struct Vector3 method Vector3 (line 51) | public Vector3(double x, double y, double z) method Vector3 (line 62) | public Vector3(double[] coordinates) method Vector3 (line 73) | public Vector3(Vector3 vector) method Add (line 160) | public static Vector3 Add(Vector3 v, Vector3 w) method Add (line 171) | public static Vector3 Add(Vector3 v, double s) method Subtract (line 185) | public static Vector3 Subtract(Vector3 v, Vector3 w) method Subtract (line 199) | public static Vector3 Subtract(Vector3 v, double s) method Subtract (line 213) | public static Vector3 Subtract(double s, Vector3 v) method Divide (line 227) | public static Vector3 Divide(Vector3 u, Vector3 v) method Divide (line 241) | public static Vector3 Divide(Vector3 v, double s) method Divide (line 255) | public static Vector3 Divide(double s, Vector3 v) method Multiply (line 266) | public static Vector3 Multiply(Vector3 u, double s) method DotProduct (line 277) | public static double DotProduct(Vector3 u, Vector3 v) method CrossProduct (line 288) | public static Vector3 CrossProduct(Vector3 u, Vector3 v) method Negate (line 301) | public static Vector3 Negate(Vector3 v) method ApproxEqual (line 312) | public static bool ApproxEqual(Vector3 v, Vector3 u) method ApproxEqual (line 324) | public static bool ApproxEqual(Vector3 v, Vector3 u, double tolerance) method Normalize (line 339) | public static Vector3 Normalize(Vector3 v) method Angle (line 351) | public static double Angle(Vector3 vector1, Vector3 vector2) method CounterclockwiseAngleBetween (line 362) | public static double CounterclockwiseAngleBetween(Vector3 beginVector,... method CounterclockwiseAngleBetween (line 381) | public static double CounterclockwiseAngleBetween(Vector3 firstVector,... method GetCenter (line 419) | public static Vector3 GetCenter(Vector3[] points) method SwapYZ (line 432) | static public Vector3 SwapYZ(Vector3 vector) method Rotate (line 453) | public Vector3 Rotate(double angle, Vector3 normal) method Rotate (line 492) | public Vector3 Rotate(Vector3 origin, double angle, Vector3 normal) method Normalize (line 503) | public void Normalize() method Unit (line 523) | public Vector3 Unit() method Orthogonal (line 535) | public Vector3 Orthogonal() method Length (line 552) | public double Length() method LengthSquared (line 561) | public double LengthSquared() method ClampZero (line 569) | public void ClampZero(double tolerance) method ClampZero (line 582) | public void ClampZero() method DotProduct (line 592) | public double DotProduct(Vector3 vector) method CrossProduct (line 602) | public Vector3 CrossProduct(Vector3 vector) method Angle (line 615) | public double Angle(Vector3 vector) method GetHashCode (line 630) | public override int GetHashCode() method Equals (line 640) | public override bool Equals(object obj) method Equals (line 656) | public bool Equals(Vector3 vector, double tolerance) method ToString (line 665) | public override string ToString() method Max (line 848) | public static Vector3 Max(Vector3 a, Vector3 b) method Min (line 853) | public static Vector3 Min(Vector3 a, Vector3 b) method Clamp (line 858) | public static Vector3 Clamp(Vector3 v, float min, float max) method Saturate (line 863) | public static Vector3 Saturate(Vector3 v) method Floor (line 868) | public static Vector3 Floor(Vector3 v) method Ceil (line 873) | public static Vector3 Ceil(Vector3 v) method Lerp (line 878) | public static Vector3 Lerp(Vector3 v1, Vector3 v2, float t) FILE: Ekona/Properties/Resources.Designer.cs class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: Ekona/Structures.cs type sFile (line 27) | public struct sFile type sFolder (line 37) | public struct sFolder type Format (line 47) | public enum Format type FormatCompress (line 67) | public enum FormatCompress // From DSDecmp type NTFS (line 81) | public struct NTFS // Nintedo Tile Format Screen type NTFT (line 88) | public struct NTFT // Nintendo Tile Format Tile type NitroHeader (line 94) | public struct NitroHeader // Generic Header in Nitro formats FILE: Images/Images/AnimationControl.cs class AnimationControl (line 28) | public partial class AnimationControl : UserControl method AnimationControl (line 40) | public AnimationControl() method AnimationControl (line 45) | public AnimationControl(Bitmap[] anis, int interval) method AnimationControl (line 71) | public AnimationControl(IPluginHost pluginHost, NANR ani) method Read_Language (line 118) | private void Read_Language() method ShowInfo (line 124) | private void ShowInfo() method ShowInfo (line 132) | private void ShowInfo(int bnk) method ShowInfo (line 142) | private void ShowInfo(int bnk, int frame) method Get_Ani (line 150) | private void Get_Ani() method check_CheckedChanged (line 165) | private void check_CheckedChanged(object sender, EventArgs e) method comboAni_SelectedIndexChanged (line 170) | private void comboAni_SelectedIndexChanged(object sender, EventArgs e) method btnStop_Click (line 177) | private void btnStop_Click(object sender, EventArgs e) method btnPlay_Click (line 183) | private void btnPlay_Click(object sender, EventArgs e) method tempo_Tick (line 189) | private void tempo_Tick(object sender, EventArgs e) method btnNext_Click (line 196) | private void btnNext_Click(object sender, EventArgs e) method btnPrevious_Click (line 205) | private void btnPrevious_Click(object sender, EventArgs e) method txtTime_TextChanged (line 214) | private void txtTime_TextChanged(object sender, EventArgs e) method btnSave_Click (line 219) | private void btnSave_Click(object sender, EventArgs e) method aniBox_DoubleClick (line 232) | private void aniBox_DoubleClick(object sender, EventArgs e) FILE: Images/Images/AnimationControl.designer.cs class AnimationControl (line 22) | partial class AnimationControl method Dispose (line 33) | protected override void Dispose(bool disposing) method InitializeComponent (line 48) | private void InitializeComponent() FILE: Images/Images/DSIG.cs class DSIG (line 36) | public class DSIG : ImageBase method DSIG (line 41) | public DSIG(sFile file) : base(file.path, file.id, file.name) { } method DSIG (line 42) | public DSIG(string file, int id, string fileName = "") : base(file, id... method Read (line 44) | public override void Read(string fileIn) method Write (line 73) | public override void Write(string fileOut, PaletteBase palette) type sDSIG (line 83) | public struct sDSIG FILE: Images/Images/Main.cs class Main (line 32) | public class Main : IPlugin method Initialize (line 37) | public void Initialize(IPluginHost pluginHost) method Get_Format (line 42) | public Format Get_Format(sFile file, byte[] magic) method Show_Info (line 99) | public Control Show_Info(sFile file) method Read (line 120) | public void Read(sFile file) method Read2 (line 124) | public Format Read2(sFile file) method Pack (line 257) | public String Pack(ref sFolder unpacked, sFile file) { return null; } method Unpack (line 258) | public sFolder Unpack(sFile file) { return new sFolder(); } FILE: Images/Images/NANR.cs class NANR (line 11) | public class NANR method NANR (line 19) | public NANR(IPluginHost pluginHost, string file, int id) method Read (line 28) | public void Read(string file) type sNANR (line 156) | public struct sNANR type ABNK (line 163) | public struct ABNK type Animation (line 175) | public struct Animation type Frame (line 185) | public struct Frame type Frame_Data (line 192) | public struct Frame_Data type LABL (line 203) | public struct LABL type UEXT (line 210) | public struct UEXT FILE: Images/Images/NCCG.cs class NCCG (line 13) | public class NCCG : ImageBase method NCCG (line 17) | public NCCG(string file, int id, string fileName) : base(file, id, fil... method Read (line 19) | public override void Read(string file) method Write (line 70) | public override void Write(string fileOut, PaletteBase palette) type sNCCG (line 75) | public struct sNCCG type CHAR (line 83) | public struct CHAR type ATTR (line 91) | public struct ATTR type LINK (line 99) | public struct LINK type CMNT (line 105) | public struct CMNT FILE: Images/Images/NCCL.cs class NCCL (line 12) | public class NCCL : PaletteBase method NCCL (line 16) | public NCCL(string file, int id, string fileName = "") : base(file, id... method Read (line 20) | public override void Read(string file) method Write (line 61) | public override void Write(string fileOut) type sNCCL (line 66) | public struct sNCCL type PALT (line 72) | public struct PALT type CMNT (line 79) | public struct CMNT FILE: Images/Images/NCE.cs class NCE (line 11) | public static class NCE FILE: Images/Images/NCER.cs class NCER (line 12) | public class NCER : SpriteBase method NCER (line 16) | public NCER(string file, int id, string fileName = "") : base(file, id... method Read (line 18) | public override void Read(string fileIn) method Get_LastOAM (line 204) | OAM Get_LastOAM(sNCER.Bank bank) method Comparision_Cell (line 213) | int Comparision_Cell(OAM c1, OAM c2) method Comparision_Cell2 (line 230) | int Comparision_Cell2(OAM c1, OAM c2) method Convert_Banks (line 239) | Bank[] Convert_Banks() method Write (line 256) | public override void Write(string fileOut, ImageBase image, PaletteBas... method Update_Struct (line 348) | void Update_Struct() type sNCER (line 406) | public struct sNCER // Nintendo CEll Resource type CEBK (line 413) | public struct CEBK type Bank (line 428) | public struct Bank type LABL (line 444) | public struct LABL type UEXT (line 451) | public struct UEXT FILE: Images/Images/NCGR.cs class NCGR (line 11) | public class NCGR : ImageBase method NCGR (line 15) | public NCGR(string file, int id, string fileName = "") : base(file, id... method Read (line 17) | public override void Read(string fileIn) method Write (line 78) | public override void Write(string fileOut, PaletteBase palette) method Update_Struct (line 118) | private void Update_Struct() type sNCGR (line 137) | public struct sNCGR // Nintendo Character Graphic Resource type RAHC (line 146) | public struct RAHC // CHARacter type SOPC (line 160) | public struct SOPC // Unknown section FILE: Images/Images/NCLR.cs class NCLR (line 12) | public class NCLR : PaletteBase method NCLR (line 16) | public NCLR(string file, int id, string fileName = "") : base(file, id... method Read (line 18) | public override void Read(string fileIn) method Write (line 78) | public override void Write(string fileOut) method Update_Struct (line 105) | private void Update_Struct() type sNCLR (line 117) | public struct sNCLR // Nintendo CoLor Resource type TTLP (line 123) | public struct TTLP // PaLeTTe type PMCP (line 134) | public struct PMCP FILE: Images/Images/NCOB.cs class NCOB (line 11) | public class NCOB : SpriteBase method NCOB (line 16) | public NCOB(string file, int id, string fileName = "") : base(file, id... method Read (line 18) | public override void Read(string fileIn) method Write (line 99) | public override void Write(string fileOut, ImageBase image, PaletteBas... type sNCOB (line 109) | public struct sNCOB type CELL (line 127) | public struct CELL type CHAR (line 134) | public struct CHAR type GRP (line 142) | public struct GRP type ANIM (line 151) | public struct ANIM type ACTL (line 157) | public struct ACTL type MODE (line 165) | public struct MODE type LABL (line 172) | public struct LABL type CMNT (line 179) | public struct CMNT type CCMT (line 185) | public struct CCMT type ECMT (line 193) | public struct ECMT type FCMT (line 202) | public struct FCMT type CLBL (line 209) | public struct CLBL type EXTR (line 216) | public struct EXTR type LINK (line 222) | public struct LINK FILE: Images/Images/NCSC.cs class NCSC (line 30) | public class NCSC : MapBase method NCSC (line 32) | public NCSC(string file, int id, string fileName = "") : base(file, id... method Read (line 34) | public override void Read(string file) method Write (line 122) | public override void Write(string fileOut, ImageBase image, PaletteBas... type sNCSC (line 126) | public struct sNCSC type SCRN (line 137) | public struct SCRN type ESCR (line 146) | public struct ESCR type CLRF (line 157) | public struct CLRF type CLRC (line 165) | public struct CLRC type GRID (line 171) | public struct GRID type LINK (line 177) | public struct LINK type CMNT (line 183) | public struct CMNT FILE: Images/Images/NSCR.cs class NSCR (line 11) | public class NSCR : MapBase method NSCR (line 15) | public NSCR(string file, int id, string fileName = "") : base(file, id... method Read (line 17) | public override void Read(string fileIn) method Write (line 48) | public override void Write(string fileOut, ImageBase image, PaletteBas... method Update_Struct (line 83) | private void Update_Struct() type sNSCR (line 93) | public struct sNSCR // Nintendo SCreen Resource type NRCS (line 98) | public struct NRCS FILE: Images/Images/Properties/Resources.Designer.cs class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic...