summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Split UI and frontend part from core [Miodrag Milanovic] Miodrag Milanovic2016-04-231-50/+10
|
* Iterate over devices C++11 style AJR2016-04-181-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 Vas Crabb2016-04-101-1/+1
|
* remove ui/ui.h dependency from emu.h (for couriersud) Vas Crabb2016-04-101-0/+18
|
* Cleanups and version bump Miodrag Milanovic2016-03-301-1/+1
|
* Add ability for notifiers to add at front, fix for hiscore [Carl] Miodrag Milanovic2016-03-291-2/+5
|
* removed disclaimer since it was not shown anyway and it is known fact (nw) Miodrag Milanovic2016-03-281-1/+1
|
* removed double string in some instances of "Fatal error: Error: x" hap2016-03-201-2/+2
|
* Fix creation of paths on POSIX Vas Crabb2016-03-191-57/+57
|
* Fix logerror Vas Crabb2016-03-191-1/+1
|
* * Remove confusing method from vectorstreams that hide base_ios method ↵ Vas Crabb2016-03-181-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 Vas Crabb2016-03-141-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) Vas Crabb2016-03-111-2/+1
|
* commented out regression slow error.log on Windows hap2016-03-111-1/+3
|
* Fix some oversights in previous changes, sorry guys'n'gals Vas Crabb2016-03-031-1/+1
|
* Let's attack core_i64_format, too. This cleans up abuse of static buffers ↵ Vas Crabb2016-03-011-1/+1
| | | | in the unmapped read/write reporters
* Explicitly flush log file on each line Vas Crabb2016-03-011-0/+3
|
* * Support *n conversion in stream_format/string_format Vas Crabb2016-03-011-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 ↵ Vas Crabb2016-02-281-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) Miodrag Milanovic2016-02-271-1/+0
|
* fix autoboot_command (nw) Miodrag Milanovic2016-02-271-0/+1
|
* Cleanups and version bump Miodrag Milanovic2016-02-241-63/+63
|
* Added plugins and boot.lua as startup script [Miodrag Milanovic] Miodrag Milanovic2016-02-141-1/+3
|
* Merge pull request #605 from ajrhacker/isoctal Miodrag Milanović2016-02-051-1/+4
|\ | | | | Make octal flag part of address_space/address_space_config [AJR]
| * Make octal flag part of address_space/address_space_config, not ↵ AJR2016-02-041-1/+4
| | | | | | | | (illogically) device_execute_interface (nw)
* | Keep ui options separate from emulator ini file. (nw) Miodrag Milanovic2016-02-051-3/+4
|/ | | | TODO: Need fixing saving of some core settings that could be changed by UI
* Initial import of MEWUI to MAME [Dankan1890] Dankan18902016-02-041-63/+74
|
* reverting: Miodrag Milanovic2016-01-201-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)" Miodrag Milanovic2016-01-201-1/+1
| | | | This reverts commit caba131d844ade3f2b30d6be24ea6cf46b2949d7.
* rest of device parameters to std::string (nw) Miodrag Milanovic2016-01-161-1/+1
|
* tags are now strings (nw) Miodrag Milanovic2016-01-161-3/+3
| | | | fix start project for custom builds in Visual Studio (nw)
* put debug_view back in machine due to issues with QT (nw) Miodrag Milanovic2016-01-121-2/+6
|
* created debugger_manager, now this one owns debug_view_manager (nw) Miodrag Milanovic2016-01-121-2/+2
|
* modernize rom_load_manager (nw) Miodrag Milanovic2016-01-111-2/+1
|
* image_manager modernized and move some things around (nw) Miodrag Milanovic2016-01-111-1/+1
|
* modernized crosshair_manager (nw) Miodrag Milanovic2016-01-111-1/+1
|
* let's use our templates to clear (nw) Miodrag Milanovic2016-01-111-1/+1
|
* change initialization order, removes need for additional checks (nw) Miodrag Milanovic2016-01-111-3/+3
|
* Merge pull request #561 from ajrhacker/strings Miodrag Milanović2016-01-111-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 AJR2016-01-101-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) Miodrag Milanovic2016-01-101-2/+1
| |
* | modernize output_manager (nw) Miodrag Milanovic2016-01-101-1/+1
| |
* | modernized configuration_manager (nw) Miodrag Milanovic2016-01-101-3/+3
|/
* modernized bookkeeping manager (nw) Miodrag Milanovic2016-01-101-2/+1
|
* modernized network_manager (nw) Miodrag Milanovic2016-01-101-1/+1
|
* tagged_list without tagmap_t (nw) Miodrag Milanovic2015-12-111-32/+0
|
* clang-modernize part 1 (nw) Miodrag Milanovic2015-12-031-33/+33
|
* Initial conversion of core to C++14. Note that compilers are now limited to ↵ Miodrag Milanovic2015-12-031-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) Miodrag Milanovic2015-11-181-18/+0
|
* Some cleanups and init fixes with help of ReSharper C++ (nw) Miodrag Milanovic2015-11-111-7/+4
|