mirror of
https://github.com/holub/mame
synced 2025-06-13 16:15:32 +03:00

* Moved common code for drawing about box, info viewer, and other text box menus to a base class; removed the last of the info viewer logic and the multi-line item hack from the base menu class. * Added previous/next group navigation for general inputs and plugin input selection menus. * Moved message catalog logic to lib/util, allowing osd and emu to use localised messages. * Made the base menu class use the UI manager’s feature for holding session state rather than a static map and mutex. * Improved menu event handling model, and fixed many issues, particularly with menus behaving badly when hidden/shown. * Added better support for menus that don’t participate in the usual menu stack, like the menuless sliders and the save/load state menus. * Made a number of menus refresh state when being shown after being hidden (fixes MT08121 among other issues). * Fixed indication of mounted slot option in the slot option details menu. * Improved appearance of background menus when emulation isn't running - draw all menus in the stack, and darken the background menus to make the edges of the active menu clearer. * Fixed locale issues in -listxml. -debugger: Made GUI debuggers more uniform. * Added new memory view features to Win32 debugger. * Fixed spelling of hexadecimal in Cocoa debugger and added decimal address option. * Fixed duplicate keyboard shortcut in Cocoa debugger (Shift-Cmd-D was both new device window and 64-bit float format). * Made keyboard shortcuts slightly more consistent across debuggers. -plugins: Moved input selection menu and sequence polling code to a common library. Fixed the issue that prevented keyboard inputs being mapped with -steadykey on. -docs: Started adding some documentation for MAME's internal UI, and updated the list of example front-ends. -Regenerated message catalog sources. For translators, the new strings are mostly: * The names of the inputs provided by the OS-dependent layer for things like fullscreen and video features. These show up in the user interface inputs menu. * The names for automatically generated views. These show up in the video options menu - test with a system with a lot of screens to see more variants. * The input macro plugin UI. * A few format strings for analog input assignments. * A few strings for the about box header.
140 lines
4.9 KiB
Lua
140 lines
4.9 KiB
Lua
-- license:BSD-3-Clause
|
|
-- copyright-holders:MAMEdev Team
|
|
|
|
---------------------------------------------------------------------------
|
|
--
|
|
-- lib.lua
|
|
--
|
|
-- Rules for building lib cores
|
|
--
|
|
---------------------------------------------------------------------------
|
|
|
|
project "utils"
|
|
uuid "22489ad0-4cb2-4d91-ad81-24b0d80ca30a"
|
|
kind (LIBTYPE)
|
|
|
|
addprojectflags()
|
|
|
|
includedirs {
|
|
MAME_DIR .. "src/osd",
|
|
MAME_DIR .. "src/lib/util",
|
|
MAME_DIR .. "3rdparty",
|
|
ext_includedir("expat"),
|
|
ext_includedir("zlib"),
|
|
ext_includedir("flac"),
|
|
ext_includedir("utf8proc"),
|
|
}
|
|
|
|
if not _OPTIONS["with-system-utf8proc"] then
|
|
defines {
|
|
"UTF8PROC_STATIC",
|
|
}
|
|
end
|
|
|
|
files {
|
|
MAME_DIR .. "src/lib/util/abi.h",
|
|
MAME_DIR .. "src/lib/util/avhuff.cpp",
|
|
MAME_DIR .. "src/lib/util/avhuff.h",
|
|
MAME_DIR .. "src/lib/util/aviio.cpp",
|
|
MAME_DIR .. "src/lib/util/aviio.h",
|
|
MAME_DIR .. "src/lib/util/base64.hpp",
|
|
MAME_DIR .. "src/lib/util/bitmap.cpp",
|
|
MAME_DIR .. "src/lib/util/bitmap.h",
|
|
MAME_DIR .. "src/lib/util/bitstream.h",
|
|
MAME_DIR .. "src/lib/util/cdrom.cpp",
|
|
MAME_DIR .. "src/lib/util/cdrom.h",
|
|
MAME_DIR .. "src/lib/util/chd.cpp",
|
|
MAME_DIR .. "src/lib/util/chd.h",
|
|
MAME_DIR .. "src/lib/util/chdcd.cpp",
|
|
MAME_DIR .. "src/lib/util/chdcd.h",
|
|
MAME_DIR .. "src/lib/util/chdcodec.cpp",
|
|
MAME_DIR .. "src/lib/util/chdcodec.h",
|
|
MAME_DIR .. "src/lib/util/client_http.hpp",
|
|
MAME_DIR .. "src/lib/util/client_https.hpp",
|
|
MAME_DIR .. "src/lib/util/client_ws.hpp",
|
|
MAME_DIR .. "src/lib/util/client_wss.hpp",
|
|
MAME_DIR .. "src/lib/util/corealloc.cpp",
|
|
MAME_DIR .. "src/lib/util/corealloc.h",
|
|
MAME_DIR .. "src/lib/util/corefile.cpp",
|
|
MAME_DIR .. "src/lib/util/corefile.h",
|
|
MAME_DIR .. "src/lib/util/corestr.cpp",
|
|
MAME_DIR .. "src/lib/util/corestr.h",
|
|
MAME_DIR .. "src/lib/util/coretmpl.h",
|
|
MAME_DIR .. "src/lib/util/coreutil.cpp",
|
|
MAME_DIR .. "src/lib/util/coreutil.h",
|
|
MAME_DIR .. "src/lib/util/crypto.hpp",
|
|
MAME_DIR .. "src/lib/util/delegate.cpp",
|
|
MAME_DIR .. "src/lib/util/delegate.h",
|
|
MAME_DIR .. "src/lib/util/disasmintf.cpp",
|
|
MAME_DIR .. "src/lib/util/disasmintf.h",
|
|
MAME_DIR .. "src/lib/util/dynamicclass.cpp",
|
|
MAME_DIR .. "src/lib/util/dynamicclass.h",
|
|
MAME_DIR .. "src/lib/util/dynamicclass.ipp",
|
|
MAME_DIR .. "src/lib/util/endianness.h",
|
|
MAME_DIR .. "src/lib/util/flac.cpp",
|
|
MAME_DIR .. "src/lib/util/flac.h",
|
|
MAME_DIR .. "src/lib/util/harddisk.cpp",
|
|
MAME_DIR .. "src/lib/util/harddisk.h",
|
|
MAME_DIR .. "src/lib/util/hash.cpp",
|
|
MAME_DIR .. "src/lib/util/hash.h",
|
|
MAME_DIR .. "src/lib/util/hashing.cpp",
|
|
MAME_DIR .. "src/lib/util/hashing.h",
|
|
MAME_DIR .. "src/lib/util/huffman.cpp",
|
|
MAME_DIR .. "src/lib/util/huffman.h",
|
|
MAME_DIR .. "src/lib/util/ioprocs.cpp",
|
|
MAME_DIR .. "src/lib/util/ioprocs.h",
|
|
MAME_DIR .. "src/lib/util/ioprocsfill.h",
|
|
MAME_DIR .. "src/lib/util/ioprocsfilter.cpp",
|
|
MAME_DIR .. "src/lib/util/ioprocsfilter.h",
|
|
MAME_DIR .. "src/lib/util/ioprocsvec.h",
|
|
MAME_DIR .. "src/lib/util/jedparse.cpp",
|
|
MAME_DIR .. "src/lib/util/jedparse.h",
|
|
MAME_DIR .. "src/lib/util/language.cpp",
|
|
MAME_DIR .. "src/lib/util/language.h",
|
|
MAME_DIR .. "src/lib/util/lrucache.h",
|
|
MAME_DIR .. "src/lib/util/md5.cpp",
|
|
MAME_DIR .. "src/lib/util/md5.h",
|
|
MAME_DIR .. "src/lib/util/msdib.cpp",
|
|
MAME_DIR .. "src/lib/util/msdib.h",
|
|
MAME_DIR .. "src/lib/util/nanosvg.cpp",
|
|
MAME_DIR .. "src/lib/util/nanosvg.h",
|
|
MAME_DIR .. "src/lib/util/opresolv.cpp",
|
|
MAME_DIR .. "src/lib/util/opresolv.h",
|
|
MAME_DIR .. "src/lib/util/options.cpp",
|
|
MAME_DIR .. "src/lib/util/options.h",
|
|
MAME_DIR .. "src/lib/util/palette.cpp",
|
|
MAME_DIR .. "src/lib/util/palette.h",
|
|
MAME_DIR .. "src/lib/util/path.cpp",
|
|
MAME_DIR .. "src/lib/util/path.h",
|
|
MAME_DIR .. "src/lib/util/path_to_regex.cpp",
|
|
MAME_DIR .. "src/lib/util/path_to_regex.hpp",
|
|
MAME_DIR .. "src/lib/util/plaparse.cpp",
|
|
MAME_DIR .. "src/lib/util/plaparse.h",
|
|
MAME_DIR .. "src/lib/util/png.cpp",
|
|
MAME_DIR .. "src/lib/util/png.h",
|
|
MAME_DIR .. "src/lib/util/server_http.hpp",
|
|
MAME_DIR .. "src/lib/util/server_https.hpp",
|
|
MAME_DIR .. "src/lib/util/server_ws.hpp",
|
|
MAME_DIR .. "src/lib/util/server_wss.hpp",
|
|
MAME_DIR .. "src/lib/util/strformat.cpp",
|
|
MAME_DIR .. "src/lib/util/strformat.h",
|
|
MAME_DIR .. "src/lib/util/timeconv.cpp",
|
|
MAME_DIR .. "src/lib/util/timeconv.h",
|
|
MAME_DIR .. "src/lib/util/unicode.cpp",
|
|
MAME_DIR .. "src/lib/util/unicode.h",
|
|
MAME_DIR .. "src/lib/util/unzip.cpp",
|
|
MAME_DIR .. "src/lib/util/unzip.h",
|
|
MAME_DIR .. "src/lib/util/un7z.cpp",
|
|
MAME_DIR .. "src/lib/util/utilfwd.h",
|
|
MAME_DIR .. "src/lib/util/vbiparse.cpp",
|
|
MAME_DIR .. "src/lib/util/vbiparse.h",
|
|
MAME_DIR .. "src/lib/util/vecstream.cpp",
|
|
MAME_DIR .. "src/lib/util/vecstream.h",
|
|
MAME_DIR .. "src/lib/util/wavwrite.cpp",
|
|
MAME_DIR .. "src/lib/util/wavwrite.h",
|
|
MAME_DIR .. "src/lib/util/xmlfile.cpp",
|
|
MAME_DIR .. "src/lib/util/xmlfile.h",
|
|
MAME_DIR .. "src/lib/util/zippath.cpp",
|
|
MAME_DIR .. "src/lib/util/zippath.h",
|
|
}
|