Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Split UI and frontend part from core [Miodrag Milanovic] | 2016-04-23 | 1 | -50/+10 | ||
| | ||||||
* | Iterate over devices C++11 style | 2016-04-18 | 1 | -37/+29 | ||
| | | | | | | Replace the old device_iterator and its specialized versions with functionally equivalent classes that use standard operators to yield references to devices/interfaces rather than pointers. With range-based for loops, they no longer have to be stored in named variables, though they can also be reused concurrently since the iteration state is now maintained by a subclass. Add a few more typical getters to device_t::subdevice_list. | |||||
* | whoops, that's not a format string | 2016-04-10 | 1 | -1/+1 | ||
| | ||||||
* | remove ui/ui.h dependency from emu.h (for couriersud) | 2016-04-10 | 1 | -0/+18 | ||
| | ||||||
* | Cleanups and version bump | 2016-03-30 | 1 | -1/+1 | ||
| | ||||||
* | Add ability for notifiers to add at front, fix for hiscore [Carl] | 2016-03-29 | 1 | -2/+5 | ||
| | ||||||
* | removed disclaimer since it was not shown anyway and it is known fact (nw) | 2016-03-28 | 1 | -1/+1 | ||
| | ||||||
* | removed double string in some instances of "Fatal error: Error: x" | 2016-03-20 | 1 | -2/+2 | ||
| | ||||||
* | Fix creation of paths on POSIX | 2016-03-19 | 1 | -57/+57 | ||
| | ||||||
* | Fix logerror | 2016-03-19 | 1 | -1/+1 | ||
| | ||||||
* | * Remove confusing method from vectorstreams that hide base_ios method ↵ | 2016-03-18 | 1 | -1/+1 | ||
| | | | | | | | | | | | | | (fixes disassembly view) * Allow std::string to pass through core_file unmolested (reduces temporary allocations) * Make zip/7z instances of same class with uniform interface * zippath browsing is broken at the moment This is another step towards transparent archive support. It's now possible to access zip and 7z archives with the same code. Nothing is taking advantage of it yet. There's now some very similar code in fileio.cpp and clifront.cpp that could be folded at some point. | |||||
* | Make osd_file a polymorphic class that's held with smart pointers | 2016-03-14 | 1 | -7/+7 | ||
| | | | | | | | | | | | | | | | Make avi_file a class that's held with smart pointers, encapsulate various AVI I/O structures Make zip_file and _7z_file classes rather than having free functions everywhere Hide zip/7z class implementation behind an interface, no longer need to call close() to send back to the cache Don't dump as much crap in global namespace Add solaris PTY implementation Improve variable expansion for SDL OSD - supports ~/$FOO/${BAR} syntax Rearrange stuff so the same things are in file module for all OSDs Move file stuff into its own module 7z/zip open and destruct are still not thread-safe due to lack of interlocks around cache access Directory functions still need to be moved to file module SDL OSD may not initialise WinSock on Windows | |||||
* | Don't need to call FlushFileBuffers (it's equivalent to fsync, not fflush) | 2016-03-11 | 1 | -2/+1 | ||
| | ||||||
* | commented out regression slow error.log on Windows | 2016-03-11 | 1 | -1/+3 | ||
| | ||||||
* | Fix some oversights in previous changes, sorry guys'n'gals | 2016-03-03 | 1 | -1/+1 | ||
| | ||||||
* | Let's attack core_i64_format, too. This cleans up abuse of static buffers ↵ | 2016-03-01 | 1 | -1/+1 | ||
| | | | | in the unmapped read/write reporters | |||||
* | Explicitly flush log file on each line | 2016-03-01 | 1 | -0/+3 | ||
| | ||||||
* | * Support *n conversion in stream_format/string_format | 2016-03-01 | 1 | -73/+1 | ||
| | | | | | | | | | * Make stream_format return characters printed * Add iostreams with std::vector storage * Move to type-safe templates for logerror and popmessage * Remove now-unnecessary I64FMT from calls to logerror/popmessage * Put some lib/util stuff in util:: namespace * Some fixes to Japanese translation | |||||
* | Replace strformat, strprintf and strcatprintf with type-safe steam_format ↵ | 2016-02-28 | 1 | -6/+7 | ||
| | | | | | | | | | and string_format Update MAME to use new function Instantiate ODR-used static constant members Make some of the UI code more localisable Remove use of retired functions in tools | |||||
* | Clean way of doing it (nw) | 2016-02-27 | 1 | -1/+0 | ||
| | ||||||
* | fix autoboot_command (nw) | 2016-02-27 | 1 | -0/+1 | ||
| | ||||||
* | Cleanups and version bump | 2016-02-24 | 1 | -63/+63 | ||
| | ||||||
* | Added plugins and boot.lua as startup script [Miodrag Milanovic] | 2016-02-14 | 1 | -1/+3 | ||
| | ||||||
* | Merge pull request #605 from ajrhacker/isoctal | 2016-02-05 | 1 | -1/+4 | ||
|\ | | | | | Make octal flag part of address_space/address_space_config [AJR] | |||||
| * | Make octal flag part of address_space/address_space_config, not ↵ | 2016-02-04 | 1 | -1/+4 | ||
| | | | | | | | | (illogically) device_execute_interface (nw) | |||||
* | | Keep ui options separate from emulator ini file. (nw) | 2016-02-05 | 1 | -3/+4 | ||
|/ | | | | TODO: Need fixing saving of some core settings that could be changed by UI | |||||
* | Initial import of MEWUI to MAME [Dankan1890] | 2016-02-04 | 1 | -63/+74 | ||
| | ||||||
* | reverting: | 2016-01-20 | 1 | -3/+3 | ||
| | | | | | | | SHA-1: 1f90ceab075c4869298e963bf0a14a0aac2f1caa * tags are now strings (nw) fix start project for custom builds in Visual Studio (nw) | |||||
* | Revert "rest of device parameters to std::string (nw)" | 2016-01-20 | 1 | -1/+1 | ||
| | | | | This reverts commit caba131d844ade3f2b30d6be24ea6cf46b2949d7. | |||||
* | rest of device parameters to std::string (nw) | 2016-01-16 | 1 | -1/+1 | ||
| | ||||||
* | tags are now strings (nw) | 2016-01-16 | 1 | -3/+3 | ||
| | | | | fix start project for custom builds in Visual Studio (nw) | |||||
* | put debug_view back in machine due to issues with QT (nw) | 2016-01-12 | 1 | -2/+6 | ||
| | ||||||
* | created debugger_manager, now this one owns debug_view_manager (nw) | 2016-01-12 | 1 | -2/+2 | ||
| | ||||||
* | modernize rom_load_manager (nw) | 2016-01-11 | 1 | -2/+1 | ||
| | ||||||
* | image_manager modernized and move some things around (nw) | 2016-01-11 | 1 | -1/+1 | ||
| | ||||||
* | modernized crosshair_manager (nw) | 2016-01-11 | 1 | -1/+1 | ||
| | ||||||
* | let's use our templates to clear (nw) | 2016-01-11 | 1 | -1/+1 | ||
| | ||||||
* | change initialization order, removes need for additional checks (nw) | 2016-01-11 | 1 | -3/+3 | ||
| | ||||||
* | Merge pull request #561 from ajrhacker/strings | 2016-01-11 | 1 | -26/+17 | ||
|\ | | | | | Return std::string objects by value rather than pass by reference [ajrhacker] | |||||
| * | Return std::string objects by value rather than pass by reference | 2016-01-10 | 1 | -26/+17 | ||
| | | | | | | | | | | | | - strprintf is unaltered, but strformat now takes one fewer argument - state_string_export still fills a buffer, but has been made const - get_default_card_software now takes no arguments but returns a string | |||||
* | | modernized ui_input_manager (nw) | 2016-01-10 | 1 | -2/+1 | ||
| | | ||||||
* | | modernize output_manager (nw) | 2016-01-10 | 1 | -1/+1 | ||
| | | ||||||
* | | modernized configuration_manager (nw) | 2016-01-10 | 1 | -3/+3 | ||
|/ | ||||||
* | modernized bookkeeping manager (nw) | 2016-01-10 | 1 | -2/+1 | ||
| | ||||||
* | modernized network_manager (nw) | 2016-01-10 | 1 | -1/+1 | ||
| | ||||||
* | tagged_list without tagmap_t (nw) | 2015-12-11 | 1 | -32/+0 | ||
| | ||||||
* | clang-modernize part 1 (nw) | 2015-12-03 | 1 | -33/+33 | ||
| | ||||||
* | Initial conversion of core to C++14. Note that compilers are now limited to ↵ | 2015-12-03 | 1 | -19/+17 | ||
| | | | | GCC 4.9.0 and up, Clang 3.4.0 and up, and VS2013 and up [Miodrag Milanovic] | |||||
* | removed old code part (nw) | 2015-11-18 | 1 | -18/+0 | ||
| | ||||||
* | Some cleanups and init fixes with help of ReSharper C++ (nw) | 2015-11-11 | 1 | -7/+4 | ||
| |