/*************************************************************************** M.A.M.E.32 - Multiple Arcade Machine Emulator for Win32 Win32 Portions Copyright (C) 1997-2003 Michael Soderstrom and Chris Kirmse This file is part of MAME32, and may only be used, modified and distributed under the terms of the MAME license, in "readme.txt". By continuing to use, modify or distribute this file you indicate that you have read the license and understand and accept it fully. ***************************************************************************/ /*************************************************************************** layout.c MAME specific TreeView definitions (and maybe more in the future) ***************************************************************************/ #define WIN32_LEAN_AND_MEAN #include #include #include #include #include /* for sprintf */ #include /* For malloc and free */ #include #include "bitmask.h" #include "treeview.h" #include "m32util.h" #include "resource.h" #include "directories.h" #include "m32opts.h" #include "splitters.h" #include "help.h" #include "audit32.h" #include "screenshot.h" #include "win32ui.h" #include "properties.h" static BOOL FilterAvailable(int driver_index); FOLDERDATA g_folderData[] = { {"All Games", "allgames", FOLDER_ALLGAMES, IDI_FOLDER, 0, 0, NULL, NULL, TRUE }, {"Available", "available", FOLDER_AVAILABLE, IDI_FOLDER_AVAILABLE, F_AVAILABLE, 0, NULL, FilterAvailable, TRUE }, #ifdef SHOW_UNAVAILABLE_FOLDER {"Unavailable", "unavailable", FOLDER_UNAVAILABLE, IDI_FOLDER_UNAVAILABLE, 0, F_AVAILABLE, NULL, FilterAvailable, FALSE }, #endif {"Horizontal", "horizontal", FOLDER_HORIZONTAL, IDI_FOLDER_HORIZONTAL, F_HORIZONTAL, F_VERTICAL, NULL, DriverIsVertical, FALSE }, {"Vertical", "vertical", FOLDER_VERTICAL, IDI_FOLDER_VERTICAL, F_VERTICAL, F_HORIZONTAL, NULL, DriverIsVertical, TRUE }, {"Manufacturer", "manufacturer", FOLDER_MANUFACTURER, IDI_FOLDER_MANUFACTURER, 0, 0, CreateManufacturerFolders }, {"Year", "year", FOLDER_YEAR, IDI_FOLDER_YEAR, 0, 0, CreateYearFolders }, {"Source", "source", FOLDER_SOURCE, IDI_FOLDER_SOURCE, 0, 0, CreateSourceFolders }, {"CPU", "cpu", FOLDER_CPU, IDI_CPU, 0, 0, CreateCPUFolders }, {"Sound", "sound", FOLDER_SND, IDI_SOUND, 0, 0, CreateSoundFolders }, {"Imperfect", "imperfect", FOLDER_DEFICIENCY, IDI_FOLDER, 0, 0, CreateDeficiencyFolders }, {"Dumping Status", "dumping", FOLDER_DUMPING, IDI_FOLDER, 0, 0, CreateDumpingFolders }, {"Working", "working", FOLDER_WORKING, IDI_WORKING, F_WORKING, F_NONWORKING, NULL, DriverIsBroken, FALSE }, {"Not Working", "nonworking", FOLDER_NONWORKING, IDI_NONWORKING, F_NONWORKING, F_WORKING, NULL, DriverIsBroken, TRUE }, {"Originals", "originals", FOLDER_ORIGINAL, IDI_FOLDER, F_ORIGINALS, F_CLONES, NULL, DriverIsClone, FALSE }, {"Clones", "clones", FOLDER_CLONES, IDI_FOLDER, F_CLONES, F_ORIGINALS, NULL, DriverIsClone, TRUE }, {"Raster", "raster", FOLDER_RASTER, IDI_FOLDER, F_RASTER, F_VECTOR, NULL, DriverIsVector, FALSE }, {"Vector", "vector", FOLDER_VECTOR, IDI_FOLDER, F_VECTOR, F_RASTER, NULL, DriverIsVector, TRUE }, {"Trackball", "trackball", FOLDER_TRACKBALL, IDI_FOLDER, 0, 0, NULL, DriverUsesTrackball, TRUE }, {"Lightgun", "lightgun", FOLDER_LIGHTGUN, IDI_FOLDER, 0, 0, NULL, DriverUsesLightGun, TRUE }, {"Stereo", "stereo", FOLDER_STEREO, IDI_SOUND, 0, 0, NULL, DriverIsStereo, TRUE }, {"CHD", "harddisk", FOLDER_HARDDISK, IDI_HARDDISK, 0, 0, NULL, DriverIsHarddisk, TRUE }, {"Samples", "samples", FOLDER_SAMPLES, IDI_FOLDER, 0, 0, NULL, DriverUsesSamples, TRUE }, {"Save State", "savestate", FOLDER_SAVESTATE, IDI_FOLDER, 0, 0, NULL, DriverSupportsSaveState, TRUE }, {"BIOS", "bios", FOLDER_BIOS, IDI_FOLDER, 0, 0, NULL, DriverIsBios, TRUE }, { NULL } }; /* list of filter/control Id pairs */ FILTER_ITEM g_filterList[] = { { F_CLONES, IDC_FILTER_CLONES, DriverIsClone, TRUE }, { F_NONWORKING, IDC_FILTER_NONWORKING, DriverIsBroken, TRUE }, { F_UNAVAILABLE, IDC_FILTER_UNAVAILABLE, FilterAvailable, FALSE }, { F_RASTER, IDC_FILTER_RASTER, DriverIsVector, FALSE }, { F_VECTOR, IDC_FILTER_VECTOR, DriverIsVector, TRUE }, { F_ORIGINALS, IDC_FILTER_ORIGINALS, DriverIsClone, FALSE }, { F_WORKING, IDC_FILTER_WORKING, DriverIsBroken, FALSE }, { F_AVAILABLE, IDC_FILTER_AVAILABLE, FilterAvailable, TRUE }, { F_HORIZONTAL, IDC_FILTER_HORIZONTAL, DriverIsVertical, FALSE }, { F_VERTICAL, IDC_FILTER_VERTICAL, DriverIsVertical, TRUE }, { 0 } }; DIRECTORYINFO g_directoryInfo[] = { { "ROMs", GetRomDirs, SetRomDirs, TRUE, DIRDLG_ROMS }, { "Samples", GetSampleDirs, SetSampleDirs, TRUE, DIRDLG_SAMPLES }, { "Ini Files", GetIniDir, SetIniDir, FALSE, DIRDLG_INI }, { "Config", GetCfgDir, SetCfgDir, FALSE, DIRDLG_CFG }, { "Snapshots", GetImgDir, SetImgDir, FALSE, DIRDLG_IMG }, { "Input files (*.inp)", GetInpDir, SetInpDir, FALSE, DIRDLG_INP }, { "State", GetStateDir, SetStateDir, FALSE, 0 }, { "Artwork", GetArtDir, SetArtDir, FALSE, 0 }, { "Memory Card", GetMemcardDir, SetMemcardDir, FALSE, 0 }, { "Flyers", GetFlyerDir, SetFlyerDir, FALSE, 0 }, { "Cabinets", GetCabinetDir, SetCabinetDir, FALSE, 0 }, { "Marquees", GetMarqueeDir, SetMarqueeDir, FALSE, 0 }, { "Titles", GetTitlesDir, SetTitlesDir, FALSE, 0 }, { "Control Panels", GetControlPanelDir,SetControlPanelDir, FALSE, 0 }, { "PCBs", GetPcbDir, SetPcbDir, FALSE, 0 }, { "NVRAM", GetNvramDir, SetNvramDir, FALSE, 0 }, { "Controller Files", GetCtrlrDir, SetCtrlrDir, FALSE, DIRDLG_CTRLR }, { "Hard Drive Difference", GetDiffDir, SetDiffDir, FALSE, 0 }, { "Icons", GetIconsDir, SetIconsDir, FALSE, 0 }, { "Background Images", GetBgDir, SetBgDir, FALSE, 0 }, { "Comment Files", GetCommentDir, SetCommentDir, FALSE, DIRDLG_COMMENT }, { NULL } }; const SPLITTERINFO g_splitterInfo[] = { { 0.25, IDC_SPLITTER, IDC_TREE, IDC_LIST, AdjustSplitter1Rect }, { 0.5, IDC_SPLITTER2, IDC_LIST, IDC_SSFRAME, AdjustSplitter2Rect }, { -1 } }; const MAMEHELPINFO g_helpInfo[] = { { ID_HELP_CONTENTS, TRUE, MAME32HELP "::/html/mame32_overview.htm" }, { ID_HELP_WHATS_NEW32, TRUE, MAME32HELP "::/html/mame32_changes.txt" }, { ID_HELP_TROUBLE, TRUE, MAME32HELP "::/html/mame32_support.htm" }, { ID_HELP_RELEASE, FALSE, "windows.txt" }, { ID_HELP_WHATS_NEW, TRUE, MAME32HELP "::/docs/whatsnew.txt" }, { -1 } }; const PROPERTYSHEETINFO g_propSheets[] = { { FALSE, NULL, IDD_PROP_GAME, GamePropertiesDialogProc }, { FALSE, NULL, IDD_PROP_AUDIT, GameAuditDialogProc }, { TRUE, NULL, IDD_PROP_DISPLAY, GameOptionsProc }, { TRUE, NULL, IDD_PROP_ADVANCED, GameOptionsProc }, { TRUE, NULL, IDD_PROP_SCREEN, GameOptionsProc }, { TRUE, NULL, IDD_PROP_SOUND, GameOptionsProc }, { TRUE, NULL, IDD_PROP_INPUT, GameOptionsProc }, { TRUE, NULL, IDD_PROP_CONTROLLER, GameOptionsProc }, { TRUE, NULL, IDD_PROP_MISC, GameOptionsProc }, { TRUE, PropSheetFilter_Vector, IDD_PROP_VECTOR, GameOptionsProc }, { FALSE } }; const ICONDATA g_iconData[] = { { IDI_WIN_NOROMS, "noroms" }, { IDI_WIN_ROMS, "roms" }, { IDI_WIN_UNKNOWN, "unknown" }, { IDI_WIN_CLONE, "clone" }, { IDI_WIN_REDX, "warning" }, { 0 } }; const TCHAR g_szPlayGameString[] = TEXT("&Play %s"); const char g_szGameCountString[] = "%d games"; const char g_szHistoryFileName[] = "history.dat"; const char g_szMameInfoFileName[] = "mameinfo.dat"; static BOOL FilterAvailable(int driver_index) { return IsAuditResultYes(GetRomAuditResults(driver_index)); }