From e73157bb4976bfd916bfc0da21973000869cf4eb Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sun, 11 Jun 2017 14:44:47 -0400 Subject: [PATCH] ahh, yahbooze, we hardly knew you... --- .../Extensions/CoreExtensions.cs | 4 - .../config/ProfileConfig.cs | 20 - .../BizHawk.Emulation.Cores.csproj | 23 - .../Consoles/Sega/Saturn/LibYabause.cs | 252 --- .../Sega/Saturn/Yabause.IDriveLight.cs | 14 - .../Sega/Saturn/Yabause.IInputPollable.cs | 23 - .../Sega/Saturn/Yabause.IMemoryDomains.cs | 26 - .../Consoles/Sega/Saturn/Yabause.ISaveram.cs | 74 - .../Consoles/Sega/Saturn/Yabause.ISettable.cs | 135 -- .../Consoles/Sega/Saturn/Yabause.IStatable.cs | 125 -- .../Sega/Saturn/Yabause.ITraceable.cs | 35 - .../Consoles/Sega/Saturn/Yabause.cs | 504 ------ output/dll/libyabause.dll | Bin 629760 -> 0 bytes yabause/AUTHORS | 36 - yabause/CMakeLists.txt | 35 - yabause/COPYING | 340 ----- yabause/ChangeLog | 924 ----------- yabause/GOALS | 8 - yabause/INSTALL | 229 --- yabause/Makefile.am | 2 - yabause/NEWS | 0 yabause/README | 103 -- yabause/README.DC | 85 -- yabause/README.LIN | 135 -- yabause/README.MAC | 98 -- yabause/README.PSP | 802 ---------- yabause/README.QT | 138 -- yabause/README.WII | 88 -- yabause/README.WIN | 250 --- yabause/TODO | 1 - yabause/acinclude.m4 | 34 - yabause/autogen.sh | 2 - yabause/autopackage/default.apspec.in | 57 - yabause/configure.in | 616 -------- yabause/doc/CMakeLists.txt | 11 - yabause/doc/Doxyfile.in | 1356 ----------------- yabause/l10n/CMakeLists.txt | 13 - yabause/l10n/Makefile.am | 19 - yabause/l10n/yabause_de.yts | 195 --- yabause/l10n/yabause_es.yts | 198 --- yabause/l10n/yabause_fr.yts | 276 ---- yabause/l10n/yabause_it.yts | 198 --- yabause/l10n/yabause_lt.yts | 195 --- yabause/l10n/yabause_pt.yts | 195 --- yabause/l10n/yabause_pt_BR.yts | 274 ---- yabause/l10n/yabause_sv.yts | 195 --- 46 files changed, 8343 deletions(-) delete mode 100644 BizHawk.Emulation.Cores/Consoles/Sega/Saturn/LibYabause.cs delete mode 100644 BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IDriveLight.cs delete mode 100644 BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IInputPollable.cs delete mode 100644 BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IMemoryDomains.cs delete mode 100644 BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.ISaveram.cs delete mode 100644 BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.ISettable.cs delete mode 100644 BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IStatable.cs delete mode 100644 BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.ITraceable.cs delete mode 100644 BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs delete mode 100644 output/dll/libyabause.dll delete mode 100644 yabause/AUTHORS delete mode 100644 yabause/CMakeLists.txt delete mode 100644 yabause/COPYING delete mode 100644 yabause/ChangeLog delete mode 100644 yabause/GOALS delete mode 100644 yabause/INSTALL delete mode 100644 yabause/Makefile.am delete mode 100644 yabause/NEWS delete mode 100644 yabause/README delete mode 100644 yabause/README.DC delete mode 100644 yabause/README.LIN delete mode 100644 yabause/README.MAC delete mode 100644 yabause/README.PSP delete mode 100644 yabause/README.QT delete mode 100644 yabause/README.WII delete mode 100644 yabause/README.WIN delete mode 100644 yabause/TODO delete mode 100644 yabause/acinclude.m4 delete mode 100644 yabause/autogen.sh delete mode 100644 yabause/autopackage/default.apspec.in delete mode 100644 yabause/configure.in delete mode 100644 yabause/doc/CMakeLists.txt delete mode 100644 yabause/doc/Doxyfile.in delete mode 100644 yabause/l10n/CMakeLists.txt delete mode 100644 yabause/l10n/Makefile.am delete mode 100644 yabause/l10n/yabause_de.yts delete mode 100644 yabause/l10n/yabause_es.yts delete mode 100644 yabause/l10n/yabause_fr.yts delete mode 100644 yabause/l10n/yabause_it.yts delete mode 100644 yabause/l10n/yabause_lt.yts delete mode 100644 yabause/l10n/yabause_pt.yts delete mode 100644 yabause/l10n/yabause_pt_BR.yts delete mode 100644 yabause/l10n/yabause_sv.yts diff --git a/BizHawk.Client.EmuHawk/Extensions/CoreExtensions.cs b/BizHawk.Client.EmuHawk/Extensions/CoreExtensions.cs index 234ba3c611..9afe9fffd1 100644 --- a/BizHawk.Client.EmuHawk/Extensions/CoreExtensions.cs +++ b/BizHawk.Client.EmuHawk/Extensions/CoreExtensions.cs @@ -36,10 +36,6 @@ namespace BizHawk.Client.EmuHawk.CoreExtensions { return Properties.Resources.bsnes; } - else if (core is Yabause) - { - return Properties.Resources.yabause; - } else if (core is Atari7800) { return Properties.Resources.emu7800; diff --git a/BizHawk.Client.EmuHawk/config/ProfileConfig.cs b/BizHawk.Client.EmuHawk/config/ProfileConfig.cs index af480fdea9..b2dee08ac5 100644 --- a/BizHawk.Client.EmuHawk/config/ProfileConfig.cs +++ b/BizHawk.Client.EmuHawk/config/ProfileConfig.cs @@ -94,11 +94,6 @@ namespace BizHawk.Client.EmuHawk // SNES Global.Config.SNES_InSnes9x = true; - // Saturn - var saturnSettings = GetSyncSettings(); - saturnSettings.SkipBios = false; - PutSyncSettings(saturnSettings); - // Genesis var genesisSettings = GetSyncSettings(); genesisSettings.Region = LibGPGX.Region.Autodetect; @@ -151,11 +146,6 @@ namespace BizHawk.Client.EmuHawk snesSettings.Profile = "Compatibility"; PutSyncSettings(snesSettings); - // Saturn - var saturnSettings = GetSyncSettings(); - saturnSettings.SkipBios = false; - PutSyncSettings(saturnSettings); - // Genesis var genesisSettings = GetSyncSettings(); genesisSettings.Region = LibGPGX.Region.Autodetect; @@ -211,11 +201,6 @@ namespace BizHawk.Client.EmuHawk snesSettings.Profile = "Compatibility"; PutSyncSettings(snesSettings); - // Saturn - var saturnSettings = GetSyncSettings(); - saturnSettings.SkipBios = true; - PutSyncSettings(saturnSettings); - // Genesis var genesisSettings = GetSyncSettings(); genesisSettings.Region = LibGPGX.Region.Autodetect; @@ -271,11 +256,6 @@ namespace BizHawk.Client.EmuHawk snesSettings.Profile = "Compatibility"; PutSyncSettings(snesSettings); - // Saturn - var saturnSettings = GetSyncSettings(); - saturnSettings.SkipBios = true; - PutSyncSettings(saturnSettings); - // Genesis var genesisSettings = GetSyncSettings(); genesisSettings.Region = LibGPGX.Region.Autodetect; diff --git a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj index d72e825d1a..e95661f388 100644 --- a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj +++ b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj @@ -1148,31 +1148,8 @@ - - - - Yabause.cs - - - Yabause.cs - - - Yabause.cs - - - Yabause.cs - - - Yabause.cs - - - Yabause.cs - - - Yabause.cs - SMS.cs diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/LibYabause.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/LibYabause.cs deleted file mode 100644 index d40788220b..0000000000 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/LibYabause.cs +++ /dev/null @@ -1,252 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Runtime.InteropServices; - -namespace BizHawk.Emulation.Cores.Sega.Saturn -{ - public static class LibYabause - { - /// - /// A,B,C,Start,DPad - /// - public enum Buttons1 : byte - { - B = 0x01, - C = 0x02, - A = 0x04, - S = 0x08, - U = 0x10, - D = 0x20, - L = 0x40, - R = 0x80 - } - - /// - /// X,Y,Z,Shoulders - /// - public enum Buttons2 : byte - { - L = 0x08, - Z = 0x10, - Y = 0x20, - X = 0x40, - R = 0x80 - } - - /// - /// - /// - /// player1 - /// player1 - /// player2 - /// player2 - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern void libyabause_setpads(Buttons1 p11, Buttons2 p12, Buttons1 p21, Buttons2 p22); - - - /// - /// set video buffer - /// - /// 32 bit color, should persist over time. must hold at least 704*512px in software mode, or (704*n*512*n)px - /// in hardware mode with native factor size, or w*hpx in gl mode with explicit size - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern void libyabause_setvidbuff(IntPtr buff); - - /// - /// - /// - /// persistent location of s16 interleaved - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern void libyabause_setsndbuff(IntPtr buff); - - /// - /// soft reset, or something like that - /// - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern void libyabause_softreset(); - - /// - /// hard reset, or something like that - /// - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern void libyabause_hardreset(); - - - [UnmanagedFunctionPointer(CallingConvention.Cdecl)] - public delegate void InputCallback(); - - /// - /// set a fcn to call every time input is read - /// - /// execxutes right before the input read. null to clear - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern void libyabause_setinputcallback(InputCallback cb); - - - [UnmanagedFunctionPointer(CallingConvention.Cdecl)] - public delegate void TraceCallback(string dis, string regs); - - /// - /// set a fcn to call every time input is read - /// - /// execxutes right before the input read. null to clear - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern void libyabause_settracecallback(TraceCallback cb); - - - /// - /// - /// - /// - /// success - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern bool libyabause_loadstate(string fn); - - /// - /// - /// - /// - /// success - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern bool libyabause_savestate(string fn); - - /// - /// - /// - /// width of framebuffer - /// height of framebuffer - /// number of sample pairs produced - /// true if lagged - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern bool libyabause_frameadvance(out int w, out int h, out int nsamp); - - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern void libyabause_deinit(); - - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern bool libyabause_savesaveram(string fn); - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern bool libyabause_loadsaveram(string fn); - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern void libyabause_clearsaveram(); - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern bool libyabause_saveramodified(); - - public struct NativeMemoryDomain - { - public IntPtr data; - public string name; - public int length; - } - - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - static extern IntPtr libyabause_getmemoryareas(); - - public static IEnumerable libyabause_getmemoryareas_ex() - { - var ret = new List(); - IntPtr start = libyabause_getmemoryareas(); - while (true) - { - var nmd = (NativeMemoryDomain)Marshal.PtrToStructure(start, typeof(NativeMemoryDomain)); - if (nmd.data == IntPtr.Zero || nmd.name == null) - return ret.AsReadOnly(); - ret.Add(nmd); - start += Marshal.SizeOf(typeof(NativeMemoryDomain)); - } - } - - /// - /// set the overall resolution. only works in gl mode and when nativefactor = 0 - /// - /// width - /// height - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern void libyabause_glresize(int w, int h); - - /// - /// cause the overall resolution to automatically switch to a multiple of the original console resolution, as the original console resolution changes. - /// only applies in gl mode. - /// - /// factor, 1-4, 0 to disable. - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern void libyabause_glsetnativefactor(int n); - - - public enum CartType : int - { - NONE = 0, - DRAM8MBIT = 6, - DRAM32MBIT = 7 - } - - /// - /// - /// - /// cd interface. struct need not persist after call, but the function pointers better - /// path to bios, pass null to use built in bios emulation - /// true for opengl - /// if true, skip bios opening - /// if true, sync RTC to actual emulated time; if false, use real real time - /// if non-zero, initial emulation time in unix format - /// - [DllImport("libyabause.dll", CallingConvention = CallingConvention.Cdecl)] - public static extern bool libyabause_init(ref CDInterface intf, string biosfn, bool usegl, CartType carttype, bool quickload, bool clocksync, int clockbase); - - public struct CDInterface - { - public int DontTouch; - public IntPtr DontTouch2; - /// - /// init cd functions - /// - /// - /// 0 on success, -1 on failure - [UnmanagedFunctionPointer(CallingConvention.Cdecl)] - public delegate int Init(string unused); - public Init InitFunc; - /// - /// deinit cd functions - /// - [UnmanagedFunctionPointer(CallingConvention.Cdecl)] - public delegate void DeInit(); - public DeInit DeInitFunc; - /// - /// 0 = cd present, spinning - /// 1 = cd present, not spinning - /// 2 = no cd - /// 3 = tray open - /// - /// - [UnmanagedFunctionPointer(CallingConvention.Cdecl)] - public delegate int GetStatus(); - public GetStatus GetStatusFunc; - /// - /// read all TOC entries - /// - /// place to copy to - /// number of bytes written. should be 408 - [UnmanagedFunctionPointer(CallingConvention.Cdecl)] - public delegate int ReadTOC(IntPtr dest); - public ReadTOC ReadTOCFunc; - /// - /// read a sector, should be 2352 bytes - /// - /// - /// - /// - [UnmanagedFunctionPointer(CallingConvention.Cdecl)] - public delegate int ReadSectorFAD(int FAD, IntPtr dest); - public ReadSectorFAD ReadSectorFADFunc; - /// - /// hint the next sector, for async loading - /// - /// - [UnmanagedFunctionPointer(CallingConvention.Cdecl)] - public delegate void ReadAheadFAD(int FAD); - public ReadAheadFAD ReadAheadFADFunc; - } - } -} diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IDriveLight.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IDriveLight.cs deleted file mode 100644 index 61a03e64cd..0000000000 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IDriveLight.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; - -using BizHawk.Emulation.Common; - -namespace BizHawk.Emulation.Cores.Sega.Saturn -{ - public partial class Yabause : IDriveLight - { - public bool DriveLightEnabled { get; private set; } - public bool DriveLightOn { get; private set; } - } -} diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IInputPollable.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IInputPollable.cs deleted file mode 100644 index 76fcd17db9..0000000000 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IInputPollable.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; - -using BizHawk.Emulation.Common; - -namespace BizHawk.Emulation.Cores.Sega.Saturn -{ - public partial class Yabause : IInputPollable - { - public int LagCount { get; set; } - - public bool IsLagFrame { get; set; } - - // TODO: optimize managed to unmanaged using the ActiveChanged event - public IInputCallbackSystem InputCallbacks - { - [FeatureNotImplemented]get { return _inputCallbacks; } - } - - private readonly InputCallbackSystem _inputCallbacks = new InputCallbackSystem(); - } -} diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IMemoryDomains.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IMemoryDomains.cs deleted file mode 100644 index 137e02fbb2..0000000000 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IMemoryDomains.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System.Collections.Generic; -using BizHawk.Emulation.Common; - -namespace BizHawk.Emulation.Cores.Sega.Saturn -{ - public partial class Yabause - { - private IMemoryDomains _memoryDomains; - - private void InitMemoryDomains() - { - var ret = new List(); - var nmds = LibYabause.libyabause_getmemoryareas_ex(); - foreach (var nmd in nmds) - { - ret.Add(new MemoryDomainIntPtr(nmd.name, MemoryDomain.Endian.Little, nmd.data, nmd.length, true, 4)); - } - - // main memory is in position 2 - _memoryDomains = new MemoryDomainList(ret); - _memoryDomains.MainMemory = _memoryDomains["Work Ram Low"]; - - (ServiceProvider as BasicServiceProvider).Register(_memoryDomains); - } - } -} diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.ISaveram.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.ISaveram.cs deleted file mode 100644 index 2bfa01d413..0000000000 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.ISaveram.cs +++ /dev/null @@ -1,74 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using BizHawk.Emulation.Common; - -namespace BizHawk.Emulation.Cores.Sega.Saturn -{ - public partial class Yabause : ISaveRam - { - public byte[] CloneSaveRam() - { - if (Disposed) - { - if (DisposedSaveRam != null) - { - return (byte[])DisposedSaveRam.Clone(); - } - else - { - return new byte[0]; - } - } - else - { - var ms = new MemoryStream(); - var fp = new FilePiping(); - fp.Get(ms); - bool success = LibYabause.libyabause_savesaveram(fp.GetPipeNameNative()); - fp.Finish(); - if (!success) - throw new Exception("libyabause_savesaveram() failed!"); - var ret = ms.ToArray(); - ms.Dispose(); - return ret; - } - - } - - public void StoreSaveRam(byte[] data) - { - if (Disposed) - { - throw new Exception("It's a bit late for that"); - } - else - { - var fp = new FilePiping(); - fp.Offer(data); - bool success = LibYabause.libyabause_loadsaveram(fp.GetPipeNameNative()); - fp.Finish(); - if (!success) - { - throw new Exception("libyabause_loadsaveram() failed!"); - } - } - } - - public bool SaveRamModified - { - get - { - if (Disposed) - { - return DisposedSaveRam != null; - } - else - { - return LibYabause.libyabause_saveramodified(); - } - } - } - } -} diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.ISettable.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.ISettable.cs deleted file mode 100644 index be59406e53..0000000000 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.ISettable.cs +++ /dev/null @@ -1,135 +0,0 @@ -using System; -using System.ComponentModel; -using Newtonsoft.Json; - -using BizHawk.Common; -using BizHawk.Emulation.Common; - -namespace BizHawk.Emulation.Cores.Sega.Saturn -{ - public partial class Yabause : ISettable - { - public object GetSettings() - { - return null; - } - - public SaturnSyncSettings GetSyncSettings() - { - return SyncSettings.Clone(); - } - - public bool PutSettings(object o) - { - return false; - } - - public bool PutSyncSettings(SaturnSyncSettings o) - { - bool ret = SaturnSyncSettings.NeedsReboot(SyncSettings, o); - - SyncSettings = o; - - if (GLMode && SyncSettings.UseGL) - { - if (SyncSettings.DispFree) - { - SetGLRes(0, SyncSettings.GLW, SyncSettings.GLH); - } - else - { - SetGLRes(SyncSettings.DispFactor, 0, 0); - } - } - - return ret; - } - - private SaturnSyncSettings SyncSettings; - - public class SaturnSyncSettings - { - [DisplayName("Open GL Mode")] - [Description("Use OpenGL mode for rendering instead of software.")] - [DefaultValue(false)] - public bool UseGL { get; set; } - - [DisplayName("Display Factor")] - [Description("In OpenGL mode, the internal resolution as a multiple of the normal internal resolution (1x, 2x, 3x, 4x). Ignored in software mode or when a custom resolution is used.")] - [DefaultValue(1)] - public int DispFactor - { - get { return _DispFactor; } - set { _DispFactor = Math.Max(1, Math.Min(value, 4)); } - } - - [JsonIgnore] - [DeepEqualsIgnore] - private int _DispFactor; - - [DisplayName("Display Free")] - [Description("In OpenGL mode, set to true to use a custom resolution and ignore DispFactor.")] - [DefaultValue(false)] - public bool DispFree { get { return _DispFree; } set { _DispFree = value; } } - [JsonIgnore] - [DeepEqualsIgnore] - private bool _DispFree; - - [DisplayName("DispFree Final Width")] - [Description("In OpenGL mode and when DispFree is true, the width of the final resolution.")] - [DefaultValue(640)] - public int GLW { get { return _GLW; } set { _GLW = Math.Max(320, Math.Min(value, 2048)); } } - [JsonIgnore] - [DeepEqualsIgnore] - private int _GLW; - - [DisplayName("DispFree Final Height")] - [Description("In OpenGL mode and when DispFree is true, the height of the final resolution.")] - [DefaultValue(480)] - public int GLH - { - get { return _GLH; } - set { _GLH = Math.Max(224, Math.Min(value, 1024)); } - } - - [JsonIgnore] - [DeepEqualsIgnore] - private int _GLH; - - [DisplayName("Ram Cart Type")] - [Description("The type of the attached RAM cart. Most games will not use this.")] - [DefaultValue(LibYabause.CartType.NONE)] - public LibYabause.CartType CartType { get; set; } - - [DisplayName("Skip BIOS")] - [Description("Skip the Bios Intro screen.")] - [DefaultValue(false)] - public bool SkipBios { get; set; } - - [DisplayName("Use RealTime RTC")] - [Description("If true, the real time clock will reflect real time, instead of emulated time. Ignored (forced to false) when a movie is recording.")] - [DefaultValue(false)] - public bool RealTimeRTC { get; set; } - - [DisplayName("RTC intiial time")] - [Description("Set the initial RTC time. Only used when RealTimeRTC is false.")] - [DefaultValue(typeof(DateTime), "2010-01-01")] - public DateTime RTCInitialTime { get; set; } - - public static bool NeedsReboot(SaturnSyncSettings x, SaturnSyncSettings y) - { - return !DeepEquality.DeepEquals(x, y); - } - - public SaturnSyncSettings Clone() - { - return (SaturnSyncSettings)MemberwiseClone(); - } - - public SaturnSyncSettings() - { - SettingsUtil.SetDefaultValues(this); - } - } - } -} diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IStatable.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IStatable.cs deleted file mode 100644 index 8dbb3afd24..0000000000 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IStatable.cs +++ /dev/null @@ -1,125 +0,0 @@ -using System; -using System.IO; - -using BizHawk.Common.BufferExtensions; -using BizHawk.Emulation.Common; - -namespace BizHawk.Emulation.Cores.Sega.Saturn -{ - public partial class Yabause : IStatable - { - public bool BinarySaveStatesPreferred { get { return true; } } - - // these next 5 functions are all exact copy paste from gambatte. - // if something's wrong here, it's probably wrong there too - - public void SaveStateText(TextWriter writer) - { - var temp = SaveStateBinary(); - temp.SaveAsHexFast(writer); - // write extra copy of stuff we don't use - writer.WriteLine("Frame {0}", Frame); - } - - public void LoadStateText(TextReader reader) - { - string hex = reader.ReadLine(); - byte[] state = new byte[hex.Length / 2]; - state.ReadFromHexFast(hex); - LoadStateBinary(new BinaryReader(new MemoryStream(state))); - } - - public void SaveStateBinary(BinaryWriter writer) - { - byte[] data = SaveCoreBinary(); - - writer.Write(data.Length); - writer.Write(data); - - // other variables - writer.Write(IsLagFrame); - writer.Write(LagCount); - writer.Write(Frame); - } - - public void LoadStateBinary(BinaryReader reader) - { - int length = reader.ReadInt32(); - byte[] data = reader.ReadBytes(length); - - LoadCoreBinary(data); - - // other variables - IsLagFrame = reader.ReadBoolean(); - LagCount = reader.ReadInt32(); - Frame = reader.ReadInt32(); - } - - public byte[] SaveStateBinary() - { - MemoryStream ms = new MemoryStream(); - BinaryWriter bw = new BinaryWriter(ms); - SaveStateBinary(bw); - bw.Flush(); - return ms.ToArray(); - } - - /// - /// does a save, load, save combo, and checks the two saves for identicalness. - /// - private void CheckStates() - { - byte[] s1 = SaveStateBinary(); - LoadStateBinary(new BinaryReader(new MemoryStream(s1, false))); - byte[] s2 = SaveStateBinary(); - if (s1.Length != s2.Length) - throw new Exception(string.Format("CheckStates: Length {0} != {1}", s1.Length, s2.Length)); - unsafe - { - fixed (byte* b1 = &s1[0], b2 = &s2[0]) - { - for (int i = 0; i < s1.Length; i++) - { - if (b1[i] != b2[i]) - { - File.WriteAllBytes("save1.raw", s1); - File.WriteAllBytes("save2.raw", s2); - throw new Exception(string.Format("CheckStates s1[{0}] = {1}, s2[{0}] = {2}", i, b1[i], b2[i])); - } - } - } - } - } - - private void LoadCoreBinary(byte[] data) - { - var fp = new FilePiping(); - fp.Offer(data); - - //loadstate can trigger GL work - ActivateGL(); - - bool succeed = LibYabause.libyabause_loadstate(fp.GetPipeNameNative()); - - DeactivateGL(); - - fp.Finish(); - if (!succeed) - throw new Exception("libyabause_loadstate() failed"); - } - - private byte[] SaveCoreBinary() - { - var ms = new MemoryStream(); - var fp = new FilePiping(); - fp.Get(ms); - bool succeed = LibYabause.libyabause_savestate(fp.GetPipeNameNative()); - fp.Finish(); - var ret = ms.ToArray(); - ms.Close(); - if (!succeed) - throw new Exception("libyabause_savestate() failed"); - return ret; - } - } -} diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.ITraceable.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.ITraceable.cs deleted file mode 100644 index a4107ec5f7..0000000000 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.ITraceable.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; - -using BizHawk.Emulation.Common; - -namespace BizHawk.Emulation.Cores.Sega.Saturn -{ - public partial class Yabause - { - public TraceBuffer Tracer { get; private set; } - - public static string TraceHeader = "SH2: core, PC, machine code, mnemonic, operands, registers (GPRs, PR, SR, MAC, GBR, VBR)"; - - LibYabause.TraceCallback trace_cb; - - public void YabauseTraceCallback(string dis, string regs) - { - Tracer.Put(new TraceInfo - { - Disassembly = dis, - RegisterInfo = regs - }); - } - - private void ConnectTracer() - { - trace_cb = new LibYabause.TraceCallback(YabauseTraceCallback); - Tracer = new TraceBuffer() { Header = TraceHeader }; - ServiceProvider = new BasicServiceProvider(this); - (ServiceProvider as BasicServiceProvider).Register(Tracer); - } - } -} diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs deleted file mode 100644 index 85f41f04c1..0000000000 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs +++ /dev/null @@ -1,504 +0,0 @@ -using System; -using System.Runtime.InteropServices; - -using BizHawk.Emulation.Common; -using BizHawk.Emulation.DiscSystem; - -namespace BizHawk.Emulation.Cores.Sega.Saturn -{ - [CoreAttributes( - "Yabause", - "", - isPorted: true, - isReleased: true, - portedVersion: "9.12", - portedUrl: "http://yabause.org", - singleInstance: true)] - public partial class Yabause : IEmulator, IVideoProvider, ISoundProvider, ISaveRam, IStatable, IInputPollable, - ISettable, IDriveLight - { - public Yabause(CoreComm coreComm, Disc cd, object syncSettings) - { - ServiceProvider = new BasicServiceProvider(this); - byte[] bios = coreComm.CoreFileProvider.GetFirmware("SAT", "J", true, "Saturn BIOS is required."); - coreComm.RomStatusDetails = string.Format("Disk partial hash:{0}", new DiscHasher(cd).OldHash()); - CoreComm = coreComm; - CD = cd; - DiscSectorReader = new DiscSectorReader(cd); - - SyncSettings = (SaturnSyncSettings)syncSettings ?? new SaturnSyncSettings(); - - if (SyncSettings.UseGL && glContext == null) - { - glContext = coreComm.RequestGLContext(2,0,false); - } - - ResetCounters(); - - ActivateGL(); - Init(bios); - - InputCallbackH = new LibYabause.InputCallback(() => InputCallbacks.Call()); - LibYabause.libyabause_setinputcallback(InputCallbackH); - ConnectTracer(); - DriveLightEnabled = true; - - DeactivateGL(); - } - - public static ControllerDefinition SaturnController = new ControllerDefinition - { - Name = "Saturn Controller", - BoolButtons = - { - "Power", "Reset", - "P1 Up", "P1 Down", "P1 Left", "P1 Right", "P1 Start", "P1 A", "P1 B", "P1 C", "P1 X", "P1 Y", "P1 Z", "P1 L", "P1 R", - "P2 Up", "P2 Down", "P2 Left", "P2 Right", "P2 Start", "P2 A", "P2 B", "P2 C", "P2 X", "P2 Y", "P2 Z", "P2 L", "P2 R", - } - }; - - static Yabause AttachedCore = null; - GCHandle VideoHandle; - Disc CD; - DiscSectorReader DiscSectorReader; - GCHandle SoundHandle; - - bool Disposed = false; - byte[] DisposedSaveRam; - - LibYabause.CDInterface.Init InitH; - LibYabause.CDInterface.DeInit DeInitH; - LibYabause.CDInterface.GetStatus GetStatusH; - LibYabause.CDInterface.ReadTOC ReadTOCH; - LibYabause.CDInterface.ReadSectorFAD ReadSectorFADH; - LibYabause.CDInterface.ReadAheadFAD ReadAheadFADH; - - LibYabause.InputCallback InputCallbackH; - - public IEmulatorServiceProvider ServiceProvider { get; private set; } - - object glContext; - - void ActivateGL() - { - //if (!SyncSettings.UseGL) return; //not safe - if (glContext == null) return; - CoreComm.ActivateGLContext(glContext); - } - - void DeactivateGL() - { - //if (!SyncSettings.UseGL) return; //not safe - if (glContext == null) return; - CoreComm.DeactivateGLContext(); - } - - void Init(byte[] bios) - { - bool GL = SyncSettings.UseGL; - - if (AttachedCore != null) - { - AttachedCore.Dispose(); - AttachedCore = null; - } - VideoHandle = GCHandle.Alloc(VideoBuffer, GCHandleType.Pinned); - SoundHandle = GCHandle.Alloc(SoundBuffer, GCHandleType.Pinned); - - LibYabause.CDInterface CDInt = new LibYabause.CDInterface(); - CDInt.InitFunc = InitH = new LibYabause.CDInterface.Init(CD_Init); - CDInt.DeInitFunc = DeInitH = new LibYabause.CDInterface.DeInit(CD_DeInit); - CDInt.GetStatusFunc = GetStatusH = new LibYabause.CDInterface.GetStatus(CD_GetStatus); - CDInt.ReadTOCFunc = ReadTOCH = new LibYabause.CDInterface.ReadTOC(CD_ReadTOC); - CDInt.ReadSectorFADFunc = ReadSectorFADH = new LibYabause.CDInterface.ReadSectorFAD(CD_ReadSectorFAD); - CDInt.ReadAheadFADFunc = ReadAheadFADH = new LibYabause.CDInterface.ReadAheadFAD(CD_ReadAheadFAD); - - var fp = new FilePiping(); - string BiosPipe = fp.GetPipeNameNative(); - fp.Offer(bios); - - int basetime; - if (SyncSettings.RealTimeRTC) - basetime = 0; - else - basetime = (int)((SyncSettings.RTCInitialTime - new DateTime(1970, 1, 1).ToLocalTime()).TotalSeconds); - - if (!LibYabause.libyabause_init - ( - ref CDInt, - BiosPipe, - GL, - SyncSettings.CartType, - SyncSettings.SkipBios, - !SyncSettings.RealTimeRTC, - basetime - )) - throw new Exception("libyabause_init() failed!"); - - fp.Finish(); - - LibYabause.libyabause_setvidbuff(VideoHandle.AddrOfPinnedObject()); - LibYabause.libyabause_setsndbuff(SoundHandle.AddrOfPinnedObject()); - AttachedCore = this; - - // with or without GL, this is the guaranteed frame -1 size; (unless you do a gl resize) - BufferWidth = 320; - BufferHeight = 224; - - InitMemoryDomains(); - - GLMode = GL; - // if in GL mode, this will trigger the initial GL resize - PutSyncSettings(this.SyncSettings); - } - - public ControllerDefinition ControllerDefinition - { - get { return SaturnController; } - } - - public bool GLMode { get; private set; } - - public void SetGLRes(int factor, int width, int height) - { - if (!GLMode) - return; - - if (factor < 0) factor = 0; - if (factor > 4) factor = 4; - - int maxwidth, maxheight; - - if (factor == 0) - { - maxwidth = width; - maxheight = height; - } - else - { - maxwidth = 704 * factor; - maxheight = 512 * factor; - } - if (maxwidth * maxheight > VideoBuffer.Length) - { - VideoHandle.Free(); - VideoBuffer = new int[maxwidth * maxheight]; - VideoHandle = GCHandle.Alloc(VideoBuffer, GCHandleType.Pinned); - LibYabause.libyabause_setvidbuff(VideoHandle.AddrOfPinnedObject()); - } - LibYabause.libyabause_glsetnativefactor(factor); - if (factor == 0) - LibYabause.libyabause_glresize(width, height); - } - - public void FrameAdvance(IController controller, bool render, bool rendersound = true) - { - int w, h, nsamp; - - ActivateGL(); - - LibYabause.Buttons1 p11 = (LibYabause.Buttons1)0xff; - LibYabause.Buttons2 p12 = (LibYabause.Buttons2)0xff; - LibYabause.Buttons1 p21 = (LibYabause.Buttons1)0xff; - LibYabause.Buttons2 p22 = (LibYabause.Buttons2)0xff; - - if (controller.IsPressed("P1 A")) - p11 &= ~LibYabause.Buttons1.A; - if (controller.IsPressed("P1 B")) - p11 &= ~LibYabause.Buttons1.B; - if (controller.IsPressed("P1 C")) - p11 &= ~LibYabause.Buttons1.C; - if (controller.IsPressed("P1 Start")) - p11 &= ~LibYabause.Buttons1.S; - if (controller.IsPressed("P1 Left")) - p11 &= ~LibYabause.Buttons1.L; - if (controller.IsPressed("P1 Right")) - p11 &= ~LibYabause.Buttons1.R; - if (controller.IsPressed("P1 Up")) - p11 &= ~LibYabause.Buttons1.U; - if (controller.IsPressed("P1 Down")) - p11 &= ~LibYabause.Buttons1.D; - if (controller.IsPressed("P1 L")) - p12 &= ~LibYabause.Buttons2.L; - if (controller.IsPressed("P1 R")) - p12 &= ~LibYabause.Buttons2.R; - if (controller.IsPressed("P1 X")) - p12 &= ~LibYabause.Buttons2.X; - if (controller.IsPressed("P1 Y")) - p12 &= ~LibYabause.Buttons2.Y; - if (controller.IsPressed("P1 Z")) - p12 &= ~LibYabause.Buttons2.Z; - - if (controller.IsPressed("P2 A")) - p21 &= ~LibYabause.Buttons1.A; - if (controller.IsPressed("P2 B")) - p21 &= ~LibYabause.Buttons1.B; - if (controller.IsPressed("P2 C")) - p21 &= ~LibYabause.Buttons1.C; - if (controller.IsPressed("P2 Start")) - p21 &= ~LibYabause.Buttons1.S; - if (controller.IsPressed("P2 Left")) - p21 &= ~LibYabause.Buttons1.L; - if (controller.IsPressed("P2 Right")) - p21 &= ~LibYabause.Buttons1.R; - if (controller.IsPressed("P2 Up")) - p21 &= ~LibYabause.Buttons1.U; - if (controller.IsPressed("P2 Down")) - p21 &= ~LibYabause.Buttons1.D; - if (controller.IsPressed("P2 L")) - p22 &= ~LibYabause.Buttons2.L; - if (controller.IsPressed("P2 R")) - p22 &= ~LibYabause.Buttons2.R; - if (controller.IsPressed("P2 X")) - p22 &= ~LibYabause.Buttons2.X; - if (controller.IsPressed("P2 Y")) - p22 &= ~LibYabause.Buttons2.Y; - if (controller.IsPressed("P2 Z")) - p22 &= ~LibYabause.Buttons2.Z; - - - if (controller.IsPressed("Reset")) - LibYabause.libyabause_softreset(); - if (controller.IsPressed("Power")) - LibYabause.libyabause_hardreset(); - - LibYabause.libyabause_setpads(p11, p12, p21, p22); - - DriveLightOn = false; - - if (Tracer.Enabled) - LibYabause.libyabause_settracecallback(trace_cb); - else - LibYabause.libyabause_settracecallback(null); - - IsLagFrame = LibYabause.libyabause_frameadvance(out w, out h, out nsamp); - BufferWidth = w; - BufferHeight = h; - SoundNSamp = nsamp; - Frame++; - if (IsLagFrame) - LagCount++; - //Console.WriteLine(nsamp); - - //CheckStates(); - - DeactivateGL(); - } - - public int Frame { get; private set; } - - public string SystemId { get { return "SAT"; } } - public bool DeterministicEmulation { get { return true; } } - - public void ResetCounters() - { - Frame = 0; - LagCount = 0; - IsLagFrame = false; - } - - public CoreComm CoreComm { get; private set; } - - public void Dispose() - { - if (!Disposed) - { - ActivateGL(); - if (SaveRamModified) - DisposedSaveRam = CloneSaveRam(); - LibYabause.libyabause_setvidbuff(IntPtr.Zero); - LibYabause.libyabause_setsndbuff(IntPtr.Zero); - LibYabause.libyabause_deinit(); - VideoHandle.Free(); - SoundHandle.Free(); - CD.Dispose(); - Disposed = true; - DeactivateGL(); - if (glContext != null) - CoreComm.ReleaseGLContext(glContext); - } - } - - #region IVideoProvider - - int[] VideoBuffer = new int[704 * 512]; - int[] TextureIdBuffer = new int[1]; //todo - public int[] GetVideoBuffer() { - //doesn't work yet - //if (SyncSettings.UseGL) - // return new[] { VideoBuffer[0] }; - //else - return VideoBuffer; - } - public int VirtualWidth { get { return BufferWidth; } } - public int VirtualHeight { get { return BufferHeight; } } - public int BufferWidth { get; private set; } - public int BufferHeight { get; private set; } - public int BackgroundColor { get { return unchecked((int)0xff000000); } } - - public int VsyncNumerator - { - [FeatureNotImplemented] - get - { - return NullVideo.DefaultVsyncNum; - } - } - - public int VsyncDenominator - { - [FeatureNotImplemented] - get - { - return NullVideo.DefaultVsyncDen; - } - } - - #endregion - - #region ISyncSoundProvider - - private short[] SoundBuffer = new short[44100 * 2]; - private int SoundNSamp = 0; - - public void GetSamplesSync(out short[] samples, out int nsamp) - { - nsamp = SoundNSamp; - samples = SoundBuffer; - } - - public void DiscardSamples() { } - - public bool CanProvideAsync - { - get { return false; } - } - - public void SetSyncMode(SyncSoundMode mode) - { - if (mode == SyncSoundMode.Async) - { - throw new NotSupportedException("Async mode is not supported."); - } - } - - public SyncSoundMode SyncMode - { - get { return SyncSoundMode.Sync; } - } - - public void GetSamplesAsync(short[] samples) - { - throw new InvalidOperationException("Async mode is not supported."); - } - - #endregion - - #region CD - - /// - /// init cd functions - /// - /// - /// 0 on success, -1 on failure - int CD_Init(string unused) - { - return 0; - } - /// - /// deinit cd functions - /// - void CD_DeInit() - { - } - /// - /// 0 = cd present, spinning - /// 1 = cd present, not spinning - /// 2 = no cd - /// 3 = tray open - /// - /// - int CD_GetStatus() - { - return 0; - } - /// - /// read all TOC entries - /// - /// place to copy to - /// number of bytes written. should be 408 (99 tracks, 3 specials) - int CD_ReadTOC(IntPtr dest) - { - // this stuff from yabause's cdbase.c. don't ask me to explain it - //TODO - we could just get this out of the actual TOC, it's the same thing - - int[] rTOC = new int[102]; - var ses = CD.Session1; - int ntrk = ses.InformationTrackCount; - - for (int i = 0; i < 99; i++) - { - int tnum = i + 1; - if (tnum <= ntrk) - { - var trk = ses.Tracks[tnum]; - - uint t = (uint)trk.LBA + 150; - - if(trk.IsAudio) - t |= 0x01000000; - else - t |= 0x41000000; - - rTOC[i] = (int)t; - } - else - { - rTOC[i] = unchecked((int)0xffffffff); - } - } - - rTOC[99] = (int)(rTOC[0] & 0xff000000 | 0x010000); - rTOC[100] = (int)(rTOC[ntrk - 1] & 0xff000000 | (uint)(ntrk << 16)); - rTOC[101] = (int)(rTOC[ntrk - 1] & 0xff000000 | (uint)(CD.TOC.LeadoutLBA)); //zero 03-jul-2014 - maybe off by 150 - - - Marshal.Copy(rTOC, 0, dest, 102); - return 408; - } - - /// - /// read a sector, should be 2352 bytes - /// - /// - /// - /// - int CD_ReadSectorFAD(int FAD, IntPtr dest) - { - byte[] data = new byte[2352]; - try - { - //CD.ReadABA_2352(FAD, data, 0); - DiscSectorReader.ReadLBA_2352(FAD - 150, data, 0); //zero 21-jun-2015 - did I adapt this right? - } - catch (Exception e) - { - Console.WriteLine("CD_ReadSectorFAD: Managed Exception:\n" + e.ToString()); - return 0; // failure - } - Marshal.Copy(data, 0, dest, 2352); - DriveLightOn = true; - return 1; // success - } - /// - /// hint the next sector, for async loading - /// - /// - void CD_ReadAheadFAD(int FAD) - { - // ignored for now - } - - #endregion - } -} diff --git a/output/dll/libyabause.dll b/output/dll/libyabause.dll deleted file mode 100644 index 0d87791963ece62e69d7dc950852f2e19f610863..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 629760 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%0DJIet&(GclgYJ~rK?q53Z| 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%0Dl6sCtr?#qotF%rR9dUpR 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

|&lg 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�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 diff --git a/yabause/AUTHORS b/yabause/AUTHORS deleted file mode 100644 index c9230113fc..0000000000 --- a/yabause/AUTHORS +++ /dev/null @@ -1,36 +0,0 @@ -Current team ------------- -Theo Berkau -Guillaume Duhamel -Filipe Azevedo (pasnox) -Lawrence Sebald (BlueCrab) - -Contributors ------------- -Anders Montonen (antime) -Andrew Church -Ari64 -Michele Balistreri -Richard Dolinsky (menace690) -Lucas Newman (Adam Green) -Joost Peters -Jerome Vernet -Takashi Kiyohara -Weston Yager -Ex-Cyber -Romulo Fernandes (nightz) -pa__ -Fabien Coulon -trap15 -devmiyax - -Translators ------------ -Benjamin Siskoo -Felipe2 - -(people we grabbed code from) ------------- -Stephane Dallongeville - c68k and scsp -Patrick Kooman - profiler -Bart Trzynadlowski - sh2 disassembler diff --git a/yabause/CMakeLists.txt b/yabause/CMakeLists.txt deleted file mode 100644 index c5e3c2d0e6..0000000000 --- a/yabause/CMakeLists.txt +++ /dev/null @@ -1,35 +0,0 @@ -project(yabause) - -cmake_minimum_required(VERSION 2.8) - -set(YAB_PACKAGE yabause) -set(YAB_VERSION_MAJOR 0) -set(YAB_VERSION_MINOR 9) -set(YAB_VERSION_PATCH 12) -set(YAB_VERSION "${YAB_VERSION_MAJOR}.${YAB_VERSION_MINOR}.${YAB_VERSION_PATCH}") - -set(CPACK_SOURCE_GENERATOR TGZ) -set(CPACK_PACKAGE_VERSION_MAJOR ${YAB_VERSION_MAJOR}) -set(CPACK_PACKAGE_VERSION_MINOR ${YAB_VERSION_MINOR}) -set(CPACK_PACKAGE_VERSION_PATCH ${YAB_VERSION_PATCH}) -set(CPACK_PACKAGE_VENDOR "Yabause team") -set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING") -set(CPACK_SOURCE_PACKAGE_FILE_NAME "yabause-${YAB_VERSION}") - -if (APPLE) - set(CPACK_GENERATOR DragNDrop) - set(CPACK_PACKAGE_FILE_NAME yabause-${YAB_VERSION}-mac) -endif () - -if (WIN32) - SET(CPACK_NSIS_INSTALLED_ICON_NAME yabause.exe) - set(CPACK_NSIS_MENU_LINKS yabause.exe;Yabause) - set(CPACK_NSIS_URL_INFO_ABOUT "http://yabause.org") - set(CPACK_NSIS_COMPRESSOR "/SOLID lzma") -endif () - -include(CPack) - -add_subdirectory(doc) -add_subdirectory(l10n) -add_subdirectory(src) diff --git a/yabause/COPYING b/yabause/COPYING deleted file mode 100644 index 41aa952bd8..0000000000 --- a/yabause/COPYING +++ /dev/null @@ -1,340 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General -Public License instead of this License. diff --git a/yabause/ChangeLog b/yabause/ChangeLog deleted file mode 100644 index 14cab09654..0000000000 --- a/yabause/ChangeLog +++ /dev/null @@ -1,924 +0,0 @@ -0.9.11 -> 0.9.12 - general: - - Fixes to the dynamic recompiler (Ari64) - - Added ARMv5 support to the dynarec (Ari64) - - New OSD system (Guillaume) - - Added "built-in" DDK to make it easier to compile on Windows (Guillaume) - sound: - - Improvements / Fixes in both SCSP and SCSP2 (Cwiiis) - video: - - Major improvements to the OpenGL renderer (Devmiyax) - - Major improvements to the software renderer (Guillaume) - - Some fixes to register emulation (Guillaume) - - Improvements to line drawing functions in the software renderer (Cwiiis) - - Fixed endianess bugs (Guillaume) - cocoa port: - - Added "load image" feature (BlueCrab) - - Fixed the resize bug (BlueCrab) - qt port: - - Added shortcuts to toggle vdp2 layers (Benjamin Siskoo) - - Fixed the "mute sound" feature (Guillaume) - - It's now possible to compile the Qt port in "full software" mode (Guillaume) - - Added an autostart option, disabled by default (Guillaume) - - Now using a XDG compliant location for config file (Guillaume) - - Added a debugger to the Qt port (CyberWarriorX) - - DirectX cores can now be used in Qt port (CyberWarriorX) - - Cheat search function (CyberWarriorX) - - Option to show/hide menu and toolbar (Guillaume) - - Close button in pad settings (guillaume) -0.9.10 -> 0.9.11 - general: - - Now using CMake as the default build system. - For now, autotools based build and "custom" build systems are still supported. - - New Cocoa port - - Added a dynamic recompiling SH2 core for x86 and ARM - - New SCSP implementation - - Major update of the software renderer from the yabause-rr team - - Added an option to allow to execute from the cache - - Improvements to the OpenGL renderer - carbon port: - - Improvements - gtk port: - - Added command line option to enable/disable frame skipping / limiting. - - Added frame skipping/limiting configuration in settings. - - Added --autoload command line option - - Vdp2 layers can be toggled from the Vdp2 debug window - psp port: - - Added support for Media Engine CPU - - Improvements to the PSP port - qt port: - - Added command line support - wii port: - - Merged some stuff from the wiibrew fork, mostly related to SH2 emulation - windows port: - - Fixed the XBox controller driver - - Fixed the "open iso then cancel bug" -0.9.9 -> 0.9.10 - scsp/68k: - - Added code to make SCSP emulation frame-accurate (optional, - enabled with --enable-scsp-frame-accurate configure switch). - - Added a new 68000 emulation core. - software video core: - - Added line scroll emulation. - - Improved user clipping. - - Added some basic vertical scroll emulation, enough to get - Sonic Jam working. - gtk port - - Gtk port is now compiling on Mac OS X. - - Fixed full software screenshots. - - Fixed store function in transfer dialog. - windows port: - - Added 12 player support. - - Fixed a bug that was causing the memory transfer dialog - to register the wrong filename after pressing "Browse". - - Fixed bugs in Goto Address dialog. - - Fixed a bug that was causing the vdp2 viewer dialog - to register the wrong filename after pressing "Browse". - - Added MD saving in SCU DSP debug dialog. - - Added new Ram Watch dialog. - - Added video recording feature. - - Added move recording feature. - general: - - Added Lithuanian translation. - - New sound core using OpenAL. - - Added joystick core for Mac OS X. - - Added a joystick core for Linux. - - Added a PSP port. - - Added support for loading ELF binaries. - - Now using gettimeofday when available for better resolution. - - Fixed save states. -0.9.8 -> 0.9.9 - opengl video core: - - Fixed a bug that was causing some games to - crash (albert odyssey, dragon ball, etc.) - gtk port: - - Automatic detection of current locale. - qt port: - - Added support of DESTDIR and --program-prefix - - Automatic detection of current locale. - - Added support for multiple players. - windows port: - - Fixed crash when going into settings. - - Fixed mouse wheel usage in disassembler. - - Rewrote as an unicode application. - - Fixed the key configuration problem. - - Fixed joypad support. - - Partial fix for mouse wheel and slider problem. - - Fixed fullscreen bug. - general: - - Hooks for renaming .desktop on installation. - - .yts file are now installed. - - Fixed parallel builds. - - SDL peripheral core now handles all connected - joysticks. -0.9.7 -> 0.9.8 - vdp2: - - Fixed a bug in software renderer with rotating - backgrounds. - opengl video core: - - Added gouraud shading and mesh processing. - This is not enabled by default. - software video core: - - Fixed user clipping. - gtk port: - - Added mouse support. - - Configuration dialog now displays key names instead - of values. Also made it so each different configuration - is saved. This broke compatibility with old .ini files. - windows port: - - Support for spaces in filenames when using CLI. - - Added mouse support. - - Added cheat search. - general: - - Added mouse emulation. - - Added de, es, it, pt-br and sv translations - - Support for "out of src" build. - - Fixed compilation for non supported platforms. - For instance this should fix compilation on dragonfly bsd. - Fixed compilation on GNU/Hurd too. -0.9.6 -> 0.9.7 - vdp1: - - Added clipping for line-based drawing to software renderer. - vdp2: - - Toggling a screen is now core independent. - - Added per-character priority to software renderer. - gtk port: - - Fixed fullscreen setting and added a keep ratio one. - - Fixed a bug in the vdp2 debugger that was causing the emu to crash. - - Full software mode can be compiled again. - - Fixed segfault when taking screenshots in full software mode. - - Fixed default value for region. - - Window position is now saved and restored when re-opening the emu. - - Fixed a problem when changing input cores. - qt port: - - Improved compilation process: make (un)install now works. - - Fix crash when configuring input while using translated version. - windows port: - - Changed resolution list generation so it adds the resolution to the list, - regardless of whether it supports 60 hz or not. - - Fixed error when trying to add blank cheat code. - - Fixed all code that allowed the user to choose filename for saving so it - automatically places a default extension. - - Save and Clear buttons are now enabled when loading a cheat file. - - Fixed a bug with AR code adding where it was tracking the wrong edit - window. - - Fixed a bug when adding raw cheat codes. - - Fixed bugs in vdp1 debugger. - - Fixed a bug where saving/loading a save state and an error occured would - cause sound looping. - - Scroll bar in memory editor now works properly when you move the thumb - control. - - Added support for x64 builds in Visual Studio. - general: - - Fixed a bug that was causing older save states to fail. -0.9.5 -> 0.9.6 - sdl joystick core: - - Fixed it... - software video core: - - Improvements and bug fixes. - carbon port: - - Added detection of sdk in the build process. - - Changed the cd core so that the first device found is used. - Users shouldn't have anything to set up when using cd device now. - gtk port: - - Tagged more strings to be translatable. - - Fixed bugs when setting a resolution in settings. - - Fixed controller settings so keys can now be configured even if - emulation is not started. - qt port: - - Removed libsjw core. - wii port: - - Updated to use the last devkitppc. - - Added support for classic controller and for wiimote, disabled - keyboard support. - windows port: - - Added command line support. - general: - - Updated copyright for some files where it was missing or - inaccurate. - - Fixes and improvements to the build process: fixed cross compilation - of Qt port, added Wii port support, found a better way to "trigger" - compilation of gen68k, fixed a bug when calling the sub-configure, - .inc files are now cleaned, added MINI18N variable support, forwarded - distclean rule to qt makefiles, configure now make sure the compiler - is a cross compiler when cross compiling - - Added a workaround for the "limits.h" problem... now distros should - fix their headers... - - Fixed the .desktop files for linux (gtk + qt ports) - - Added translation files for fr and pt in the repository. -0.9.4 -> 0.9.5 - 68k: - - Added 1010 and 1111 line emulator support. - cd block: - - Reworked bin/cue support. Reading should be a lot more accurate - now on tracks 2 and greater. - emulated bios: - - Fixed a bug in BupGetDate year calculation. - - Fixed a bug where interrupt mask wasn't being set correctly when - using emulated bios. - smpc: - - Added support for SMPC NMIREQ command. - - Added reset button emulation. - software video core: - - Improved software renderer: window, line scroll, mosaic are now - available and color offset and scroll screen has been fixed. - gtk port: - - Tagged most of gtk port strings to be translatable. - qt port: - - Added ability to specify address where binaries are loaded when - using command line. - - Other bug fixes. - wii port: - - Added support for bios and game loading from sd card. - - Added sound support. - - Added usb keyboard support. - windows port: - - Added pause emulation function. - - Other bug fixes. - dreamcast port: - - Rewrote all of the Dreamcast CD Interface in hand-optimized - assembly. - - Enabled use of the emulated bios if there is no saturn.bin on - the CD. - general: - - Updated peripheral interface so both ports can now be used and - multiple pads can now be connected to each port. - - Added translation support through mini18n library. -0.9.3 -> 0.9.4 - scsp: - - Fixed a timer bug. - - Fixed a bug with mcire word writes. - - Added wave file output core to available sound cores. - - Fixed a bug in total level attenuation. - - Fixed a bug in EG. - gtk port: - - Redesigned memory dump window. - - Redesigned SH2 debug window. - - Other bug fixes. - qt port: - - Added initial support. It should be pretty much on par with the gtk port. - wii port: - - Added initial support. - windows port: - - Fixed a bug where emulation wasn't paused when save/load state as was - selected from the menu. - - Changed disassembler so it can scroll up and down. - - Tweaked error messages so it doesn't report invalid opcode errors when - running the fast interpreter. - - Added SCSP common control register debug info to SCSP debug dialog - - Other bug fixes. - general: - - Added a few internal tweaks that should yield some performance gains. - - Added support for saving and loading cheats. -0.9.2 -> 0.9.3 - cart: - - Fixed a couple of bugs with Netlink emulation. - cd block: - - Tweaked error handling for cue files so it's more helpful to the user. - scu: - - Fixed a bug in DSP MVI instruction. - - Fixed a bug with DSP Program Ram Address. - - Fixed ALU behaviour on NOP. - - Other bug fixes. - vdp2: - - Fixed a bug where coefficient reading wasn't making sure reads weren't - going out of bounds. - - Tweaked frame-skipping so it only skips if frame time is faster/slower - than a 1/2 a frame. The results are much better now. - - Added general VDP2 debug info functionality. - - Added partial end code support to VDP1 texture debugging. - opengl video core: - - Fixed a bug in 16 BPP sprites where pixels 0x0001-0x7FFF weren't - transparent when transparency was enabled. - gtk port: - - Redesigned the window so each part can now be resized. - - Added a toolbar and removed the buttons. - - The sprite list now displays texture thumbnails. - - Added tooltips to "run" and "pause" buttons. - - Redesigned VDP2 debug window. - windows port: - - Fixed a bug that was causing Yabause to crash when run for the first time. - - Added screen capture. - - Reworked Input dialog so it'll allow for more than one peripheral(in the - future). - - Added a bunch of tools tips for basic and input settings. - - Fixed a bug that was causing wrong VDP1 command information to sometimes - be displayed. - - Other bug fixes. - - Fixed a bug that was causing the wrong breakpoint to be removed from the - breakpoint list. - - Text length is now limited correctly in breakpoint edit text controls. - general: - - Tweaked memory breakpoints so that regardless of whether you're using - cached or cache-through addresses variations of an address, it'll still - detect and break when the memory is accessed. - - Other bug fixes. -0.9.1 -> 0.9.2 - cd block: - - Fixed a bug in periodic timing. Most movies should play correctly now. - - Other bug fixes - scsp: - - Fixed a bug that was causing reversed panning. - - Fixed a bug in SCSP slot debug stats. - sh2: - - Fixed a bug that caused Yabause to crash when fetching instructions from - some areas. - vdp2: - - Fixed undocumented plane size setting when debugging vdp2 - - Special Color Calculation mode added to vdp2 debugging - opengl video core: - - Added the eight missing sprite types in Vdp1ReadPriority. - software video core: - - Fixed a bug where Polygons that used non-RGB values had the wrong - priority. - - Fixed a bug that was causing some scrolling issues. - gtk port: - - CD, sound, and video cores can now be changed without restarting the - emulator. - - Added basic support for save states. - windows port: - - Fixed compilation with MSYS. - - Changed SCSP debug dialog so it allows for individual slot saving. - - Fixed a bug when using goto address in memory editor. - - Fixed a bug where Yabause crashed when joystick was unplugged. - - Added memory search support. - - Fixed cheat dialog. Codes should show up after re-opening it. - general: - - Fixed some bugs where vdp1/vdp2 layers wouldn't be drawn after switching - video cores. - - Fixed a bug when switching between opengl and software video cores. - - Added memory search function. -0.9.0 -> 0.9.1 - scsp: - - Fixed slot pitch LFO. Amplitude LFO is probably more accurate now too. - emulated bios: - - Added Backup RAM manager functions. - opengl video core: - - Fixed a bug with VDP2 2x2 plane size rotation screens. - - Optimized tile mode rotation screens - - Added support for VDP1 polyline. - software video core: - - FPS display now working. - - Added support for VDP2 rotation without coefficient tables. - - Fixed a bug in VDP2 24 BPP bitmap mode. - - Fixed several clipping bugs in Normal and Scaled Sprites. - - Fixed a bug with VDP2 2x2 plane size rotation screens. - - Optimized tile mode rotation screens. - linux port: - - Cursor now disappears after 2 seconds of inactivity in the gtk port. - macos port: - - New high resolution icon. - - Add some missing OS X application property list keys. - windows port: - - Fixed window position bug. - - Other bug fixes. - general: - - Tweaked frame timing code so it's more accurate. - - Re-implemented save states. - - Some internal changes do so that sound, video, and cd cores can be changed - at runtime. -0.8.6 -> 0.9.0 - opengl video core: - - Added support for VDP1 line draw. - - Added support for VDP2 Rotation with coefficient tables. - - Other bug fixes. - software video core: - - Added support for VDP1 frame buffer switching. - - Added support for VDP2 Rotation with coefficient tables. - - Fixed a bug in frame buffer erasing. - - Other bug fixes. - linux port: - - Fixed a bug on 64 bits CPU. - - Hanged the location of the ini file to conform to XDG specification. - - Removed some old useless code. - - Added a "subclass" to GtkDrawingArea so sprite textures and screenshots - can now be saved through a popup menu. - macos port: - - Added fullscreen support. - - Added graphics layer toggling. - windows port: - - Fixed a stack corruption bug in DirectInput code. - - Fixed(hopefully this time) the joystick centering bug. -0.8.5 -> 0.8.6 - 68k: - - Fixed a bug which caused the emulator to crash if 68k execution jumped to - an invalid address. - scsp: - - Fixed a bug where the slot buffer pointers weren't set correctly. - - Added a function for debugging SCSP registers - vdp1: - - MODR returns the correct version number now. - - Fixed a bug that caused Local Coordinates, etc. commands to not get executed - correctly. - software video core: - - Added vdp2 horizontal flip for cell mode. - linux port: - - Improved vdp1 window a bit. - - Updated website url. - - Some cleanups - macos port: - - Added browse buttons for some settings. - - Added universal build support. - - Emulation loop was optimized. - - Fixed bug when "Run" is selected from the menu. - - Audio is now muted when emulator is paused. - - Fixed Backup RAM saving. - - Fixed a bug that was causing filenames to be parsed wrong. - - Other bug fixes and cleanups. - windows port: - - msys compiling is now fixed. - - Windows position is now saved when program exits. - - Fixed sound volume adjustment. Should be more accurate now. - - Fixed centering bug on joysticks. - - Fixed POV hat diagonals. - - Sound is now muted in the about dialog. - - Other bug fixes. - general: - - Added COFF file support. -0.8.0 -> 0.8.5 - scsp: - - Added functions for dumping individual slots to wav files. - scu: - - Fixed SCU execution speed - sh2: - - Added DVDNTL/DVDNTH mirrors - - Added overflow interrupt - vdp1: - - Added function for displaying vdp1 textures for debugging - - Other bug fixes - vdp2: - - Added more RBG0 debug info - 68k: - - Added a core system for m68k and a c68k core interface. - - Added a dummy m68k core based on old yabause code, working enough - to boot the bios. - emulated bios: - - Registers are now reset correctly - - Fixed bug in BiosSetSh2Interrupt - - Added Read/Write Save support - - Added undocumented CD Authentication function - opengl video core: - - RBG0 bug fixes - - Rotation Screen improvements - software video core: - - Added 32 BPP cell draw mode - bsd port: - - Added support for OpenBSD - linux port: - - Fixed the segfault that occured when opening the preferences dialog. - - Added texture display in vdp1 debug dialog - - Other GUI improvements - macos port: - - Added browse button for bios setting - - Other bug fixes - windows port: - - Fixed a bug that was causing sound to not work on some people's computers. - - Added texture display in vdp1 debug dialog - - Added window/full screen resizing - - Added full screen on startup - - Settings changed to use tabs instead of what was previously used - - Other bug fixes - - Logging now is done to a logging window when DEBUG is defined while - compiling. - - Added cheat dialog - - Added memory editor - - Added Visual C++ project file - general: - - Added Cheat support. Largely untested. -0.7.2 -> 0.8.0 - cart: - - Moved Netlink code to its own file: netlink.c - - Improved Netlink AT command handling. Most games using the X-Band software - should work now. - - Fixed a number of bugs that were causing strange behaviour in Netlink - emulation. - - Added Modem states. Online Mode is now handled correctly. - - Added Networking code that allows two Yabause instances to communicate - with each other. Still somewhat buggy. - cd block: - - Fixed an issue where games that didn't specify an index along with the - track when playing cd audio didn't work correctly. - vdp1: - - Code cleanups. - vdp2: - - Code cleanups. - - Adjusted frameskip code so it skips up to a maximum of 9 frames at a time. - direct sound core: - - Fixed a bug that was screwing up the buffer position. Now it's almost - perfect(at the very least there's no clicks or pops anymore). - sdl sound core: - - Fixed a bug that was screwing up the buffer position. Now it's almost - perfect(at the very least there's no clicks or pops anymore). - software video core: - - Polygon drawing improvements - - Removed the silly y-axis clipping technique - - Added a filter for clipping detection - - Added vdp1 "end codes" in textures, but didn't find a game that use it - yet, please report bugs. - - Code Cleanups - - Fixed a potential bug in polygons - - Fixed a bug in polygon clipping - linux port: - - Code cleanups - - Changed a few things in configure script to fix compilation problems when - OpenGL and/or gtkglext were not present. - - Added a log popup window. - - Added a screenshot window on gtk port. - - Fixed Pause/Screenshot bug. - - Removed the "Keep ratio" setting as it can't be done in gtk and - replaced it by a "Fullscreen" setting. - - Added a yabause entry in gnome and KDE application menus - - Changed configure script so it fails on linux if --with-opengl is used - and gtlglext is not installed. - dreamcast port: - - Compiles and runs again. - - Added Normal Sprite support. - - Added Distorted Sprite support. - - Added Scaled Sprite support. - - Added in YabauseGetTicks support. - - Ported VDP2 portion of software renderer. - - Added new cd core. - - Added very simple GUI. - - Other bug fixes. - netbsd port: - - Added patch to get yabause working on netbsd with cd support thanks to - Takashi Kyohara. - windows port: - - Added pad configuration(first pad only). - - Added support for gamepads/joysticks. - - Removed duplicate cd code. - - Added a separate thread for cd access. SPTICDGetStatus is the only - function making use of it for now. - - Fixed fullscreen bug - - Added dialog and settings saving/loading for Netlink stuff(disabled for now). - - Other bug fixes. - general: - - Commited mac port fix by Antime. - - Coordinate Increment Registers are now set to 1 when using the quick load - function. It seems there's at least one game out there that doesn't want - to set it. - - Improved Backup Ram bios emulation functions. The only functions that - still aren't functioning correctly are Bup Write, Bup Read, Bup Verify, - and Bup Set/Get Date. So still no saving, but at least there's no errors - when running games now. -0.7.1 -> 0.7.2 - cart: - - A few Netlink changes(still doesn't work). - cd block: - - CD Block play disc command fixes and improvements. Play Modes now handled correctly. - - Added correct Repeat counter support. - - CD audio data is now written to its own buffer, which is then played by the SCSP. - scsp: - - CD audio data is now played by the SCSP. EFSDL and EFPAN support still needs to be added. - opengl video core: - - glutInit is now called before any other glut function(except for on the windows port). - software video core: - - Added normal sprite flipping(copied from scaled sprites). - - Corrected a bug with 8 bpp color calculation in scaled and distorted sprites. - - Fixed a bug that caused duplicated textures in 8 bpp regular sprites. - - Distorted sprites made safer (won't read outside the texture) - - Fixed transparency for distorted sprites. - - Fixed scaled sprites bug in zoom points modes two points mode and C point - upper than A. - - Fixed a bug that was causing sprite priority problems. - linux port: - - Fixed a gtk warning. - - Added Joystick support. - - Added a test in configuration dialog so input tab is displayed only when - emulation is initialized. - - Added NTSC/PAL setting - - Input settings are now disabled when PERCore isn't initialized. - - Added a sound setting tab. - macos port: - - Added code to handle settings (everything should be working now, except - the "browse" buttons). - - Controls are now using the new Per* functions. - - Fixed some bugs in combo boxes. - windows port: - - EC Compatibility list link added to help menu. - - Fixed an issue where default values weren't set correctly when yabause.ini - wasn't present. - - Fixed an issue where Yabause would go into an endless loop if bios path - was incorrect. - - DirectX error messages now return more info when there's an error. - - Fixed an issue where people without hardware sound buffers on their - sound card would have problems trying to run with sound. - - Fixed some inaccurate information in the README.WIN file. - - Fixed cut-off text in Memory Transfer dialog. - - All dialog windows can now be closed using the X icon in the top-right - corner. - general: - - Fixed an issue where in certain cases Yabause would crash when sound - settings were altered. - - Some useless files were removed. - - Moved SDL detection in "global" part of configure script as it may be used - by all ports. - - Fixed a weird issue where a few functions were trying to return a value - when they obviously can't(How come GNU C compilers won't detect this?). - - Fixed a number of things that were causing compilation issues in VC++(VC++ - still doesn't completely compile Yabause yet). - - Configure now checks if c99 variadic macros are available. -0.7.0 -> 0.7.1 - opengl video core: - - Added polygons that use a palette. - software video core: - - Added scaled sprites with clipping and flipping. - - Full screen mode now working correctly. - - Added correct support for vdp2 resolutions other than 320x224. - - Fixed compilation issue on big endian systems. - - Added function to software renderer for fetching width/height of the display buffer - - Memory leak when clearing VDP1 frame buffer fixed. - linux port: - - Added autostart and fullscreen command line switches. - - Fixed a bug that was causing the emulator to sometimes start in using PAL - timing. - - Added an option to choose the peripheral interface at configure time. - - Started to move the gtk controls code into a proper peripheral core. - - Added code so software renderer can be used without OpenGL. - - Added --without-opengl switch to configure script to prevent OpenGL - detection. - - Resizing is now enabled when using software renderer and opengl. - macos port: - - Fixed a bug that was causing the emulator to sometimes start in using PAL - timing. - - Some fixes to carbon interface (preferences should works now). - windows port: - - Fixed a bug that was causing the emulator to sometimes start in using PAL - timing. - - Added shortcuts to the Yabause website, forum, donation page, and the - submit bug page to the main menu. - - Added About dialog. - general: - - Fixed a potential issue when enabling/disabling auto frameskipping. -0.6.0 -> 0.7.0 - cart: - - Added Action Replay flash emulation. - cd block: - - Fixed Read Directory/Change Directory commands. This fixes Duke Nukem 3D - and a few others that have Netlink support. - - Audio data is no longer stored when read by the cd block. This fixes - Guardian Heroes. - - other bug fixes. - scsp: - - Added function that allows developers to get easy to read information on - the requested scsp sound slot. - - Fixed a bug where the phase wasn't getting updated if DISDL was set to 0. - This fixes Falcom Classics, Nadesico, and many other games using ADX. - - Fixed a bug that was causing OCT with a setting of 0x8 to play at the - wrong octave. - - Fixed a bug that was causing King of Fighters 95(and possibly others) to - go into an endless loop. - scu: - - Improved SCU interrupt handling. - sh2: - - Fixed a bug in exts.b opcode. - - Corrected some bugs in sh2idle - - SCI emulation improvements - smpc: - - Added proper DOTSEL reporting. - - Region settings are now properly preserved. - - Changed region autodetection so it defaults to the japanese region if - it can't autodetect. - 68k: - - Fixed a few bugs. - vdp2: - - Debug info bug fixes - - Implemented one mode of external HV latching. This fixes King of Fighters - 95. - - External latch and sync flags are now cleared on TVSTAT reading. - - Added speed throttle(basically skips 6 frame draws). - - Added long writes for VCSTA, LSTA0, and LSTA1 registers. - software video core: - - Rewrote it so it's no longer dependent on SDL. - - Added NBG2/NBG3 support. - - Added tile mode rendering. - - Added frame buffer emulation. - - Added normal sprite drawing. - - Changed Normal Sprite drawing so that Scaled Sprite and Distorted Sprite - functions can use it too. - - Added some support for Scaled/Distorted Sprites. - - Added VDP1 Polyline and Line drawing to Software renderer. - - Fixed a bunch of bugs. - opengl video core: - - Fixed a few issues with OpenGL initialization. - - Fixed a window/fullscreen bug. - - Added a smart Line Scroll/Vertical Cell Scroll interpreter. - - Changed Color Offset so it uses the same method as the Software renderer. - - Fixed Rotation Table reading. - - Fixed a bug in VIDOGLVdp1PolylineDraw where coordinate reads were writing - to invalid areas. - linux port: - - Removed some useless debug messages and fixed the "quit" menu entry. - - Added vdp1 debug dialog in new gtk interface. - - Added dialog for sh2, video core switching. - - Added reset menu entry. - - Added about dialog. - - Added MSH2 and SSH2 debug dialogs to the GTK interface. - - Added transfer dialog to the new gtk ui. - - Added empty Memory Dump dialog. - - Added the dialog box for scsp - - Added shortcut F7 for command Step - - Added support for memory breakpoints in sh2 debug dialog - - Sound is now muted when emulation is paused (in gtk interface). - - The window data is now saved while emulation is paused. - - Screenshot function added. - macos port: - - Added carbon interface - - Can now build .dmg image from .app directory - - Other improvements - windows port: - - Added SCSP Debug Dialog. - - Added Reset option to menu. - - Now uses DirectInput and DirectSound instead of SDL. - - Added dialog for video, sound and input core switching. - - Fixed window/fullscreen switching. - - Added support for memory breakpoints in sh2 debug dialog. - - Sound volume can now be adjusted in the settings dialog. - - Sound is now muted when dialog window has focus. - - Auto frameskip can be be enabled via video settings menu. - - Other bug fixes. - general: - - Better handling of NULL string when opening a file - - Fixed a few memory leaks - - ISO support fixes - - PAL support added - - Fixed v-blank timing - - Added auto frameskipping(still not working correctly) - - Improved sound buffering - - Fixed handling of invalid SH2 opcodes - - Dummy sound core bug fixes - - Fixed some warnings - - Added experimental bios emulation - - Added memory breakpoints - - Added a function to the sound cores for setting the volume. -0.5.0 -> 0.6.0 - cart: - - accesses to Netlink addresses when Netlink was not present was causing - errors, this has been fixed. - scu: - - fixed DSP debugging. - - fixed a Timer 0 bug. Fixes Shining the Holy Ark. - sh2: - - added SH2 idle detection. Speed should be significantly faster. - - separated original core(now the "debug interpreter core") from the core - with idle detection. - - sh2 cores are now selectable. - 68k: - - added 68k disassembler. - - fixed some warnings. - vdp1: - - added debugging functions. - - fixed bug that was causing garbage graphics in Albert Odyssey. - - fixed bug that was causing graphics in Legend of Oasis to not get drawn. - - other bug fixes. - vdp2: - - fixed a few priority bugs. - - added initial special priority emulation. - general: - - added fullscreen and fixed resize in Windows. Still needs quite a bit of - work. - - changed event handling a bit. Gained quite a bit of speed from it. - - fixed some Mac OS X port bugs. - - fixed some Dreamcast port bugs. - - added proper Linux gui. - - Fixed YGL initialization. - - fixed some Windows ports bugs - - other bug fixes. -0.0.7 -> 0.5.0 - cd block: - - bug fixes. - - improved timing. - cart: - - added Action Replay emulation. - - added 8/32 Mbit dram emulation. - - added 4/8/32 Mbit backup ram emulation. - - added 16 Mbit rom emulation. - - added very early Netlink emulation. - scsp: - - added Stephane Dallongeville's SCSP's core. Thanks again Stef! - - fixed a couple of bugs that were causing movies to lock up. - 68k: - - added Stephane Dallongeville's 68k's core. Thanks again Stef! - - fixed a few endian related bugs. - - added debugger(still need disassembler though). - scu: - - added dsp emulation. - - added dsp debugger. - - added indirect dma emulation. - - added timer0 emulation. - - bug fixes. - smpc: - - added very basic SH2 direct peripheral mode. - - added clock change commands. - - added slave sh2 off/on commands. - - fixed intback command timing. - - bug fixes. - sh2: - - added FRT, WDT, and partial UBC emulation. - - fixed a couple of opcode bugs. - - re-added debugger. - - added some early dynarec code. - vdp1: - - added sprite priorities. - - added color offset. - - bug fixes. - vdp2: - - added basic rbg0 emulation(no rotation, etc.). - - added backscreen emulation. - - added caching. - - added color offset. - - added video mode changing. - - added screen scrolling. - - fix caching bug. - - other bug fixes. - - added early software video rendering. It's still pretty much unuseable at this point. -general: - - added binary execution. - - rewrote entire code in C for portability and speed. - - fixed a number of configure bugs, added a few more command-line options. - - fixed code so it's 64-bit friendly. - - added iso and bin/cue files support. - - changed several parts of yabause to allow for multiple implementations of video, sound, and peripheral code.. - - added save states(currently broken unfortunately). - -0.0.6 -> 0.0.7 - cd block: - - added cd interface for porters. - - whole bunch of cd commands were added. Most games should now - start to boot. - - added region auto-detection. - mpeg card: - - added basic emulation. - - added mpeg rom loading support. - scsp: - - bug fixes. - scu: - - bug fixes. - smpc: - - bug fixes. - superh: - - fixed dma. - - lots of other bugfixes. - - opcode optimizations. - vdp1: - - added sprite caching. - - added scaled sprites. - - added sprite color modes 0, 1, 2, 3, 4. - - macosx color bug fixed. - - bug fixes. - vdp2: - - macosx color bug fixed. - - bug fixes. - general: - - added fps counter. - - switched to OpenGL, removed SDL_gfx. - - yui interface added. Now each port should be able to provide - a nice custom ui. - - threads removed, program should be more stable now. - - added save ram loading ability. - -0.0.5 -> 0.0.6 - scu - - added direct dma. - superh - - added division unit. - - fixed endianess issue. - vdp2 - - added NBG3. - - fixed color bug. - -0.0.4 -> 0.0.5 - vdp2: - - lot of work, the vdp2 is now capable of - displaying the set-clock screen of the - bios. - monitor/debugger: - - added memory dump possibility. - -0.0.2 -> 0.0.4 - monitor/debugger: - - added debugging possibility, can now pause/resume emulation - and execute instructions step by step; - - opcodes are disassembled interactively. - general: - - early emulations of different cpu/onchip modules: scu, vdp1 - and dmac; - - translate most of the code from french to english; - - added synchronisation between processors; - - yabause is now using SDL, remove all fork/ipc code and use - SDL_Thread instead. - -0.0.1 -> 0.0.2 - sh2: - - "mull" is now decoded; - - changed the way the opcodes are decoded, now using a table with pointers - to function, should be faster. - intc: - - now tests if the interrupt level is correct before accepting one. - vdp2: - - early emulation, just throws an interrupt every half-frame. - general: - - vdp1 and vdp2 are now synchronized with the master sh; - - fixed some memory bug, all the shared memory allocated is de-allocated; - - now using configure/make, should be more portable; - - modified things to be more c++ and less linux/c. diff --git a/yabause/GOALS b/yabause/GOALS deleted file mode 100644 index e2d43585ac..0000000000 --- a/yabause/GOALS +++ /dev/null @@ -1,8 +0,0 @@ -Goals for a 1.0.0 release --------------------------- --Full "stock" saturn emulation. At the very least it should be "feature complete"(most major bugs should be fixed at this point too) --Any external carts or peripheral do not need to be fully emulated at this point --Switchable SH2 Dynarec/Interpreter cores --Full debugging support --Speed should be high at this point(It's too tough ironing out those bugs with Yabause at its current state) --Save States diff --git a/yabause/INSTALL b/yabause/INSTALL deleted file mode 100644 index a4b34144dc..0000000000 --- a/yabause/INSTALL +++ /dev/null @@ -1,229 +0,0 @@ -Copyright 1994, 1995, 1996, 1999, 2000, 2001, 2002 Free Software -Foundation, Inc. - - This file is free documentation; the Free Software Foundation gives -unlimited permission to copy, distribute and modify it. - -Basic Installation -================== - - These are generic installation instructions. - - The `configure' shell script attempts to guess correct values for -various system-dependent variables used during compilation. It uses -those values to create a `Makefile' in each directory of the package. -It may also create one or more `.h' files containing system-dependent -definitions. Finally, it creates a shell script `config.status' that -you can run in the future to recreate the current configuration, and a -file `config.log' containing compiler output (useful mainly for -debugging `configure'). - - It can also use an optional file (typically called `config.cache' -and enabled with `--cache-file=config.cache' or simply `-C') that saves -the results of its tests to speed up reconfiguring. (Caching is -disabled by default to prevent problems with accidental use of stale -cache files.) - - If you need to do unusual things to compile the package, please try -to figure out how `configure' could check whether to do them, and mail -diffs or instructions to the address given in the `README' so they can -be considered for the next release. If you are using the cache, and at -some point `config.cache' contains results you don't want to keep, you -may remove or edit it. - - The file `configure.ac' (or `configure.in') is used to create -`configure' by a program called `autoconf'. You only need -`configure.ac' if you want to change it or regenerate `configure' using -a newer version of `autoconf'. - -The simplest way to compile this package is: - - 1. `cd' to the directory containing the package's source code and type - `./configure' to configure the package for your system. If you're - using `csh' on an old version of System V, you might need to type - `sh ./configure' instead to prevent `csh' from trying to execute - `configure' itself. - - Running `configure' takes awhile. While running, it prints some - messages telling which features it is checking for. - - 2. Type `make' to compile the package. - - 3. Optionally, type `make check' to run any self-tests that come with - the package. - - 4. Type `make install' to install the programs and any data files and - documentation. - - 5. You can remove the program binaries and object files from the - source code directory by typing `make clean'. To also remove the - files that `configure' created (so you can compile the package for - a different kind of computer), type `make distclean'. There is - also a `make maintainer-clean' target, but that is intended mainly - for the package's developers. If you use it, you may have to get - all sorts of other programs in order to regenerate files that came - with the distribution. - -Compilers and Options -===================== - - Some systems require unusual options for compilation or linking that -the `configure' script does not know about. Run `./configure --help' -for details on some of the pertinent environment variables. - - You can give `configure' initial values for configuration parameters -by setting variables in the command line or in the environment. Here -is an example: - - ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix - - *Note Defining Variables::, for more details. - -Compiling For Multiple Architectures -==================================== - - You can compile the package for more than one kind of computer at the -same time, by placing the object files for each architecture in their -own directory. To do this, you must use a version of `make' that -supports the `VPATH' variable, such as GNU `make'. `cd' to the -directory where you want the object files and executables to go and run -the `configure' script. `configure' automatically checks for the -source code in the directory that `configure' is in and in `..'. - - If you have to use a `make' that does not support the `VPATH' -variable, you have to compile the package for one architecture at a -time in the source code directory. After you have installed the -package for one architecture, use `make distclean' before reconfiguring -for another architecture. - -Installation Names -================== - - By default, `make install' will install the package's files in -`/usr/local/bin', `/usr/local/man', etc. You can specify an -installation prefix other than `/usr/local' by giving `configure' the -option `--prefix=PATH'. - - You can specify separate installation prefixes for -architecture-specific files and architecture-independent files. If you -give `configure' the option `--exec-prefix=PATH', the package will use -PATH as the prefix for installing programs and libraries. -Documentation and other data files will still use the regular prefix. - - In addition, if you use an unusual directory layout you can give -options like `--bindir=PATH' to specify different values for particular -kinds of files. Run `configure --help' for a list of the directories -you can set and what kinds of files go in them. - - If the package supports it, you can cause programs to be installed -with an extra prefix or suffix on their names by giving `configure' the -option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. - -Optional Features -================= - - Some packages pay attention to `--enable-FEATURE' options to -`configure', where FEATURE indicates an optional part of the package. -They may also pay attention to `--with-PACKAGE' options, where PACKAGE -is something like `gnu-as' or `x' (for the X Window System). The -`README' should mention any `--enable-' and `--with-' options that the -package recognizes. - - For packages that use the X Window System, `configure' can usually -find the X include and library files automatically, but if it doesn't, -you can use the `configure' options `--x-includes=DIR' and -`--x-libraries=DIR' to specify their locations. - -Specifying the System Type -========================== - - There may be some features `configure' cannot figure out -automatically, but needs to determine by the type of machine the package -will run on. Usually, assuming the package is built to be run on the -_same_ architectures, `configure' can figure that out, but if it prints -a message saying it cannot guess the machine type, give it the -`--build=TYPE' option. TYPE can either be a short name for the system -type, such as `sun4', or a canonical name which has the form: - - CPU-COMPANY-SYSTEM - -where SYSTEM can have one of these forms: - - OS KERNEL-OS - - See the file `config.sub' for the possible values of each field. If -`config.sub' isn't included in this package, then this package doesn't -need to know the machine type. - - If you are _building_ compiler tools for cross-compiling, you should -use the `--target=TYPE' option to select the type of system they will -produce code for. - - If you want to _use_ a cross compiler, that generates code for a -platform different from the build platform, you should specify the -"host" platform (i.e., that on which the generated programs will -eventually be run) with `--host=TYPE'. - -Sharing Defaults -================ - - If you want to set default values for `configure' scripts to share, -you can create a site shell script called `config.site' that gives -default values for variables like `CC', `cache_file', and `prefix'. -`configure' looks for `PREFIX/share/config.site' if it exists, then -`PREFIX/etc/config.site' if it exists. Or, you can set the -`CONFIG_SITE' environment variable to the location of the site script. -A warning: not all `configure' scripts look for a site script. - -Defining Variables -================== - - Variables not defined in a site shell script can be set in the -environment passed to `configure'. However, some packages may run -configure again during the build, and the customized values of these -variables may be lost. In order to avoid this problem, you should set -them in the `configure' command line, using `VAR=value'. For example: - - ./configure CC=/usr/local2/bin/gcc - -will cause the specified gcc to be used as the C compiler (unless it is -overridden in the site shell script). - -`configure' Invocation -====================== - - `configure' recognizes the following options to control how it -operates. - -`--help' -`-h' - Print a summary of the options to `configure', and exit. - -`--version' -`-V' - Print the version of Autoconf used to generate the `configure' - script, and exit. - -`--cache-file=FILE' - Enable the cache: use and save the results of the tests in FILE, - traditionally `config.cache'. FILE defaults to `/dev/null' to - disable caching. - -`--config-cache' -`-C' - Alias for `--cache-file=config.cache'. - -`--quiet' -`--silent' -`-q' - Do not print messages saying which checks are being made. To - suppress all normal output, redirect it to `/dev/null' (any error - messages will still be shown). - -`--srcdir=DIR' - Look for the package's source code in directory DIR. Usually - `configure' can determine that directory automatically. - -`configure' also accepts some other, not widely useful, options. Run -`configure --help' for more details. - diff --git a/yabause/Makefile.am b/yabause/Makefile.am deleted file mode 100644 index f6f08ec7c3..0000000000 --- a/yabause/Makefile.am +++ /dev/null @@ -1,2 +0,0 @@ -SUBDIRS = src l10n -EXTRA_DIST = README.DC README.LIN README.MAC README.WIN GOALS README.QT README.WII README.PSP diff --git a/yabause/NEWS b/yabause/NEWS deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/yabause/README b/yabause/README deleted file mode 100644 index 7a7d0c9f98..0000000000 --- a/yabause/README +++ /dev/null @@ -1,103 +0,0 @@ - _ _ - / \_/ \ ___ _ ____ - \ /___ ___ / || | __ / \ ____ - \ // || \ / || | \ \\ \_// \ - / // || // _ || |__\ \\ \ __/ - \_// _ || \\_/ \_||______/ \ \\ \__ - \_/ \_||___/ \____/ \____\ - Yet Another Buggy And Uncomplete Saturn Emulator - - ____________________________________ - Copyright (c) 2002-2011 Yabause team - - -1) Introduction.............................................20 -2) Staff/Thanks.............................................39 -3) Contact information......................................75 -4) Disclaimer...............................................86 - - -1 Introduction________________________________________________ - -Yabause is a Sega Saturn emulator under GNU GPL. - -Yabause can boot Saturn bios and games, some of those games -are playable. - -For installation/how to use information, check the ports -specific README files: - - * README.DC for the dreamcast port - * README.LIN for the linux port - * README.MAC for the mac port - * README.PSP for the PSP port - * README.QT for the crossplatform Qt 4 port - * README.WII for the WII port - * README.WIN for the windows port - - -2 Staff/Thanks________________________________________________ - -See the AUTHORS file for team members list. - -Thanks to: - - * Runik (author of Saturnin), for all his help, especially - on the vdp2. - http://saturnin.consollection.com - - * Fabien Autrel (author of Satourne), - for letting me browse his sources. - http://satourne.consollection.com - - * Chuck Mason (author of semu), - for releasing semu sources and for his handy debugger. - - * Romain Vallet - for winning the "Find a name for my emu" contest, for - his contribution to this README and for this nice web - site he did. - http://romanito.free.fr/ - - * Stefano and all of segadev for their help. - - * Josquin Debaz - for writing the man page. - - * Bart Trzynadlowski - for his disassembler. - - * Charles MacDonald - for his saturn sample programs, docs, and being a major - source for saturn information. - - -3 Contact information_________________________________________ - -E-mail: guillaume@yabause.org -Web: http://yabause.org -IRC: irc://irc.freenode.net/yabause - -Please don't ask for roms, bios files or any other copyrighted -stuff. Please use the forum when you have any questions if -possible. - - -4 Disclaimer__________________________________________________ - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. - -This program is distributed in the hope that it will be -useful,but WITHOUT ANY WARRANTY; without even the implied -warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the GNU General Public License for more details. - -You should have received a copy of the GNU General Public -License along with this program; if not, write to the Free -Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA 02110-1301 USA - -See the GNU General Public License details in COPYING. diff --git a/yabause/README.DC b/yabause/README.DC deleted file mode 100644 index 87e238d9f8..0000000000 --- a/yabause/README.DC +++ /dev/null @@ -1,85 +0,0 @@ - _ _ - / \_/ \ ___ _ ____ - \ /___ ___ / || | __ / \ ____ - \ // || \ / || | \ \\ \_// \ - / // || // _ || |__\ \\ \ __/ - \_// _ || \\_/ \_||______/ \ \\ \__ - \_/ \_||___/ \____/ \____\ - Yet Another Buggy And Uncomplete Saturn Emulator - - ____________________________________ - Copyright (c) 2002-2011 Yabause team - - -1) Introduction.............................................20 -2) Compiling instructions...................................31 -2) How to use Yabause.......................................48 -4) Final Thoughts...........................................71 - - -1 Introduction________________________________________________ - -This file documents the Dreamcast version only, for general -information check the README file. Note, that if you are just -a casual user, and not a developer, you probably won't have -to worry about the Compiling instructions below. Pick up with -the section "How to use Yabause" to learn how to make a CD -image you can burn to use Yabause (or use a program like -Selfboot). - - -2 Compiling instructions______________________________________ - -Yabause is written in C using KallistiOS. So, in order to -compile it, you need a working sh-elf targetted C compiler, -such as gcc and a working KallistiOS environment: - - * http://gamedev.allusion.net - -Once KallistiOS is set up, you should be ready to build -Yabause. - -Uncompress the Yabause source archive, move to the newly -created directory, type "cd src", then "make -f Makefile.dc", -it will generate one binary: "yabause.bin" in the "src" -directory. - - -3 How to use Yabause__________________________________________ - -Before using Yabause, you need to build a CD with a few files -in the correct places. In order to build a CD with the -compiled binary, you must first scramble the binary. This can -be done with the scramble utility which can be obtained from -http://mc.pp.se/dc/files/scramble.c . This will have to be -compiled with your native compiler. Once you run the scramble -program on the yabause.bin file created in section 2 above, -you will have a binary file suitable for booting on a real -Dreamcast. - -Once you have your scrambled binary, you may choose to include -a Sega Saturn BIOS image on your disc as well. As of 0.9.5, -this is not a requirement for the Dreamcast port, but if you -choose to use an actual BIOS image, it must be put on the -root of the CD and named "saturn.bin". - -From this point, follow your favorite guide for how to build -a selfbooting CD out of plain files. I use the one available -at http://mc.pp.se/dc/cdr.html . - - -4 Final Thoughts______________________________________________ - -The Dreamcast port of Yabause is quite slow. I have done very -little in the way of optimizing any of the core of Yabause -toward the Dreamcast (there is quite a bit that could be done -when time allows). Do not expect the Dreamcast port of -Yabause to run your favorite Sega Saturn games at any sort of -playable speed for now (or the near future). As Yabause -matures, and I have more time to work on it, hopefully speed -will improve. For now, think of it as a fancy tech demo. - -Note that in 0.9.5, a small bit of assembly has appeared in -the Dreamcast port. Hopefully as time goes on more of the -Dreamcast specific code will be rewritten in assembly for at -least some small speed increase. diff --git a/yabause/README.LIN b/yabause/README.LIN deleted file mode 100644 index 0b65079552..0000000000 --- a/yabause/README.LIN +++ /dev/null @@ -1,135 +0,0 @@ - _ _ - / \_/ \ ___ _ ____ - \ /___ ___ / || | __ / \ ____ - \ // || \ / || | \ \\ \_// \ - / // || // _ || |__\ \\ \ __/ - \_// _ || \\_/ \_||______/ \ \\ \__ - \_/ \_||___/ \____/ \____\ - Yet Another Buggy And Uncomplete Saturn Emulator - - ____________________________________ - Copyright (c) 2002-2011 Yabause team - - -1) Introduction.............................................19 -2) Compiling instructions...................................25 -3) How to use Yabause......................................102 - - -1 Introduction________________________________________________ - -This file documents the gtk version only, for general -information check the README file. - - -2 Compiling instructions______________________________________ - -The Gtk+ port of Yabause is written in C and depends on the -Gtk+ library (thus the name). The recommended setup of the -Gtk+ port is to link it against OpenGL and gtkglext libraries, -but this is not mandatory; see "Full Software mode" for -further instructions. - -Yabause currently provides two build system, a legacy build -process using the autotools and a newer build process using -CMake. - - -2.1 Recommended setup_________________________________________ - -You need a working C compiler, such as gcc and the above -libraries runtime and development packages: - - * http://www.gtk.org - - * http://gtkglext.sourceforge.net - - * OpenGL should be included with your compiler, if it isn't, - check on your distribution's website for links. - - * http://www.cmake.org, you'll need a CMake version >= 2.8 - -With those libraries, you'll get a working Yabause, but with -some restrictions: - - * No sound - - * No translations - - * Depending on your OS, keyboard input only - -You may want to install some optional dependencies for a -better experience. - - -2.2 Optional libraries________________________________________ - -Yabause can use a number of optional libraries: - - * SDL: provides sound and joystick support - http://www.libsdl.org/ - - * OpenAL: provides sound support - - * mini18n: provides translation support - - -2.3 Compiling_________________________________________________ - -For the build process, we recommend using two directories: one -for the Yabause sources (SOURCES) and one for the build (BUILD) - -Uncompress the Yabause source archive into the $SOURCES dir -and create the $BUILD directory. - -Move to the build directory and type "cmake $SOURCES" then -"make" it will generate one program: "yabause" in the "src/gtk" -directory. - -You can even type "make install" to install that program on -your system (in /usr/local/ by default), but we don't support -desinstalling it. - - -2.4 Full Software mode________________________________________ - -The Gtk+ supports building without OpenGL support. - -cmake -DYAB_WANT_OPENGL=NO $SOURCES -make - - -3 How to use Yabause__________________________________________ - -Before using Yabause, you need to configure a few things in -the Preferences dialog (Yabause>Preferences). - - -3.1 Configuration_____________________________________________ - -First, set the BIOS path. -Yabause can run some games without a BIOS, but most of them -needs it. If you want to use the emulated BIOS, just let the -BIOS entry blank. - -Next, set the cdrom device. -It can be a cd device, an iso or a cue file. Set the cd type -accordingly. - -The last thing you have to configure is the keys. - -Once eveything is set, you can start emulation with the -"Yabause>run" entry. - - -3.2 Command line arguments____________________________________ - --b (or --bios=) - Specify bios file. --c (or --cdrom=) - Specify cd device. You can know which file is used as cd - device by looking in /etc/fstab. It is commonly something - like /dev/hdc or /dev/hdd for IDE devices and /dev/scd0 - for SCSI devices. --i (or --iso=) - Specify iso file. diff --git a/yabause/README.MAC b/yabause/README.MAC deleted file mode 100644 index bd8b2f25b8..0000000000 --- a/yabause/README.MAC +++ /dev/null @@ -1,98 +0,0 @@ - _ _ - / \_/ \ ___ _ ____ - \ /___ ___ / || | __ / \ ____ - \ // || \ / || | \ \\ \_// \ - / // || // _ || |__\ \\ \ __/ - \_// _ || \\_/ \_||______/ \ \\ \__ - \_/ \_||___/ \____/ \____\ - Yet Another Buggy And Uncomplete Saturn Emulator - - ____________________________________ - Copyright (c) 2002-2012 Yabause team - - -1) Introduction.............................................20 -2) Compiling instructions...................................26 -3) How to use Yabause.......................................46 -4) Known Issues.............................................92 - - -1 Introduction________________________________________________ - -This file documents the mac version only, for general -information check the README file. - - -2 Compiling instructions______________________________________ - -Yabause is written in C and Objective C using the Cocoa, -IOKit, OpenGL, and CoreAudio frameworks. All of these -frameworks should be installed by default on your Mac OS X -system. You must have the Mac OS X 10.6 SDK installed by the -Xcode installer in order to build Yabause. In addition, you -will need at least Xcode 3.2. - -Once you have Xcode installed, you should be ready to build -Yabause. - -Uncompress the Yabause source archive, and open the -Yabause.xcodeproj in the src/cocoa directory. From there it -should be as easy as hitting the Build or Build and Run -button in Xcode. This should generate a Yabause.app file -that can be run just like any other application bundle on -Mac OS X. - - -3 How to use Yabause__________________________________________ - -Before using Yabause, you need to configure a few things in -the Preferences dialog (Yabause > Preferences). - - -3.1 Configuration_____________________________________________ - -First, set the BIOS path. -Yabause can run some games without a BIOS, but many of them -need it. If you want to use the emulated BIOS, select the -checkbox for that. - -Next, set up the video and sound cores. For the video core, -you have 4 options: -1. OpenGL Hardware Video Core - Potentially the fastest video - core choice, at least with a discrete video card. However, - it is also the least accurate. -2. Software Video Core - The most accurate video core you can - use, but also the slowest. -3. Grand Central Dispatch Software Core - A multithreaded - version of the Software Video Core. On a multi-core system - this should be significantly faster than the Software core - with a similar accuracy level. -4. Disable Video - Does exactly what it sounds like. - -For the sound core, you only have two options: -1. Core Audio Sound Core - The default sound core. Select - this one if you want sound. -2. Disable Sound - Does exactly what it sounds like. - -Next, set up keys for input. Go to the Input tab, and -configure each button (at least on Controller 1). For the -moment, this is limited to keyboard input only. - -There are other options you can configure as well in here, -including BRAM (for saving), a MPEG ROM (for games that use -the VideoCD/MPEG card), and a cartridge for the cartridge -port on the Saturn. - -Once eveything is set, you can start emulation with the -"File > Run BIOS", "File > Run CDROM" or "File > Run Image" -menu options. Don't use the Run BIOS entry if you're using -BIOS emulation. - - -4 Known Issues________________________________________________ - -When running in GDB, you should not use fullscreen mode. If -Yabause crashes while running under GDB in fullscreen mode, -you will probably get stuck with no way to exit. This should -only affect developers and shouldn't ever be an issue for -normal users. diff --git a/yabause/README.PSP b/yabause/README.PSP deleted file mode 100644 index 0c85aaf21f..0000000000 --- a/yabause/README.PSP +++ /dev/null @@ -1,802 +0,0 @@ -PSP-Specific Yabause Documentation -================================== - -Important notice ----------------- -PSP support for Yabause is experimental; please be aware that some things -may not work well (or at all). - -Unlike Yabause 0.9.10, this version of Yabause now works on all PSPs, -including the original PSP-1000 ("Phat"). However, some games may run -more slowly on PSP Phats because of the limited amount of memory available -for caching dynamically-translated program code. - - -Installing from a binary distribution -------------------------------------- -The yabause-X.Y.Z.zip archive contains a "PSP" directory (folder); copy -this into the root directory of your Memory Stick. (On Windows, for -example, your Memory Stick might show up as the drive F: -- in this case, -drag the "PSP" folder from the ZIP archive onto the "F:" drive icon in -Windows Explorer.) - -The "PSP" directory contains a directory called "GAME", which in turn -contains a directory called "YABAUSE". Inside the "YABAUSE" directory are -two files named "EBOOT.PBP" and "ME.PRX"; these are the program files used -by Yabause, like .EXE and .DLL files on Windows. You'll also need to copy -your CD image and other data files to this directory on your Memory Stick -(see below). - -Once you've copied Yabause to your Memory Stick, skip to "How to use -Yabause" below. - - -Installing from source ----------------------- -To build Yabause for PSP from the source code, you'll need a recent (at -least SVN r2450(*)) copy of the unofficial PSP SDK from http://ps2dev.org, -along with the toolchain from the same site; Gentoo Linux users can also -download a Portage overlay from http://achurch.org/portage-psp.tar.bz2 and -"emerge pspsdk". Ensure that the PSP toolchain (psp-gcc) and tools -(psp-prxgen, etc.) are in your $PATH, then configure Yabause with: - - ./configure --host=psp [options...] - -(*) Note that the PSP SDK headers and libraries are, at least through - r2493, missing some functions required by Yabause. If you get errors - about the functions sceKernelIcacheInvalidateAll or - sceKernelIcacheInvalidateRange, apply the patch found in - src/psp/icache-funcs-2450.patch to the PSP SDK source, recompile and - reinstall it, then rebuild Yabause. This patch is already included if - you build the SDK from the Gentoo Portage overlay. - -You can ignore the warning about the --build option that appears when you -start the configure script. You may also see a warning about "using cross -tools not prefixed with host triplet"; you can usually ignore this as well, -but if you get strange build errors related to libraries like SDL or -OpenGL, try disabling the optional libraries with the options -"--without-sdl" and "--without-opengl". - -The following additional options can be used when configuring for PSP: - - --enable-psp-debug - Enables printing of debug messages to standard error. - - --enable-psp-profile - Enables printing of profiling statistics to standard error. - By default, statistics are output every 100 frames; edit - src/psp/main.c to change this. Note that profiling has a - significant impact on emulation speed. - - --with-psp-me-test - Builds an additional program, "me-test.prx", which tests the - functionality of the Media Engine access library included with - Yabause. Only useful for debugging or extending the library. - -Note that if you build with optimization disabled (-O0) or at too low a -level, you may get compilation errors in src/psp/satopt-sh2.c. -O3 is -recommended; set this flag in the CFLAGS environment variable before -running the "configure" script. For example, if you use the "bash" shell: - - CFLAGS=-O3 ./configure --host=psp [options...] - -After the configure script completes, run "make" to build Yabause. The -build process will create the EBOOT.PBP and me.prx (note that the latter -is lowercase) files in the src/psp/ subdirectory; create a directory for -Yabause under /PSP/GAME on your memory stick (e.g. /PSP/GAME/YABAUSE) and -copy the files there. - - -How to use Yabause (PSP-specific notes) ---------------------------------------- -All files you intend to use with Yabause (BIOS images, CD images, backup -RAM images) must be stored in the same directory as the EBOOT.PBP and -ME.PRX files mentioned above. The default filenames used by Yabause are -as follows: - - BIOS.BIN -- BIOS image - CD.ISO -- CD image (can also be a *.CUE file) - BACKUP.BIN -- Backup RAM image (will be created if it does not exist) - -You can choose other files from the Yabause configuration menu, which is -displayed the first time you start Yabause and can also be brought up at -any time by pressing the Select button; see below for details. If you do -not already have a backup RAM image, just leave the backup RAM filename at -its default setting, and the file will be created the first time backup RAM -is saved. - -The directional pad and analog stick can both be used to emulate the -Saturn controller's directional pad. The default button controls are as -follows: - - Start -- Start - A -- Cross - B -- Circle - C -- (unassigned) - X -- Square - Y -- Triangle - Z -- (unassigned) - L -- L - R -- R - -Button controls can be changed via the configuration menu. - - -The Yabause PSP configuration menu ----------------------------------- -When you first run Yabause, the configuration menu will be displayed, -allowing you to choose the CD image you want to run and configure other -Yabause options. You can also press Select while the emulator is running -to bring up the menu; the emulator will remain paused while you have the -menu open. - -The main menu contains six options: - - * "Configure general options..." - - This opens a submenu with the following options: - - * "Start emulator immediately" - - When enabled, the emulator will start running immediately when - you load Yabause, instead of showing the configuration menu. - - * "Select BIOS/CD/backup files..." - - This opens a submenu which allows you to select the files - containing the BIOS image, CD image, and backup data you want - to use. Selecting one of the three options will open a file - selector, allowing you to choose any file in the Yabause - directory on your Memory Stick. - - Note that changing any of the files will reset the emulator. - - * "Auto-save backup RAM" - - When enabled, automatically saves the contents of backup RAM to - your Memory Stick whenever you save your game in the emulator. - The emulator will display "Backup RAM saved." on the screen for - a short time when an autosave occurs. Note that the emulator - may pause for a fraction of a second while autosaving. This - option is enabled by default. - - Be aware that backup RAM is _not_ saved to the Memory Stick - when you quit Yabause; if you disable this option, you need to - manually save it using the "Save backup RAM now" option when - appropriate. - - * "Save backup RAM now" - - Immediately saves the contents of backup RAM to your Memory - Stick. If you have auto-save disabled, you should use this - option to save backup RAM before quitting Yabause. - - * "Save backup RAM as..." - - Allows you to enter a new filename (using the PSP's built-in - on-screen keyboard) for the backup RAM save file. This can be - useful if you want to keep separate backup RAM files for - different games, or if you want to save more slots than a game - normally allows. Yabause will immediately save backup RAM to - the filename you enter, and will also use that filename when - later auto-saving backup RAM (or when you manually use "Save - backup RAM now"). However, the new filename will only be used - until you quit Yabause, unless you select "Save options" on the - main menu. - - Note that the emulator will _not_ be reset when you use this - option, so you can feel free to select it while playing a game. - (However, don't select it while the game is in the middle of - loading or saving, as this can corrupt backup RAM -- just as if - you tried to remove the PSP's Memory Stick while saving a game - on your PSP.) - - NOTE: For reasons currently unknown, the top part of the - on-screen keyboard display may flicker or appear corrupted. - However, text can be entered as usual. - - * "Configure controller buttons..." - - This opens a submenu which allows you to configure which PSP button - corresponds to which button on the emulated Saturn controller. - Pressing one of the Circle, Cross, Triangle, or Square buttons on - the PSP will assign that button to the currently selected Saturn - controller button. The PSP's Start, L, and R buttons are always - assigned to the same-named buttons on the Saturn controller, and - cannot be changed. - - Since both the Circle and Cross buttons are used for button - assignment, the Start button is used to return to the main menu. - - * "Configure video options..." - - This opens a submenu with the following options: - - * "Use hardware video renderer" / "Use software video renderer" - - These options allow you to choose between the PSP-specific - hardware renderer and the default software renderer built into - Yabause for displaying Saturn graphics. The hardware renderer - is significantly faster; for simple 2-D graphics, it can run at - a full 60fps without frame skipping (if the game program itself - can be emulated quickly enough). However, a number of more - complex graphics features are not supported, so if a game does - not display correctly, try using the software renderer instead. - - The selected renderer can be changed while the emulator is - running without disturbing your game in progress. However, - changing the renderer may cause the screen to blank out or - display corrupted graphics for a short time. - - * "Configure hardware rendering settings..." - - This option opens another submenu which allows you to change - certain aspects of the hardware video renderer's behavior: - - * "Aggressively cache pixel data" - - When enabled, Yabause will try to store a copy of all - graphic data in the PSP's native pixel format, to speed up - drawing. However, Yabause may not always notice when the - data is changed, causing incorrect graphics to appear. - (This can be fixed by disabling the option, exiting the - menu for a moment, then re-enabling the option.) When - disabled, all graphics are redrawn from the Saturn data - every frame. This option is enabled by default. - - * "Smooth textures and sprites" - - When enabled, smoothing (antialiasing) is applied to all - 3-D textures and sprites drawn on the screen. This can - make 3-D environments look smoother than on a real Saturn, - but it will also cause zoomed sprites to look blurry, which - may not be the game's intended behavior. - - * "Smooth high-resolution graphics" - - When enabled, high-resolution graphics (which ordinarly - would not fit on the PSP's screen) are displayed by - averaging adjacent pixels to give a smoother look to the - display; this can particularly help in reading small text - on a high-resolution screen. However, this smoothing is - significantly slower than the default method of just - skipping every second pixel. - - * "Enable rotated/distorted graphics" - - Selects whether to display rotated or distorted graphics - at all. Most such graphics cannot be rendered by the - PSP's hardware, so Yabause has to draw them in software, - which can be a major source of slowdown. Disabling this - option will turn such graphics off entirely. This option - is enabled by default. - - * "Optimize rotated/distorted graphics" - - When enabled, Yabause will try to detect certain types of - rotated or distorted graphics which can be approximated by - PSP hardware operations such as 3D transformations, and use - the PSP's hardware to draw them quickly. However, this - will often result in graphics that look different from the - game as played on an actual Saturn, so this option can be - used to disable the optimizations and draw the graphcs more - accurately (at the expense of speed). This option is - enabled by default. - - Note that none of the above options have any effect when the - software video renderer is in use. - - * "Configure frame-skip settings..." - - This option opens another submenu which allows you to configure - the hardware renderer's frame-skip behavior: - - * "Frame-skip mode" - - This option is intended to allow you to switch between - manual setting and automatic adjustment of frame-skip - parameters. However, automatic mode is not yet - implemented, so always leave this set on "Manual". - - * "Number of frames to skip" - - In Manual mode, sets the number of frames to skip for every - frame drawn. 0 means "draw every frame", 1 means "draw - every second frame" (skip 1 frame for every frame drawn), - and so on. - - * "Limit to 30fps for interlaced display" - - Always skip at least one frame when drawing interlaced - (high-resolution) screens. Has no effect unless the number - of frames to skip is set to zero. This option is enabled - by default. - - * "Halve framerate for rotated backgrounds" - - Reduce the frame rate by half (in other words, skip every - second frame that would otherwise be drawn) when rotated or - distorted background graphics are displayed. Since rotation - and distortion take a long time to process on the PSP, this - option can help keep games playable even when they make use - of these Saturn hardware features. This option is enabled - by default. - - Note that this option does not apply to rotated or - distorted graphics which are displayed using an optimized - algorithm (see the "Optimize rotated/distorted graphics" - option above). - - Frame skipping is not supported by the software renderer, so - none of these options will have any effect when the software - renderer is in use. - - * "Show FPS" - - When enabled, the emulator's current speed in emulated frames per - second (FPS) will be displayed in the upper-right corner of the - screen as "FPS: XX.X (Y/Z)". The number "XX.X" is the average - frame rate, calculated from the last few seconds of emulation; - "Y" shows the number of Saturn frames emulated since the previous - frame was shown, while "Z" is the actual time that passed in - 60ths of a second. (Thus, the instantaneous frame rate can be - calculated as (Y/Z)*60.) - - This option has no effect when the software renderer is in use. - - * "Configure advanced settings..." - - This opens a submenu with the following options: - - * "Use SH-2 recompiler" - - This option allows you to choose between the default SH-2 core, - which recompiles Saturn SH-2 code into native MIPS code for the - PSP, and the SH-2 interpreter built into Yabause. The SH-2 - interpreter is much slower, often by an order of magnitude or - more, so there is generally no reason to disable this option - unless you suspect a bug in the recompiler. - - Note that changing this option will reset the emulator. As with - "Reset emulator" on the main menu, you must hold L and R while - changing this option to avoid an accidental reset. - - * "Select SH-2 optimizations..." - - This option opens up another submenu which allows you to turn on - or off certain optimizations used by the SH-2 recompiler. These - are shortcuts taken by the recompiler to allow games to run more - quickly, but in rare cases they can cause games to misbehave or - even crash. If a game doesn't work correctly, turning one or - more of these options off may fix it. - - These options can be changed while the emulator is running - without disturbing your game in progress. However, changing them - causes the emulator to clear out any recompiled code it has in - memory, so the game may run slowly for a short time after exiting - the menu as the emulator recompiles SH-2 code using the new - options. - - All optimizations are enabled by default. - - * "Configure Media Engine options..." - - This option opens up another submenu with options for - configuring the Media Engine: - - * "Use Media Engine for emulation" - - Enables the use of the PSP's Media Engine CPU to handle part - of the emulation in parallel with the main CPU. This can - provide a moderate boost to emulation speed; however, since - the Media Engine is not designed for this sort of parallel - processing, some games may behave incorrectly or even crash. - As such, this option is still considered experimental; use - it at your own risk. - - IMPORTANT: It is not currently possible to suspend the PSP - while the Media Engine is in use. If you start Yabause with - the Media Engine enabled, the "suspend" function of the - PSP's power switch will be disabled, so you must save your - game inside the emulator and exit Yabause before putting the - PSP into suspend mode. - - This option only takes effect when Yabause is started, so if - you change it, make sure you select "Save options" in the - main menu and then quit and restart Yabause. - - * "Cache writeback frequency" - - Sets the frequency at which the main CPU and Media Engine - caches are synchronized, relative to the frequency of code - execution on the Media Engine. The default frequency of 1/1 - is safest; lower frequencies (1/2, 1/4, and so on) can - increase emulation speed, but are also more likely to cause - sound glitches, crashes, or other incorrect behavior - depending on the particular game. However, adjusting the - size of the write-through region (see below) can mitigate - these problems for some games. - - Naturally, this option has no effect if the Media Engine is - not being used for emulation. - - * "Sound RAM write-through region" - - Sets the size of the region at the beginning of sound RAM - which is written through the PSP's cache. Writing through - the cache is an order of magnitude slower than normal - operation, so setting this to a large value can slow down - games significantly. However, most games only use a small - portion of sound RAM for communication with the sound CPU, - so by tuning this value appropriately, you may be able to - reduce the cache writeback frequency (see above) while still - getting stable operation. From experimentation, a value of - 2k seems to work well for some games. - - Naturally, this option has no effect if the Media Engine is - not being used for emulation. - - * "Use more precise emulation timing" - - When enabled, the emulator will keep the various parts of the - emulated Saturn hardware more precisely in sync with each other. - This carries a noticeable speed penalty, but some games may - require this more precise timing to work correctly. - - * "Sync audio output to emulation" - - When enabled, the emulator will synchronize audio output with - the rest of the emulation. In general, this improves audio/video - synchronization but causes more frequent audio dropouts (or - "popping") when the emulator runs more slowly than real time. - However, the exact effect of this option can vary: - - - When disabled, the audio can get ahead of the video if the - emulator is running slowly; this can be seen, for example, - in the Saturn BIOS startup animation. On the other hand, - game code that uses the audio output speed for timing (such - as the movie player in Panzer Dragoon Saga) can actually run - faster with synchronization disabled. MIDI-style background - music will also play more smoothly, though of course the - music tempo will slow down depending on the emulation speed. - - - When enabled, the audio output will match the output of a - real Saturn much more closely. In particular, this option - is needed to avoid popping in streamed audio such as Red - Book audio tracks when the emulator runs at full speed - (60fps). On the flip side, the audio will momentarily drop - out (as described above) whenever the emulator takes more - than 1/60th of a second to process an emulated frame. - - This option is enabled by default. - - * "Sync Saturn clock to emulation" - - When enabled, the Saturn's internal clock is synchronized with - the emulation, rather than following real time regardless of - emulation speed. If the emulator is running slow, for example, - this option will slow the Saturn's clock down to match the speed - at which the emulator is running. This option is enabled by - default. - - * "Always start from 1998-01-01 12:00" - - When enabled, the Saturn's internal clock will always be - initialized to 12:00 noon on January 1, 1998, rather than the - current time when the emulator starts. When used with the clock - sync option above, this is useful in debugging because it ensures - a consistent environment each time the emulator is started. - Outside of debugging, however, there is usually no reason to - enable this option. - - * "Save options" - - Save the current settings, so Yabause will use them automatically the - next time you start it up. - - * "Reset emulator" - - Reset the emulator, as though you had pressed the Saturn's RESET - button. To avoid accidentally resetting the emulator, you must hold - the PSP's L and R buttons while selecting this option. - -Pressing Select on any menu screen will exit the menu and return to the -Saturn emulation. - - -Troubleshooting ---------------- -Q: "My game runs too slowly!" - -A: C'est la vie. The PSP is unfortunately just not powerful enough to - emulate the Saturn at full speed (see "Technical notes" below for the - gory details). Here are some things you can do to improve the speed of - the emulator: - - * Make sure you are using the hardware video renderer (in the - "Configure video options" menu) and the SH-2 recompiler (in the - "Configure advanced settings" menu). - - * Under "Configure video options" / "Configure hardware rendering" - settings", turn off "Enable rotated/distorted graphics". A single - distorted background can take the equivalent of 2 to 3 frames at - 60fps to render on the PSP. - - * Under "Configure video options" / "Configure frame-skip settings", - set the frame-skip mode to manual and increase the number of frames - to skip. (Many games only run at 30 frames per second, so using a - frame-skip count of 1 won't actually make a visible difference - compared to a count of 0.) - - * Under "Configure advanced emulation options" / "Select SH-2 - optimizations", make sure all optimizations are enabled. - - * Under "Configure advanced emulation options", if "Use more precise - emulation timing" is disabled, try enabling it. (This may cause - the game to freeze or crash, however.) - - * Try turning on the "Use Media Engine for emulation" option in the - "Configure advanced emulation options" menu, but note that this - option is experimental and may cause your game to misbehave or even - crash. - - * If the Media Engine is enabled, try lowering the cache writeback - frequency in the "advanced emulation options" menu. Typically, - 1/4 to 1/8 will provide a noticeable speed increase over 1/1, while - 1/16 and lower are not likely to have much effect. - -Q: "My game suddenly froze!" - -A: Try pressing Select to open the Yabause menu. - - * If the menu doesn't open, then either you've hit a bug in Yabause, - or the SH-2 optimizer has caused the program to misbehave. Restart - Yabause, then go to the "Configure advanced emulation options" / - "Select SH-2 optimizations" and disable all of the options there. - If that fixes the problem, you can then try turning the options on - one by one to find the one that caused the crash (you may need to - repeat whatever actions you performed in the game in order to - determine whether the crash occurs or not), and disable only that - option to keep the emulator running as fast as possible. - - * If the menu does open, then one likely cause is a timing issue; - this can be seen, for example, when starting Dead or Alive with the - "Use more precise emulation timing" option disabled. Try enabling - this option under the "Configure advanced emulation options" menu - and resetting the emulator to see if it fixes the problem. - - In either of the above cases, it's also possible that the game itself - has a bug. Look in FAQs or other online resources and see if any - similar problems have been reported. - - -Technical notes ---------------- -The Saturn, like the PSOne, is only one step down in power from the PSP -itself, so full-speed emulation is a fairly difficult proposition from the -outset. To make matters worse, the Saturn's architecture is about as -different from the PSP as two modern computer architectures can be: -different primary CPUs (SH-2 versus MIPS Allegrex), big-endian byte order -(Saturn) versus little-endian (PSP), tile-based graphics (Saturn) versus -texture-based graphics (PSP), and so on. As such, Yabause must take a -number of shortcuts to make games even somewhat playable. - -<<< SH-2 emulation >>> - -Emulation of the Saturn's two SH-2 CPUs in particular is problematic. -These processors run at either 26 or 28 MHz, and they use a RISC-like -instruction set in which most instructions execute in one clock cycle, so -in a worst-case scenario Yabause would need to process 56 million SH-2 -instructions per second--on top of sound, video, and other hardware -emulation--to maintain full speed. But the PSP's single(*) Allegrex CPU -runs at a maximum of 333MHz, meaning that the SH-2 emulator must be able to -execute each instruction (including accessing the register file, swapping -byte order in memory accesses, updating the SH-2 clock cycle counter, and -so on) within at most 6 native clock cycles for full-speed emulation. In -fact, the demands of emulating the other Saturn hardware reduce this to -something closer to 4 native clock cycles. - -(*) The PSP actually has a second CPU, the Media Engine, but limitations - of the PSP architecture make it unsuitable for use as a full-fledged - second processor. See below for details. - -With these limitations, interpreted execution of SH-2 code is out of the -question--merely looking up the instruction handler would exhaust the -instruction's quota of execution time. For this reason, the PSP port uses -a dynamic translator to convert blocks of SH-2 code into blocks of native -MIPS code. When the emulator encounters a block of SH-2 code for the first -time, it scans through the block, generating equivalent native code for the -block which is then executed directly on the native CPU. This naturally -causes the emulator to pause for a short time when it encounters a lot of -new code at once, such as when loading a new part of a game from CD; this -is the price that must be paid for the speed of native code execution. - -Even with this dynamic translation, however, there are still a number of -hurdles to fast emulation. For example: - -* Every time the end of a code block is reached, the emulator must look up - the next block to execute. This lookup consumes precious cycles which do - not directly correspond to SH-2 instruction emulation (around 35 cycles - per lookup in the current version). - - In order to streamline code translation and increase the optimizability - of individual blocks, the dynamic translator tends to choose minimally- - sized blocks for translation. Tests showed that this was an improvement - over an older algorithm that used larger blocks, but the resulting - overhead of block lookups imposes a limit on execution speed for certain - types of code, particularly algorithms which rely heavily on subroutine - calls. - - At the other end of the spectrum, one might consider modifying a true - compiler like GCC to accept SH-2 instructions as input, then running - each code block through the compiler itself to generate native code. - This could undoubtedly produce efficient output with larger blocks, but - it would also impose significant additional overhead when translating. - -* The SH-2 is unable to load arbitrary constants into registers, instead - using PC-relative accesses to load values outside the range of a MOV #imm - instruction from memory. However, Saturn programs also use PC-relative - accesses for function-local static variables, meaning that there is no - general way to tell whether a given value is actually a constant or - merely a variable that may be modified elsewhere. - - This presents a particular problem in optimizing memory accesses, since - if a pointer loaded from a PC-relative address is not known to be - constant, the translated code must incur the overhead of checking the - pointer's value every time the block is executed. The SH-2 core includes - an optional optimization, SH2_OPTIMIZE_LOCAL_POINTERS, which takes the - stance that all such pointers either are constant or will always point - within the same memory region (high system RAM, VDP2 RAM, etc.). This - optimization shows a marked improvement in execution speed in some cases, - but any code which violates the assumption above will cause the emulator - to crash. - -* Some games make use of self-modifying code, presumably in an attempt to - increase execution speed; one example can be found in the "light ray" - animation used in Panzer Dragoon Saga when obtaining an item. Naturally, - the use of self-modifying code has a severe impact on execution time in a - dynamic translation environment, as each modification requires every - block containing the modified instruction to be retranslated. (A similar - effect can be seen on modern x86-family CPUs, which internally translate - x86 instructions to native micro-ops for execution; self-modifying code - can slow down the processor by an order of magnitude or more.) - - The SH-2 core attempts to detect frequently modified instructions and - pass them directly to the interpreter to avoid the overhead of repeated - translation, but there is unfortunately no true solution to the problem - other than rewriting the relevant part of the game program itself. - -* Memory accesses are difficult to implement efficiently; in fact, the SH-2 - emulator devotes over 1,000 lines of source code to handling load and - store operations, independently of the memory access handlers in the - Yabause core. The current implementation is able to handle accesses to - true RAM fairly quickly, but any access which falls back to the default - MappedMemory*() handlers incurs a significant access penalty (typically - 20-30 cycles plus any handling needed for the specific address). - - This is most obvious while loading data from the emulated CD, since the - game program must access a hardware register in a loop while waiting for - the CD data to be loaded, and additionally some games read CD data - directly out of the CD data register rather than using DMA to load the - data into memory. Currently, the only way to speed up such code blocks - is through handwritten translation (see src/psp/satopt-sh2.c). - -Patches to either speed up specific games or to improve the translation -algorithm generally are of course welcome. - -<<< Use of the Media Engine >>> - -Aside from the two SH-2 cores, a third major consumer of CPU time is the -SCSP, the Saturn's sound processor, and particularly the MC68EC000 -("68k") CPU used therein. While most games don't run particularly complex -code on the 68k, it is nonetheless a proper CPU in its own right, and -requires a fair amount of time to emulate; multi-channel FM background -music takes time to generate as well. Currently, the PSP port of Yabause -has the ability to make use of the PSP's Media Engine CPU to process 68k -instructions and audio generation in parallel with the rest of the -emulation, but this use of the Media Engine is a considerable departure -from Sony's design and thus a risky endeavor. - -The primary difficulty with using the ME as a "second core" in the sense -of the multi-core processors used in PCs is that of cache coherency. -Unlike generic multiprocessor or multi-core systems, the PSP's two CPUs -do not implement cache coherency; this means that neither CPU knows what -the other CPU has in its cache, and one CPU may inadvertently clobber the -other's changes, causing stores to memory to get lost. As an example, -consider these two simple loops, operating in parallel on a two-element -array initialized to {1,1} that resides in a single cache line: - - Core 1 Core 2 - ------ ------ - for (;;) { for (;;) { - array[0] += array[1]; array[1] += array[0]; - } } - -This illustrates two problems caused by the lack of cache coherency: - -* On a cache-coherent (or single-core) system, the two array elements - will increase unpredictably as each loop sees the updated value stored - by the other loop. On the PSP, however, both elements will increase - monotonically; once each CPU loads the cache line, it never sees any - stores performed by the other CPU, because accesses to the array always - hit the cache. - -* On a cache-coherent system, if the cache line is flushed to memory, it - will always contain the current values of both array elements. On the - PSP, however, the array element _not_ updated by the flushing CPU will - be written with the same value it had when the cache line was loaded - by that CPU. In particular, if the other CPU had already flushed the - cache line, that change will be clobbered--for example (here "SC" is - the main CPU and "ME" is the Media Engine): - - Time Operation SC cache ME cache Memory Desired - ---- ---------- -------- -------- ------ ------- - T1 Initialize {1,1} {1,1} {1,1} {1,1} - T2 SC flush {A,1} {1,B} {A,1} {A,B} - T3 ME flush {C,1} {1,D} {1,D} {C,D} - - Note that at no time after initialization are the contents of memory - correct, and in particular, the value "A" written by the SC is lost - when the ME flushes {1,D} from its cache, even though the ME loop - never actually modified that array element. - -In order for Yabause to have even a hope of stable operation, therefore, -the use of both CPUs' caches must be carefully controlled to avoid data -loss. - -When use of the Media Engine is enabled, the following steps are taken -to avoid data corruption due to the lack of cache coherency: - -* SCSP state variables used for inter-thread communication are divided into - separate, 64-byte (cache-line) aligned data sections, based on which - thread (the main Yabause thread, running on the SC, or the SCSP thread, - running on the ME) writes to them. - -* SCSP state variables are accessed using uncached (0x4nnnnnnn) addresses - in two cases: when _reading_ data written by the other CPU (to avoid an - old value getting stuck in the cache), and when _writing_ data which is - also written by the other CPU (to avoid the cache line clobbering problem - described above). - -* Sound RAM is accessed _with_ caching (except in one case described - below), because forcing every sound RAM access through an uncached - pointer causes significant slowdown. Instead, cached CPU data is written - back to RAM at strategic points. - -* The SC's data cache is flushed (written back and invalidated) immediately - before waiting for the SCSP thread to finish processing, e.g. for - ScspReset(). The data cache is written back on every ScspExec() call - (though the writeback frequency may be reduced through the configuration - menu), but it is _not_ flushed for performance reasons; instead, sound - RAM read accesses from the SC are made through uncached addresses, as - with SCSP state variables above. - -* The ME's data cache is flushed after each iteration of the SCSP thread - loop. This flushing is not coded directly into scsp.c, but instead - takes place in the YabThreadYield() and YabThreadSleep() implementations. - (These functions are naturally meaningless on the ME, but since the SCSP - thread calls one or the other at the end of each loop, it's a convenient - place to flush the cache.) - -* The 68k state block, along with dynamically-generated native code when - dynamic translation is enabled, is stored in a separately allocated pool - and managed with custom memory allocation functions (local_malloc() and - friends in psp-m68k.c), since the standard memory management functions - are not designed to work with the ME and would likely cause a crash due - to cache desynchronization. - -In general, using the ME provides a moderate speed improvement (10-15%) to -overall emulation speed. There are, however, some cases in which the lack -of cache coherency could cause games to misbehave or even crash Yabause: - -* If a game writes (from the SH-2) to a portion of sound RAM containing 68k - program code while the 68k is executing, the 68k may execute incorrect - code, or the dynamic translation memory pool may be corrupted. Normally, - games should only load code while the 68k is stopped, but there may be - cases when the SH-2 writes to a variable in sound RAM which is located in - the same region as 68k code, thus triggering this issue. - -* Games which rely on the precise relative timing of the SH-2 and 68k - processors are likely to fail in any multithreaded emulator, but are more - likely to fail when using the ME due to delays in data being written out - from the data caches. diff --git a/yabause/README.QT b/yabause/README.QT deleted file mode 100644 index d3e813c6cd..0000000000 --- a/yabause/README.QT +++ /dev/null @@ -1,138 +0,0 @@ - _ _ - / \_/ \ ___ _ ____ - \ /___ ___ / || | __ / \ ____ - \ // || \ / || | \ \\ \_// \ - / // || // _ || |__\ \\ \ __/ - \_// _ || \\_/ \_||______/ \ \\ \__ - \_/ \_||___/ \____/ \____\ - Yet Another Buggy And Uncomplete Saturn Emulator - - _________________________________________ - Copyright (c) 2002-2011 Yabause team - - -1) Compiling instructions...................................20 -2) How to use Yabause.......................................82 -3) Contact information.....................................105 -4) Disclaimer..............................................121 - - -1 Compiling instructions______________________________________ - -Yabause is written in C using the OpenGL library, so you need a working C compiler(such as gcc) and -these libraries, runtime and development packages: - - * OpenGL should be included with your compiler, if it isn't, - check on your compiler's website for links. - -Yabause can also use the SDL library: - - * http://www.libsdl.org/ - -Yabause can also use the GLUT library: - - * Check google, I haven't been able to find a good - source for it. - -Once these libraries installed, you should be ready to -install Yabause. - -Building the Qt 4 port require the Qt 4.3.x libraries too, it's a crossplatform C++ library for various all days crossplatform work ( gui, threads ... ). -I used the version 4.3.4 version for the developement and tests, so please don't report bugs if you are not using at least this version. - - * http://www.trolltech.com/products/qt - -Compiling for Windows : using mingw/cygwin__________________________________ - -All you have to do now is now is go into your mingw/cygwin -shell environment, go into the directory where you extracted -yabause, and type: "./configure --enable-newperinterface ---with-port=qt". Once that's done(and there -was no errors), type: "make". It should now take some time to -compile so go grab yourself a sandwich or beer - whatever suits -your fancy and it should be done in a few minutes. Now all you -have to do is type "./src/qt/release/yabause" in order to run it. - -Compiling for Mac OS X : using gcc__________________________________________ - -Uncompress the Yabause source archive, move to the newly -created directory, type "./configure --enable-newperinterface --disable-dependency-tracking --disable-shared --with-port=qt", then "make", -it will generate a bundle: "Yabause.app" in the "src/qt" -directory. -You can then use Yabause by opening the bundle with: -"open Yabause.app" or with the Mac OS X finder. - -Compiling for *Nix/Linux/BSD ? : using gcc__________________________________ - -Uncompress the Yabause source archive, move to the newly -created directory, type "./configure --enable-newperinterface ---with-port=qt", then "make", -it will generate one program: "yabause" in the "src/qt" -directory. - - -You can also pass the --enable-debug option to the configure script, Yabause -will then print debug messages in a special dock window. -(Use the --help flag for a complete list of options.) - -You can even type "make install" to install that program on -your system (in /usr/local/ by default), then uninstalling is -done by typing "make uninstall". - -You can try to read other specific README files for more information. - -2 How to use Yabause__________________________________________ - -Before using Yabause, you need to configure a few things in -the Preferences dialog (File>Settings). - - -2.1 Configuration_____________________________________________ - -First, set the BIOS path. -Yabause can run some games without a BIOS, but most of them -needs it. If you want to use the emulated BIOS, just let the -BIOS entry blank. - -Next, set the cdrom device. -It can be a cd device, an iso or a cue file. Set the cd type -accordingly. - -The last thing you have to configure is the keys. - -Once eveything is set, you can start emulation with the -"Emulation>Run" entry. - - -3 Contact information_________________________________________ - -General inquiries should go to: -E-mail: guillaume.duhamel@gmail.com -E-mail: cwx@cyberwarriorx.com - -Qt Port-related inquiries should go to: -E-mail: pasnox@yabause.org - -Web: http://yabause.org - -Please don't ask for roms, bios files or any other copyrighted -stuff. Please use the forum when you have any questions if -possible. - - -4 Disclaimer__________________________________________________ - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. - -This program is distributed in the hope that it will be -useful,but WITHOUT ANY WARRANTY; without even the implied -warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the GNU General Public License for more details. - -You should have received a copy of the GNU General Public -License along with this program; if not, write to the Free -Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA 02110-1301 USA - -See the GNU General Public License details in COPYING. diff --git a/yabause/README.WII b/yabause/README.WII deleted file mode 100644 index cc57112344..0000000000 --- a/yabause/README.WII +++ /dev/null @@ -1,88 +0,0 @@ - _ _ - / \_/ \ ___ _ ____ - \ /___ ___ / || | __ / \ ____ - \ // || \ / || | \ \\ \_// \ - / // || // _ || |__\ \\ \ __/ - \_// _ || \\_/ \_||______/ \ \\ \__ - \_/ \_||___/ \____/ \____\ - Yet Another Buggy And Uncomplete Saturn Emulator - - _________________________________________ - Copyright (c) 2002-2011 Yabause team - - -1) Special Notice...........................................21 -2) Compiling instructions...................................28 -3) How to use Yabause.......................................50 -4) Contact information......................................55 -5) Disclaimer...............................................71 - - -1 Special Notice______________________________________________ - -Please note that the Wii port is in alpha status, and won't be -officially supported until a later date. If you would like to -contribute, please contact us(see the contact information -section in README). - -2 Compiling instructions______________________________________ - -Yabause is written in C using the devkitPro packages. You can -download it from: - -http://www.devkitpro.org - -Once this is installed, you should be ready to install Yabause. - -To compile, either use the Makefile.wii file in the src -subdirectory to compile it(e.g. make -f Makefile.wii) or you can -use configure in the main directory as follows: - -./configure --build=i686-pc-linux-gnu --host=powerpc-gekko - -Once that's done, type "make". It should now take some time to -compile so go grab yourself a sandwich or beer - whatever suits -your fancy and it should be done in a few minutes. You should -now have a file called "yabause.elf". Now all you have to do is -load it on your Wii(which is something we won't cover here). - - -3 How to use Yabause__________________________________________ - -To be finished later. - - -4 Contact information_________________________________________ - -General inquiries should go to: -E-mail: guillaume@yabause.org -E-mail: cwx@cyberwarriorx.com - -Windows Port-related inquiries should go to: -E-mail: cwx@cyberwarriorx.com - -Web: http://yabause.org - -Please don't ask for roms, bios files or any other copyrighted -stuff. Please use the forum when you have any questions if -possible. - - -5 Disclaimer__________________________________________________ - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. - -This program is distributed in the hope that it will be -useful,but WITHOUT ANY WARRANTY; without even the implied -warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the GNU General Public License for more details. - -You should have received a copy of the GNU General Public -License along with this program; if not, write to the Free -Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA 02110-1301 USA - -See the GNU General Public License details in COPYING. diff --git a/yabause/README.WIN b/yabause/README.WIN deleted file mode 100644 index f028197b3d..0000000000 --- a/yabause/README.WIN +++ /dev/null @@ -1,250 +0,0 @@ - _ _ - / \_/ \ ___ _ ____ - \ /___ ___ / || | __ / \ ____ - \ // || \ / || | \ \\ \_// \ - / // || // _ || |__\ \\ \ __/ - \_// _ || \\_/ \_||______/ \ \\ \__ - \_/ \_||___/ \____/ \____\ - Yet Another Buggy And Uncomplete Saturn Emulator - - _________________________________________ - Copyright (c) 2002-2011 Yabause team - - -1) Compiling instructions...................................20 -2) How to use Yabause.......................................68 -3) Contact information.....................................217 -4) Disclaimer..............................................233 - - -1 Compiling instructions______________________________________ - -Yabause is written in C using the DirectX 8.0, OpenGL, GLUT, and -mini18n libraries, so you need a working C compiler(such as gcc) -and these libraries, runtime and development packages: - - * You can find DirectX headers and libraries(for mingw) at - http://alleg.sourceforge.net/wip.html as the file - "dx80_mgw.zip". The actual runtime libraries(or - headers/libraries for Visual C++) can be gotten from - http://www.microsoft.com/DirectX - - * OpenGL should be included with your compiler, if it isn't, - check on your compiler's website for links. - - * Check google for GLUT. I haven't been able to find a good - source for it. - - * You can get mini18n from Yabause's sourceforge download page - here: http://sourceforge.net/project/showfiles.php?group_id=89991&package_id=304859 - -Once these libraries installed, you should be ready to -install Yabause. - -Compiling using mingw/cygwin__________________________________ - -All you have to do now is now is go into your mingw/cygwin -shell environment, go into the directory where you extracted -yabause, and type: "./configure". Once that's done(and there -was no errors), type: "make". It should now take some time to -compile so go grab yourself a sandwich or beer - whatever suits -your fancy and it should be done in a few minutes. Now all you -have to do is type "./src/yabause" in order to run it. - -Compiling using Visual C++____________________________________ - -Make sure you have the latest DirectX SDK and DDK installed. You -can get both of them from Microsoft's website. - -Load up IDE that comes with Visual C++/Visual Studio, go into the -file menu, open an existing project. Go into the yabause's -src/windows directory and open yabause.sln. Now all you have -to do is build it like any other Visual C++ project. - -You can compile for either x86 or x64(for those using Windows XP -x64 or Vista x64. - - -2 How to use Yabause__________________________________________ - -While not necessarily needed, it is recommended you get a Saturn -ROM BIOS image. Please don't ask us where to get one. - -Execute "yabause". The program will open a settings window. - -Basic Settings________________________________________________ - -The Disc Type setting allows you to choose whether you'd like to -use a real cdrom or a cdrom image of the game you're trying to -run. - -The Cue/Iso File setting allows you to specify the location -of your Saturn game's cdrom image. - -The Drive Letter setting is for you to be able to choose which -cdrom drive you want yabause to use when trying to boot a game. - -The SH2 Core setting is for you to be able to choose which SH2 -Core to use. Unless you're a developer, chances are, you should -leave it as the default: "Fast Interpreter". - -The Region setting allows you to choose which region of game -you'll be booting. In most cases, it's best to leave it as -"Auto-detect". - -The Bios ROM File setting allows you to specify the location -of your Saturn ROM BIOS image. If you leave it blank, yabause -will try to emulate the bios instead. It's better to specify -a ROM BIOS image if you can since the emulated bios isn't -100% perfect and may not work with your games. - -The Backup RAM File setting allows you to specify the location -of the Backup RAM file. This file allows yabause to store and -load save games. - -The MPEG ROM File setting allows you to specify the location -of a MPEG Card's ROM image. While not necessary, it does allow -you to test out the saturn's vcd capabilities. - -The Cartridge Type setting allows you to choose which type of -external cartridge to emulate. Some carts also require you to -supply a rom filename, or a new filename for the emulator to -write to. You can enter that information in the field below it. - -When you're done, just click on the "OK" button. If the bios -location was specified correctly, emulation should start and -you will see a brief animation of the saturn logo being formed. - -Special Note: Some settings require a restart of the program. - -There's also settings specifically for video, sound, and input. - -Video Settings________________________________________________ - -If you click on the "Video" tab another list of settings is -displayed. You can set the Video Core to either do hardware -rendering using OpenGL, software renderer(uses OpenGL the final -draw though), or disable drawing completely with the "None" -option. You can also "Enable Auto Frame-skipping" which basically -tries to skip rendering video frames if emulation is lagging in -an attempt to speed things up. - -The Full Screen on startup setting allows you to set Yabause to -run using the full screen when started. You can also change what -resolution is used while in full screen. - -The custom window size setting allows you to set the size of the -video display for yabause. - -Sound Settings________________________________________________ - -If you click on the "Sound" tab another list of settings is -displayed. You can set the Sound Core to either do sound mixing -using DirectX Sound or disable sound completely with the "None" -option. You can also adjust the sound volume using the volume -slider underneath. - -Input Settings________________________________________________ - -If you click on the "Input" tab another list of settings is -displayed. Here you can choose which peripheral(s) emulate. If -you press "Config" another window will pop up. Here can set which -device you'd like to use at the top of the window. Control -settings can be changed by clicking on the equivalent button, and -then when a new window pops up that says "waiting for input..." -press a key/button and that will set the new setting for that -control. - -Log Settings__________________________________________________ - -If you've compiled your own copy of Yabause with the processor -define DEBUG, another tab will be available called "Log". This -allows you to control whether or not the program should be -logging emulation output using the "Enable Logging" setting. Log -Type tells the program whether it should write the output to a -file, or to a separate window so you can monitor the output while -you're running the program. - -Here are the default key mappings(they may be subject to change): -Up arrow - Up -Left arrow - Left -Down arrow - Down -right arrow - Right -k - A button -l - B button -m - C button -u - X button -i - Y button -o - Z button -x - Left Trigger -z - Right Trigger -j - Start button -q - Quit program -F1 - Toggle FPS display -Alt-Enter - Toggle fullscreen/window mode -` - Enable Speed Throttle -1 - Toggle VDP2 NBG0 display -2 - Toggle VDP2 NBG1 display -3 - Toggle VDP2 NBG2 display -4 - Toggle VDP2 NBG3 display -5 - Toggle VDP2 RBG0 display -6 - Toggle VDP1 display -F2 - Load State from slot 1 -F3 - Load State from slot 2 -F4 - Load State from slot 3 -F5 - Load State from slot 4 -F6 - Load State from slot 5 -F7 - Load State from slot 6 -F8 - Load State from slot 7 -F9 - Load State from slot 8 -F10 - Load State from slot 9 -Shift-F2 - Save State to slot 1 -Shift-F3 - Save State to slot 2 -Shift-F4 - Save State to slot 3 -Shift-F5 - Save State to slot 4 -Shift-F6 - Save State to slot 5 -Shift-F7 - Save State to slot 6 -Shift-F8 - Save State to slot 7 -Shift-F9 - Save State to slot 8 -Shift-F10 - Save State to slot 9 - -Command-line Options__________________________________________ - -You can also run the program using command-line options. To see a -full list, run "yabause --help" in the command prompt. - - -3 Contact information_________________________________________ - -General inquiries should go to: -E-mail: guillaume@yabause.org -E-mail: cwx@cyberwarriorx.com - -Windows Port-related inquiries should go to: -E-mail: cwx@cyberwarriorx.com - -Web: http://yabause.org - -Please don't ask for roms, bios files or any other copyrighted -stuff. Please use the forum when you have any questions if -possible. - - -4 Disclaimer__________________________________________________ - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. - -This program is distributed in the hope that it will be -useful,but WITHOUT ANY WARRANTY; without even the implied -warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the GNU General Public License for more details. - -You should have received a copy of the GNU General Public -License along with this program; if not, write to the Free -Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA 02110-1301 USA - -See the GNU General Public License details in COPYING. diff --git a/yabause/TODO b/yabause/TODO deleted file mode 100644 index ee1f06f2f7..0000000000 --- a/yabause/TODO +++ /dev/null @@ -1 +0,0 @@ -Everything moved to sourceforge trackers. diff --git a/yabause/acinclude.m4 b/yabause/acinclude.m4 deleted file mode 100644 index 099f02511c..0000000000 --- a/yabause/acinclude.m4 +++ /dev/null @@ -1,34 +0,0 @@ -AC_DEFUN([YAB_CHECK_HOST_TOOLS], - [ - AC_CHECK_TOOLS([$1], [$2]) - if test `expr x$[$1] : x$host_alias` -eq 0 ; then - [$1]="" - fi - ]) - -AC_DEFUN([YAB_DEP_DISABLED], - [ - depdisabled=no - for i in $ac_configure_args ; do - if test $i = "'--disable-dependency-tracking'" ; then - depdisabled=yes - fi - done - if test "$depdisabled" = "no" ; then - AC_MSG_ERROR([You must disable dependency tracking -run the configure script again with --disable-dependency-tracking]) - fi - ]) - -AC_DEFUN([YAB_LINK_MINI18N], - [ - AC_ARG_ENABLE(static-mini18n, - AC_HELP_STRING(--enable-static-mini18n, Use a static dependency on mini18n), - [use_static_mini18n=$enableval]) - if test "x$use_static_mini18n" = "xyes" ; then - LIBS="-Wl,-Bstatic -lmini18n -Wl,-Bdynamic $LIBS" - else - LIBS="-lmini18n $LIBS" - fi - AC_DEFINE(HAVE_LIBMINI18N) - ]) diff --git a/yabause/autogen.sh b/yabause/autogen.sh deleted file mode 100644 index 83236d797c..0000000000 --- a/yabause/autogen.sh +++ /dev/null @@ -1,2 +0,0 @@ -aclocal && autoconf && automake --add-missing --copy -cd src/c68k && aclocal && autoconf && automake diff --git a/yabause/autopackage/default.apspec.in b/yabause/autopackage/default.apspec.in deleted file mode 100644 index 84a5d043c8..0000000000 --- a/yabause/autopackage/default.apspec.in +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 2006 Guillaume Duhamel -# Copyright 2006 Fabien Coulon -# -# This file is part of Yabause. -# -# Yabause is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# Yabause is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with Yabause; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -# -*-shell-script-*- - -[Meta] -RootName: @yabause.org/yabause:$SOFTWAREVERSION -DisplayName: Yabause Sega Saturn Emulator -ShortName: yabause -Maintainer: Guillaume Duhamel -Packager: Guillaume Duhamel -Summary: Yabause is a Sega Saturn emulator. -URL: http://yabause.org/ -License: GNU General Public License, Version 2 -SoftwareVersion: @VERSION@ -AutopackageTarget: 1.0 - -[Description] -This is a Sega Saturn emulator. - -[BuildPrepare] -prepareBuild --enable-static-mini18n CFLAGS='-D_FORTIFY_SOURCE=0' - -[BuildUnprepare] -unprepareBuild - -[Imports] -echo '*' | import - -[Prepare] -# Dependency checking -require @gtk.org/gtk 2.4 - -[Install] -# Put your installation script here -installExe bin/yabause -installDesktop "Game" share/applications/yabause.desktop -installData share/yabause - -[Uninstall] -# Usually just the following line is enough to uninstall everything -uninstallFromLog diff --git a/yabause/configure.in b/yabause/configure.in deleted file mode 100644 index 4777423ece..0000000000 --- a/yabause/configure.in +++ /dev/null @@ -1,616 +0,0 @@ -AC_INIT(yabause, 0.9.10) - -if test "x$host_alias" = "xpowerpc-gekko" ; then - config_guess_sucks=$host_alias - host_alias=powerpc -elif test "x$host_alias" = "xpsp" ; then - config_guess_sucks=$host_alias - host_alias=mips -fi - -AC_CANONICAL_HOST -AC_CANONICAL_TARGET - -if test ! "x$config_guess_sucks" = "x" ; then - host_alias=$config_guess_sucks -fi - -# hack to reset host_alias when we're not cross compiling -if test "x$host_alias" = "x$build_alias"; then - host_alias= -fi - -AM_INIT_AUTOMAKE([1.8.0]) - -AC_PROG_RANLIB - -# Check for --host=psp now because we need to get the PSP SDK directory and -# set linker flags/libraries -if test "x$host_alias" = "xpsp" ; then - AC_MSG_CHECKING([for PSPSDK]) - if test -z "$PSPSDK"; then - saved_IFS=$IFS - IFS=$PATH_SEPARATOR - for dir in $PATH; do - IFS=$saved_IFS - test -z "$dir" && dir=. - if test -x "$dir/psp-config"; then - PSPSDK=`"$dir/psp-config" -p` - test -n "$PSPSDK" && break - fi - done - IFS=$saved_IFS - fi - if test -n "$PSPSDK"; then - AC_MSG_RESULT([$PSPSDK]) - else - AC_MSG_RESULT([not found]) - AC_MSG_ERROR([Please set the PSPSDK variable]) - fi - CFLAGS="-G0 -falign-functions=16 -I$PSPSDK/include -DNO_CLI $CFLAGS" - LDFLAGS="-specs=$PSPSDK/lib/prxspecs -Wl,-q,-T$PSPSDK/lib/linkfile.prx -L$PSPSDK/lib $LDFLAGS" - LIBS="$LIBS -lm -lc -lpspaudio -lpspctrl -lpspdisplay -lpspgu -lpspge -lpsppower -lpsputility -lpspuser" -fi - -AC_PROG_CC - -if test `expr x$CC : x$host_alias` -eq 0 ; then - AC_MSG_ERROR([$CC is not a cross compiler and we're cross-compiling.]) -fi - -AC_PROG_CPP -AC_PROG_INSTALL - -AC_LANG(C) -AC_LANG(C++) - -AC_C_BIGENDIAN - -AM_PROG_CC_C_O -AM_PROG_AS - -# Check what kind of CPU we're running on -case "$target_cpu" in - x86|i?86) yabause_cpu=x86; AC_DEFINE(CPU_X86);; - x86_64|amd64) yabause_cpu=x64; AC_DEFINE(CPU_X64);; - armv7*) yabause_cpu=arm; AC_DEFINE(CPU_ARM);; - *) if test "$host_alias" = psp; then - yabause_cpu=psp; AC_DEFINE(CPU_PSP) - else - yabause_cpu=unknown - fi;; -esac - - -################################################################################# -# # -# phase 1, we're checking for things that could be used by Yabause library # -# # -################################################################################# - -# checking for gettimeofday -AC_CHECK_HEADERS([sys/time.h]) -AC_CHECK_FUNCS([gettimeofday]) - -# checking for floorf (C99 single-precision math) -OLDLIBS="$LIBS" -LIBS="$LIBS -lm" -AC_CHECK_FUNCS([floorf]) -LIBS="$OLDLIBS" - -# checking for mini18n -if test ! "x$MINI18N" = "x" ; then - OLDCPPFLAGS="$CPPFLAGS" - OLDLDFLAGS="$LDFLAGS" - CPPFLAGS="$CPPFLAGS -I$MINI18N/include" - LDFLAGS="$LDFLAGS -L$MINI18N/lib" - - AC_CHECK_LIB(mini18n, mini18n, [YAB_LINK_MINI18N], [ - CPPFLAGS="$OLDCPPFLAGS" - LDFLAGS="$OLDLDFLAGS" - ]) -else - AC_CHECK_LIB(mini18n, mini18n, [YAB_LINK_MINI18N]) -fi - -# checking for variadic macros -AC_MSG_CHECKING([[whether the compiled supports c99 variadic macros]]) -AC_COMPILE_IFELSE(AC_LANG_PROGRAM([[#define MACRO(...) puts(__VA_ARGS__)]], [[MACRO("foo");]]), - AC_DEFINE(HAVE_C99_VARIADIC_MACROS) - AC_MSG_RESULT(yes), AC_MSG_RESULT(no)) - -# checking for SDL (can be used for sound and input) -use_sdl=yes -AC_ARG_WITH(sdl, AC_HELP_STRING(--without-sdl, don't use SDL), [use_sdl=$withval]) - -if test x$use_sdl = xyes ; then - case $host in - *darwin*) - OLDLDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -framework SDL" - AC_LINK_IFELSE([AC_LANG_PROGRAM([[ - int t(void) { return 0; } - ]],[[ - int foo = t(); - ]])],[AC_DEFINE(HAVE_LIBSDL) - SDL_LIBS="-framework SDL"], []) - LDFLAGS="$OLDLDFLAGS" - ;; - *) - YAB_CHECK_HOST_TOOLS(HAVE_LIBSDL, [sdl-config sdl11-config]) - - if test ! x$HAVE_LIBSDL = x ; then - SDL_CFLAGS=`$HAVE_LIBSDL --cflags` - SDL_LIBS=`$HAVE_LIBSDL --libs` - AC_DEFINE(HAVE_LIBSDL) - fi - ;; - esac - - CFLAGS="$CFLAGS $SDL_CFLAGS" - LIBS="$LIBS $SDL_LIBS" -fi - -# checking for OpenGL (most ports needs it for video) -use_opengl=yes -AC_ARG_WITH(opengl, AC_HELP_STRING(--without-opengl, don't use OpenGL), [use_opengl=$withval]) - -if test x$use_opengl = xyes ; then - case $host in - *darwin*) - LIBS="$LIBS -framework OpenGL" - AC_DEFINE(HAVE_LIBGL) - ;; - *cygwin* | *mingw32*) - YAB_LIBS="$YAB_LIBS -lopengl32 -lglut32" - AC_DEFINE(HAVE_LIBGL) - ;; - *linux* | *bsd*) - AC_PATH_XTRA - LIBS="$LIBS $X_LIBS" - CFLAGS="$CFLAGS $X_CFLAGS" - - AC_CHECK_LIB(GL, glEnable, [ - LIBS="$LIBS -lGL" - AC_DEFINE(HAVE_LIBGL) - ],, $LIBS) - AC_CHECK_LIB(glut, glutGetModifiers,[ - LIBS="$LIBS -lglut" - AC_DEFINE(HAVE_LIBGLUT)],, $LIBS) - AC_CHECK_FUNC(glXGetProcAddress, AC_DEFINE(HAVE_GLXGETPROCADDRESS)) - ;; - *) - AC_CHECK_LIB(GL, glEnable, [ - LIBS="$LIBS -lGL" - AC_DEFINE(HAVE_LIBGL) - ],, $LIBS) - AC_CHECK_LIB(glut, glutGetModifiers,[ - LIBS="$LIBS -lglut" - AC_DEFINE(HAVE_LIBGLUT)],, $LIBS) - ;; - esac -fi - -# checking for OpenAL (can be used for sound) -use_openal=yes -AC_ARG_WITH(openal, AC_HELP_STRING(--without-openal, "don't use OpenAL"), [use_openal=$withval]) - -if test x$use_openal = xyes ; then - case $host in - *darwin*) - LIBS="$LIBS -framework OpenAL" - AC_DEFINE(HAVE_LIBAL) - ;; - *mingw32*) - # The OpenAL sound code uses Pthreads at the moment, so MinGW - # won't work right now. - ;; - *) - AC_CHECK_LIB(pthread, main) - AC_CHECK_LIB(openal, alBufferData, [ - LIBS="$LIBS -lopenal" - AC_DEFINE(HAVE_LIBAL) - ],, $LIBS) - ;; - esac -fi - -# platform-specific features -case $host in - *darwin*) - yabause_arch=macosx - AC_DEFINE([ARCH_IS_MACOSX]) - LIBS="$LIBS -framework CoreFoundation -framework IOKit" - major=`expr $host_os : "darwin\(@<:@^.@:>@*\)"` - if test $major -ge 7 ; then - sdkversion=0 - sdkfile="" - for i in /Developer/SDKs/MacOSX10.*.sdk; do - j=`expr $i : "/Developer/SDKs/MacOSX10.\(.\).*.sdk"` - if test $j -gt $sdkversion ; then - sdkversion=$j - sdkfile=$i - fi - done - AC_ARG_WITH([sdk], AC_HELP_STRING(--with-sdk, [choose your sdk (macosx only)]), [sdkfile=$withval]) - - YAB_DEP_DISABLED - - CFLAGS="$CFLAGS -mmacosx-version-min=10.3 -isysroot $sdkfile -arch i386 -arch ppc" - LDFLAGS="$LDFLAGS -Wl,-macosx_version_min,10.3 -arch i386 -arch ppc" - AC_DEFINE(MAC_OS_X_VERSION_MAX_ALLOWED, MAC_OS_X_VERSION_10_3) - fi - ;; - *linux*) - yabause_arch=linux - LIBS="$LIBS -lm" - AC_DEFINE([ARCH_IS_LINUX]) - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include ]], [[int i = CDSL_CURRENT;]])], - [], - [AC_DEFINE(LINUX_CDROM_H_IS_BROKEN)]) - ;; - *cygwin*) - yabause_arch=windows - AC_DEFINE([ARCH_IS_WINDOWS]) - AC_DEFINE(_WIN32_IE, 0x0500) - ;; - *mingw32*) - yabause_arch=windows - AC_DEFINE([ARCH_IS_WINDOWS]) - AC_CHECK_HEADERS("wnaspi32.h", [], [], [#include ]) - AC_DEFINE(_WIN32_IE, 0x0500) - ;; - *freebsd*) - yabause_arch=freebsd - AC_DEFINE([ARCH_IS_FREEBSD]) - ;; - *netbsd* | *openbsd*) - yabause_arch=netbsd - AC_DEFINE([ARCH_IS_NETBSD]) - ;; - *) - case $host_alias in - psp) - yabause_arch=psp - ;; - *) - yabause_arch="." - AC_DEFINE(UNKNOWN_ARCH) - ;; - esac - ;; -esac - -# users can turn c68k compilation off (forced off on PSP) -if test "x$yabause_arch" = "xpsp"; then - compile_c68k=no -else - compile_c68k=yes -fi -AC_ARG_WITH(c68k, AC_HELP_STRING(--without-c68k, don't compile C68k), [compile_c68k=$withval]) -if test x$compile_c68k = xyes ; then - if test "x$yabause_arch" = "xpsp"; then - AC_MSG_ERROR([c68k is not supported on PSP]) - fi - AC_DEFINE(HAVE_C68K) -fi -AM_CONDITIONAL(COMPILE_C68K, test x$compile_c68k = xyes) - -# Q68 emulator is optional (but required on PSP) -if test "x$yabause_arch" = "xpsp"; then - compile_q68=yes -else - compile_q68=no -fi -AC_ARG_WITH(q68, AC_HELP_STRING(--with-q68, [include Q68 68k emulator (requires a C99-compliant compiler like GCC)]), [compile_q68=$withval]) -if test "x$compile_q68" = "xyes"; then - AC_DEFINE(HAVE_Q68) -elif test "x$yabause_arch" = "xpsp"; then - AC_MSG_ERROR([Q68 is required on PSP]) -fi -AM_CONDITIONAL(COMPILE_Q68, test "x$compile_q68" = "xyes") - -# JIT for Q68 can be disabled (and is automatically disabled on unsupported -# systems) -q68_use_jit=maybe -AC_ARG_ENABLE(q68-jit, AC_HELP_STRING(--disable-q68-jit, [disable dynamic (Just-In-Time) translation for Q68]), [q68_use_jit=$enableval]) -case $yabause_cpu in - x86|x64|psp) - if test "x$q68_use_jit" = "xmaybe"; then - q68_use_jit=yes - fi - ;; - *) - if test "x$q68_use_jit" = "xyes"; then - AC_MSG_ERROR([Q68 dynamic translation is not supported on this CPU]); - elif test "x$q68_use_jit" = "xmaybe"; then - AC_MSG_WARN([Disabling Q68 dynamic translation (not supported on this CPU)]); - fi - ;; -esac -if test "x$q68_use_jit" = "xyes"; then - AC_DEFINE(Q68_USE_JIT) -fi -AM_CONDITIONAL([Q68_USE_JIT], test "x$q68_use_jit" = "xyes") - -# Allow disabling of dynarec -AC_ARG_ENABLE(dynarec, AC_HELP_STRING(--disable-dynarec, [Disable dynarec core]), [], [use_dynarec=yes]) - -if test "x$use_dynarec" = "xyes"; then - AC_DEFINE(USE_DYNAREC) -fi - -AM_CONDITIONAL([USE_DYNAREC], test "x$use_dynarec" = "xyes") - -################################################################################# -# # -# phase 2, we're done with Yabause library, now we're tring to configure ports # -# # -################################################################################# - -# qt -AC_PATH_PROGS(HAVE_QMAKE, [qmake-qt4 qmake]) - -if test ! x$HAVE_QMAKE = x ; then - yabause_available_yuis="qt $yabause_available_yuis" -fi - -# gtk -want_gtk=yes -AC_ARG_WITH(gtk, AC_HELP_STRING(--without-gtk, don't try to configure the gtk port), [want_gtk=$withval]) - -YAB_CHECK_HOST_TOOLS(HAVE_PKG, [pkg-config]) -if test ! x$HAVE_PKG = x ; then - if test "x$want_gtk" = "xyes" && `$HAVE_PKG gtk+-2.0` ; then - if test "x$use_opengl" = "xyes" ; then - if `$HAVE_PKG gtkglext-1.0` ; then - yabause_available_yuis="gtk $yabause_available_yuis" - YUI_gtk_CFLAGS=`$HAVE_PKG gtkglext-1.0 --cflags` - YUI_gtk_LIBS=`$HAVE_PKG gtkglext-1.0 --libs` - AC_DEFINE(HAVE_LIBGTKGLEXT) - else - AC_MSG_NOTICE([Found OpenGL and Gtk+ but not libgtkglext.]) - AC_MSG_NOTICE([You can either:]) - AC_MSG_NOTICE([- install libgtkglext to compile a gtk port with OpenGL support]) - AC_MSG_NOTICE([- re-run configure with --without-opengl flag to compile a gtk port without OpenGL support]) - AC_MSG_NOTICE([- re-run configure with --without-gtk flag to disable gtk port compilation]) - AC_MSG_ERROR([Can't go further, please install libgtkglext or re-run configure with --without-opengl or --without-gtk]) - fi - else - yabause_available_yuis="gtk $yabause_available_yuis" - YUI_gtk_CFLAGS=`$HAVE_PKG gtk+-2.0 --cflags` - YUI_gtk_LIBS=`$HAVE_PKG gtk+-2.0 --libs` - fi - fi -fi - -# carbon -OLDLDFLAGS="$LDFLAGS" -LDFLAGS="$LDFLAGS -framework Carbon" -AC_LINK_IFELSE([AC_LANG_PROGRAM([[ - int t(void) { return 0; } - ]],[[ - int foo = t(); - ]])],[YUI_carbon_LIBS="-framework Carbon -framework AGL" - yabause_available_yuis="carbon $yabause_available_yuis"], []) -LDFLAGS="$OLDLDFLAGS" - -# windows -YAB_CHECK_HOST_TOOLS(WINDRES, [windres]) -AC_CHECK_HEADER([windows.h], [yabause_available_yuis="windows $yabause_available_yuis"], []) - -# wii -if test "x$host_alias" = "xpowerpc-gekko" ; then - if test \( "x$LIBOGC" = "x" \) -a \( ! "x$DEVKITPRO" = "x" \) ; then - LIBOGC="$DEVKITPRO/libogc" - fi - if test "x$LIBOGC" = "x" ; then - AC_MSG_ERROR([Please set the LIBOGC variable]) - else - CPPFLAGS="-I$LIBOGC/include $CPPFLAGS" - LDFLAGS="-L$LIBOGC/lib/wii $LDFLAGS" - CFLAGS="-mrvl -mcpu=750 -meabi -mhard-float $CFLAGS" - LIBS="-lfat -lwiiuse -lbte -logc -lm $LIBS" - fi - - AC_DEFINE(GEKKO) - - yabause_available_yuis="wii" -fi - -# PSP -if test "x$host_alias" = "xpsp" ; then - AC_DEFINE(PSP) - yabause_available_yuis="psp" -fi - -# adding . as a fallback when no other port is available -yabause_available_yuis="$yabause_available_yuis ." - -yabause_yui=`echo $yabause_available_yuis | cut -d\ -f1` - -AC_ARG_WITH([port], AC_HELP_STRING(--with-port, choose your port), [yabause_manual_yui=$withval]) -for yabause_available_yui in $yabause_available_yuis; do - if test x$yabause_available_yui = x$yabause_manual_yui; then - yabause_yui=$yabause_manual_yui - fi -done - -if ! test "x$yabause_yui" = "x." ; then - eval YAB_CFLAGS=\$YUI_${yabause_yui}_CFLAGS - eval YAB_LIBS=\$YUI_${yabause_yui}_LIBS - AC_SUBST(YAB_CFLAGS) - AC_SUBST(YAB_LIBS) -fi - -AC_SUBST(yabause_yui) - - -AC_ARG_ENABLE(debug, AC_HELP_STRING(--enable-debug, enable general debug information) , - [if test "x$enableval" = "xyes" ; then - AC_DEFINE(DEBUG) - fi]) -AC_ARG_ENABLE(vdp1-debug, AC_HELP_STRING(--enable-vdp1-debug, enable vdp1 debug information) , - [if test "x$enableval" = "xyes" ; then - AC_DEFINE(VDP1_DEBUG) - fi]) -AC_ARG_ENABLE(vdp2-debug, AC_HELP_STRING(--enable-vdp2-debug, enable vdp2 debug information) , - [if test "x$enableval" = "xyes" ; then - AC_DEFINE(VDP2_DEBUG) - fi]) -AC_ARG_ENABLE(cd-debug, AC_HELP_STRING(--enable-cd-debug, enable cdblock debug information) , - [if test "x$enableval" = "xyes" ; then - AC_DEFINE(CDDEBUG) - fi]) -AC_ARG_ENABLE(smpc-debug, AC_HELP_STRING(--enable-smpc-debug, enable smpc debug information) , - [if test "x$enableval" = "xyes" ; then - AC_DEFINE(SMPC_DEBUG) - fi]) -AC_ARG_ENABLE(scsp-debug, AC_HELP_STRING(--enable-scsp-debug, enable scsp debug information) , - [if test "x$enableval" = "xyes" ; then - AC_DEFINE(SCSP_DEBUG) - fi]) -AC_ARG_ENABLE(idle-debug, AC_HELP_STRING(--enable-idle-debug, enable idle cpu debug information) , - [if test "x$enableval" = "xyes" ; then - AC_DEFINE(IDLE_DETECT_VERBOSE) - fi]) -AC_ARG_ENABLE(mic-shaders, AC_HELP_STRING(--enable-mic-shaders, enable OpenGL shaders for gouraud and mesh) , - [if test "x$enableval" = "xyes" ; then - AC_DEFINE(USEMICSHADERS) - fi]) -AC_ARG_ENABLE(network, AC_HELP_STRING(--enable-network, enable network) , - [if test "x$enableval" = "xyes" ; then - AC_DEFINE(USESOCKET) - fi]) -AC_ARG_ENABLE(perkeyname, AC_HELP_STRING(--enable-perkeyname, use peripheral key name callback) , - [if test "x$enableval" = "xyes" ; then - AC_DEFINE(PERKEYNAME) - fi]) -AC_ARG_ENABLE(exec-from-cache, AC_HELP_STRING(--enable-exec-from-cache, [allow code execution from 0xC0000000]), - [if test "x$enableval" = "xyes" ; then - AC_DEFINE(EXEC_FROM_CACHE) - fi]) -AC_ARG_ENABLE(optimized-dma, AC_HELP_STRING(--enable-optimized-dma, [use optimized DMA when possible]), - [if test "x$enableval" = "xyes" ; then - AC_DEFINE(OPTIMIZED_DMA) - fi]) -AC_ARG_ENABLE(new-scsp, AC_HELP_STRING(--enable-new-scsp, [enable experimental new SCSP implementation]), - [if test "x$enableval" = "xyes" ; then - AC_DEFINE(USE_SCSP2) - fi]) -AM_CONDITIONAL([USE_SCSP2], [test "${enable_new_scsp}" = "yes"]) - - -#### PSP options - -AC_ARG_ENABLE(psp-debug, AC_HELP_STRING(--enable-psp-debug, [enable PSP debugging output]), - [if test "x$enableval" = "xyes" ; then - AC_DEFINE([PSP_DEBUG]) - fi]) - -AC_ARG_ENABLE(psp-profile, AC_HELP_STRING(--enable-psp-profile, [enable profiling on PSP port]), - [if test "x$enableval" = "xyes" ; then - AC_DEFINE([SYS_PROFILE_H], ["psp/profile.h"]) - fi]) - -AC_ARG_WITH(psp-me-test, AC_HELP_STRING(--with-psp-me-test, [build ME library test program])) -AM_CONDITIONAL([BUILD_ME_TEST], [test "${with_psp_me_test}" = "yes"]) - -AC_ARG_ENABLE(debug-psp-sh2, AC_HELP_STRING(--enable-debug-psp-sh2, [include PSP SH-2 core for testing]), - [if test "x$enableval" = "xyes" ; then - AC_DEFINE([TEST_PSP_SH2]) - fi]) -AM_CONDITIONAL([TEST_PSP_SH2], [test "${enable_debug_psp_sh2}" = "yes"]) - -### End PSP options - -AC_CONFIG_FILES([Makefile - l10n/Makefile - doc/Doxyfile - src/Makefile - src/carbon/Makefile - src/dreamcast/Makefile - src/gtk/Makefile - src/gtk/doc/Makefile - src/psp/Makefile - src/qt/Makefile - src/qt/yabause.pro - src/qt/doc/Makefile - src/wii/Makefile - src/windows/Makefile - autopackage/default.apspec -]) -if test x$yabause_yui = xqt ; then - case $host in - *mingw*) - case $build in - *linux*) - qmake_spec="-win32 -spec mkspecs/win32-x11-g++" - ;; - *darwin*) - qmake_spec="-win32 -spec mkspecs/win32-osx-g++" - ;; - *) - if test "x$cross_compiling" = "xyes" ; then - AC_MSG_ERROR([cross-compiling $host port on $build is not supported yet]) - fi - ;; - esac - ;; - *darwin*) - case $build in - *darwin*) - qmake_spec="-spec macx-g++" - ;; - *) - AC_MSG_ERROR([cross-compiling $host port on $build is not supported yet]) - ;; - esac - ;; - *) - if test "x$cross_compiling" = "xyes" ; then - AC_MSG_ERROR([cross-compiling $host port on $build is not supported yet]) - fi - ;; - esac - AC_CONFIG_FILES([src/qt/Makefile.qmake:src/qt/yabause.pro], - [( cd src/qt && $QMAKE yabause.pro $QMAKE_SPEC -o Makefile.qmake )], - [QMAKE=$HAVE_QMAKE QMAKE_SPEC="$qmake_spec"]) -fi - -AC_CONFIG_COMMANDS([src/c68k/Makefile], [( cd src/c68k/ && $CONFIG_SHELL ${ac_srcdir}/configure )]) - -AM_CONDITIONAL([YUI_IS_CARBON], [test ${yabause_yui} = "carbon"]) -AM_CONDITIONAL([YUI_IS_DREAMCAST], [test ${yabause_yui} = "dreamcast"]) -AM_CONDITIONAL([YUI_IS_GTK], [test ${yabause_yui} = "gtk"]) -AM_CONDITIONAL([YUI_IS_PSP], [test ${yabause_yui} = "psp"]) -AM_CONDITIONAL([YUI_IS_QT], [test ${yabause_yui} = "qt"]) -AM_CONDITIONAL([YUI_IS_WII], [test ${yabause_yui} = "wii"]) -AM_CONDITIONAL([YUI_IS_WINDOWS], [test ${yabause_yui} = "windows"]) - -AM_CONDITIONAL([ARCH_IS_FREEBSD], [test ${yabause_arch} = "freebsd"]) -AM_CONDITIONAL([ARCH_IS_LINUX], [test ${yabause_arch} = "linux"]) -AM_CONDITIONAL([ARCH_IS_MACOSX], [test ${yabause_arch} = "macosx"]) -AM_CONDITIONAL([ARCH_IS_NETBSD], [test ${yabause_arch} = "netbsd"]) -AM_CONDITIONAL([ARCH_IS_WINDOWS], [test ${yabause_arch} = "windows"]) - -AM_CONDITIONAL([CPU_IS_ARM], [test ${yabause_cpu} = "arm"]) -AM_CONDITIONAL([CPU_IS_X86], [test ${yabause_cpu} = "x86"]) -AM_CONDITIONAL([CPU_IS_X64], [test ${yabause_cpu} = "x64"]) -AM_CONDITIONAL([CPU_IS_PSP], [test ${yabause_cpu} = "psp"]) - -AC_OUTPUT - -echo "==================" -echo "WARNING" -echo -echo "Compiling Yabause with autootols is deprecated" -echo -echo "Please use CMake instead" -echo -echo "==================" -echo "configure report" -echo -echo "available ports: $yabause_available_yuis" -echo "selected port: $yabause_yui" -echo "==================" diff --git a/yabause/doc/CMakeLists.txt b/yabause/doc/CMakeLists.txt deleted file mode 100644 index ebd9fec1f3..0000000000 --- a/yabause/doc/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -project(yabause-doc) - -find_package(Doxygen) -if(DOXYGEN_FOUND) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY) - add_custom_target(doc - ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile - WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} - COMMENT "Generating documentation with Doxygen" VERBATIM - ) -endif(DOXYGEN_FOUND) diff --git a/yabause/doc/Doxyfile.in b/yabause/doc/Doxyfile.in deleted file mode 100644 index 2f1988b034..0000000000 --- a/yabause/doc/Doxyfile.in +++ /dev/null @@ -1,1356 +0,0 @@ -# Doxyfile 1.5.5 - -# This file describes the settings to be used by the documentation system -# doxygen (www.doxygen.org) for a project -# -# All text after a hash (#) is considered a comment and will be ignored -# The format is: -# TAG = value [value, ...] -# For lists items can also be appended using: -# TAG += value [value, ...] -# Values that contain spaces should be placed between quotes (" ") - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- - -# This tag specifies the encoding used for all characters in the config file -# that follow. The default is UTF-8 which is also the encoding used for all -# text before the first occurrence of this tag. Doxygen uses libiconv (or the -# iconv built into libc) for the transcoding. See -# http://www.gnu.org/software/libiconv for the list of possible encodings. - -DOXYFILE_ENCODING = UTF-8 - -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded -# by quotes) that should identify the project. - -PROJECT_NAME = Yabause - -# The PROJECT_NUMBER tag can be used to enter a project or revision number. -# This could be handy for archiving the generated documentation or -# if some version control system is used. - -PROJECT_NUMBER = - -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) -# base path where the generated documentation will be put. -# If a relative path is entered, it will be relative to the location -# where doxygen was started. If left blank the current directory will be used. - -OUTPUT_DIRECTORY = - -# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create -# 4096 sub-directories (in 2 levels) under the output directory of each output -# format and will distribute the generated files over these directories. -# Enabling this option can be useful when feeding doxygen a huge amount of -# source files, where putting all generated files in the same directory would -# otherwise cause performance problems for the file system. - -CREATE_SUBDIRS = NO - -# The OUTPUT_LANGUAGE tag is used to specify the language in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all constant output in the proper language. -# The default language is English, other supported languages are: -# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, -# Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, -# Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), -# Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, -# Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, -# and Ukrainian. - -OUTPUT_LANGUAGE = English - -# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will -# include brief member descriptions after the members that are listed in -# the file and class documentation (similar to JavaDoc). -# Set to NO to disable this. - -BRIEF_MEMBER_DESC = YES - -# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend -# the brief description of a member or function before the detailed description. -# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the -# brief descriptions will be completely suppressed. - -REPEAT_BRIEF = YES - -# This tag implements a quasi-intelligent brief description abbreviator -# that is used to form the text in various listings. Each string -# in this list, if found as the leading text of the brief description, will be -# stripped from the text and the result after processing the whole list, is -# used as the annotated text. Otherwise, the brief description is used as-is. -# If left blank, the following values are used ("$name" is automatically -# replaced with the name of the entity): "The $name class" "The $name widget" -# "The $name file" "is" "provides" "specifies" "contains" -# "represents" "a" "an" "the" - -ABBREVIATE_BRIEF = - -# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then -# Doxygen will generate a detailed section even if there is only a brief -# description. - -ALWAYS_DETAILED_SEC = NO - -# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all -# inherited members of a class in the documentation of that class as if those -# members were ordinary class members. Constructors, destructors and assignment -# operators of the base classes will not be shown. - -INLINE_INHERITED_MEMB = NO - -# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full -# path before files name in the file list and in the header files. If set -# to NO the shortest path that makes the file name unique will be used. - -FULL_PATH_NAMES = YES - -# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag -# can be used to strip a user-defined part of the path. Stripping is -# only done if one of the specified strings matches the left-hand part of -# the path. The tag can be used to show relative paths in the file list. -# If left blank the directory from which doxygen is run is used as the -# path to strip. - -STRIP_FROM_PATH = @CMAKE_CURRENT_SOURCE_DIR@/.. - -# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of -# the path mentioned in the documentation of a class, which tells -# the reader which header file to include in order to use a class. -# If left blank only the name of the header file containing the class -# definition is used. Otherwise one should specify the include paths that -# are normally passed to the compiler using the -I flag. - -STRIP_FROM_INC_PATH = - -# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter -# (but less readable) file names. This can be useful is your file systems -# doesn't support long names like on DOS, Mac, or CD-ROM. - -SHORT_NAMES = NO - -# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen -# will interpret the first line (until the first dot) of a JavaDoc-style -# comment as the brief description. If set to NO, the JavaDoc -# comments will behave just like regular Qt-style comments -# (thus requiring an explicit @brief command for a brief description.) - -JAVADOC_AUTOBRIEF = NO - -# If the QT_AUTOBRIEF tag is set to YES then Doxygen will -# interpret the first line (until the first dot) of a Qt-style -# comment as the brief description. If set to NO, the comments -# will behave just like regular Qt-style comments (thus requiring -# an explicit \brief command for a brief description.) - -QT_AUTOBRIEF = NO - -# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen -# treat a multi-line C++ special comment block (i.e. a block of //! or /// -# comments) as a brief description. This used to be the default behaviour. -# The new default is to treat a multi-line C++ comment block as a detailed -# description. Set this tag to YES if you prefer the old behaviour instead. - -MULTILINE_CPP_IS_BRIEF = NO - -# If the DETAILS_AT_TOP tag is set to YES then Doxygen -# will output the detailed description near the top, like JavaDoc. -# If set to NO, the detailed description appears after the member -# documentation. - -DETAILS_AT_TOP = NO - -# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented -# member inherits the documentation from any documented member that it -# re-implements. - -INHERIT_DOCS = YES - -# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce -# a new page for each member. If set to NO, the documentation of a member will -# be part of the file/class/namespace that contains it. - -SEPARATE_MEMBER_PAGES = NO - -# The TAB_SIZE tag can be used to set the number of spaces in a tab. -# Doxygen uses this value to replace tabs by spaces in code fragments. - -TAB_SIZE = 8 - -# This tag can be used to specify a number of aliases that acts -# as commands in the documentation. An alias has the form "name=value". -# For example adding "sideeffect=\par Side Effects:\n" will allow you to -# put the command \sideeffect (or @sideeffect) in the documentation, which -# will result in a user-defined paragraph with heading "Side Effects:". -# You can put \n's in the value part of an alias to insert newlines. - -ALIASES = - -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C -# sources only. Doxygen will then generate output that is more tailored for C. -# For instance, some of the names that are used will be different. The list -# of all members will be omitted, etc. - -OPTIMIZE_OUTPUT_FOR_C = YES - -# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java -# sources only. Doxygen will then generate output that is more tailored for -# Java. For instance, namespaces will be presented as packages, qualified -# scopes will look different, etc. - -OPTIMIZE_OUTPUT_JAVA = NO - -# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran -# sources only. Doxygen will then generate output that is more tailored for -# Fortran. - -OPTIMIZE_FOR_FORTRAN = NO - -# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL -# sources. Doxygen will then generate output that is tailored for -# VHDL. - -OPTIMIZE_OUTPUT_VHDL = NO - -# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want -# to include (a tag file for) the STL sources as input, then you should -# set this tag to YES in order to let doxygen match functions declarations and -# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. -# func(std::string) {}). This also make the inheritance and collaboration -# diagrams that involve STL classes more complete and accurate. - -BUILTIN_STL_SUPPORT = NO - -# If you use Microsoft's C++/CLI language, you should set this option to YES to -# enable parsing support. - -CPP_CLI_SUPPORT = NO - -# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. -# Doxygen will parse them like normal C++ but will assume all classes use public -# instead of private inheritance when no explicit protection keyword is present. - -SIP_SUPPORT = NO - -# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC -# tag is set to YES, then doxygen will reuse the documentation of the first -# member in the group (if any) for the other members of the group. By default -# all members of a group must be documented explicitly. - -DISTRIBUTE_GROUP_DOC = NO - -# Set the SUBGROUPING tag to YES (the default) to allow class member groups of -# the same type (for instance a group of public functions) to be put as a -# subgroup of that type (e.g. under the Public Functions section). Set it to -# NO to prevent subgrouping. Alternatively, this can be done per class using -# the \nosubgrouping command. - -SUBGROUPING = YES - -# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum -# is documented as struct, union, or enum with the name of the typedef. So -# typedef struct TypeS {} TypeT, will appear in the documentation as a struct -# with name TypeT. When disabled the typedef will appear as a member of a file, -# namespace, or class. And the struct will be named TypeS. This can typically -# be useful for C code in case the coding convention dictates that all compound -# types are typedef'ed and only the typedef is referenced, never the tag name. - -TYPEDEF_HIDES_STRUCT = NO - -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- - -# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in -# documentation are documented, even if no documentation was available. -# Private class members and static file members will be hidden unless -# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES - -EXTRACT_ALL = YES - -# If the EXTRACT_PRIVATE tag is set to YES all private members of a class -# will be included in the documentation. - -EXTRACT_PRIVATE = NO - -# If the EXTRACT_STATIC tag is set to YES all static members of a file -# will be included in the documentation. - -EXTRACT_STATIC = NO - -# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) -# defined locally in source files will be included in the documentation. -# If set to NO only classes defined in header files are included. - -EXTRACT_LOCAL_CLASSES = YES - -# This flag is only useful for Objective-C code. When set to YES local -# methods, which are defined in the implementation section but not in -# the interface are included in the documentation. -# If set to NO (the default) only methods in the interface are included. - -EXTRACT_LOCAL_METHODS = NO - -# If this flag is set to YES, the members of anonymous namespaces will be -# extracted and appear in the documentation as a namespace called -# 'anonymous_namespace{file}', where file will be replaced with the base -# name of the file that contains the anonymous namespace. By default -# anonymous namespace are hidden. - -EXTRACT_ANON_NSPACES = NO - -# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all -# undocumented members of documented classes, files or namespaces. -# If set to NO (the default) these members will be included in the -# various overviews, but no documentation section is generated. -# This option has no effect if EXTRACT_ALL is enabled. - -HIDE_UNDOC_MEMBERS = NO - -# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all -# undocumented classes that are normally visible in the class hierarchy. -# If set to NO (the default) these classes will be included in the various -# overviews. This option has no effect if EXTRACT_ALL is enabled. - -HIDE_UNDOC_CLASSES = NO - -# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all -# friend (class|struct|union) declarations. -# If set to NO (the default) these declarations will be included in the -# documentation. - -HIDE_FRIEND_COMPOUNDS = NO - -# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any -# documentation blocks found inside the body of a function. -# If set to NO (the default) these blocks will be appended to the -# function's detailed documentation block. - -HIDE_IN_BODY_DOCS = NO - -# The INTERNAL_DOCS tag determines if documentation -# that is typed after a \internal command is included. If the tag is set -# to NO (the default) then the documentation will be excluded. -# Set it to YES to include the internal documentation. - -INTERNAL_DOCS = NO - -# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate -# file names in lower-case letters. If set to YES upper-case letters are also -# allowed. This is useful if you have classes or files whose names only differ -# in case and if your file system supports case sensitive file names. Windows -# and Mac users are advised to set this option to NO. - -CASE_SENSE_NAMES = YES - -# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen -# will show members with their full class and namespace scopes in the -# documentation. If set to YES the scope will be hidden. - -HIDE_SCOPE_NAMES = NO - -# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen -# will put a list of the files that are included by a file in the documentation -# of that file. - -SHOW_INCLUDE_FILES = YES - -# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] -# is inserted in the documentation for inline members. - -INLINE_INFO = YES - -# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen -# will sort the (detailed) documentation of file and class members -# alphabetically by member name. If set to NO the members will appear in -# declaration order. - -SORT_MEMBER_DOCS = YES - -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the -# brief documentation of file, namespace and class members alphabetically -# by member name. If set to NO (the default) the members will appear in -# declaration order. - -SORT_BRIEF_DOCS = NO - -# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the -# hierarchy of group names into alphabetical order. If set to NO (the default) -# the group names will appear in their defined order. - -SORT_GROUP_NAMES = NO - -# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be -# sorted by fully-qualified names, including namespaces. If set to -# NO (the default), the class list will be sorted only by class name, -# not including the namespace part. -# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. -# Note: This option applies only to the class list, not to the -# alphabetical list. - -SORT_BY_SCOPE_NAME = NO - -# The GENERATE_TODOLIST tag can be used to enable (YES) or -# disable (NO) the todo list. This list is created by putting \todo -# commands in the documentation. - -GENERATE_TODOLIST = YES - -# The GENERATE_TESTLIST tag can be used to enable (YES) or -# disable (NO) the test list. This list is created by putting \test -# commands in the documentation. - -GENERATE_TESTLIST = YES - -# The GENERATE_BUGLIST tag can be used to enable (YES) or -# disable (NO) the bug list. This list is created by putting \bug -# commands in the documentation. - -GENERATE_BUGLIST = YES - -# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or -# disable (NO) the deprecated list. This list is created by putting -# \deprecated commands in the documentation. - -GENERATE_DEPRECATEDLIST= YES - -# The ENABLED_SECTIONS tag can be used to enable conditional -# documentation sections, marked by \if sectionname ... \endif. - -ENABLED_SECTIONS = - -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines -# the initial value of a variable or define consists of for it to appear in -# the documentation. If the initializer consists of more lines than specified -# here it will be hidden. Use a value of 0 to hide initializers completely. -# The appearance of the initializer of individual variables and defines in the -# documentation can be controlled using \showinitializer or \hideinitializer -# command in the documentation regardless of this setting. - -MAX_INITIALIZER_LINES = 30 - -# Set the SHOW_USED_FILES tag to NO to disable the list of files generated -# at the bottom of the documentation of classes and structs. If set to YES the -# list will mention the files that were used to generate the documentation. - -SHOW_USED_FILES = YES - -# If the sources in your project are distributed over multiple directories -# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy -# in the documentation. The default is NO. - -SHOW_DIRECTORIES = NO - -# The FILE_VERSION_FILTER tag can be used to specify a program or script that -# doxygen should invoke to get the current version for each file (typically from -# the version control system). Doxygen will invoke the program by executing (via -# popen()) the command , where is the value of -# the FILE_VERSION_FILTER tag, and is the name of an input file -# provided by doxygen. Whatever the program writes to standard output -# is used as the file version. See the manual for examples. - -FILE_VERSION_FILTER = - -#--------------------------------------------------------------------------- -# configuration options related to warning and progress messages -#--------------------------------------------------------------------------- - -# The QUIET tag can be used to turn on/off the messages that are generated -# by doxygen. Possible values are YES and NO. If left blank NO is used. - -QUIET = NO - -# The WARNINGS tag can be used to turn on/off the warning messages that are -# generated by doxygen. Possible values are YES and NO. If left blank -# NO is used. - -WARNINGS = YES - -# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings -# for undocumented members. If EXTRACT_ALL is set to YES then this flag will -# automatically be disabled. - -WARN_IF_UNDOCUMENTED = YES - -# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some -# parameters in a documented function, or documenting parameters that -# don't exist or using markup commands wrongly. - -WARN_IF_DOC_ERROR = YES - -# This WARN_NO_PARAMDOC option can be abled to get warnings for -# functions that are documented, but have no documentation for their parameters -# or return value. If set to NO (the default) doxygen will only warn about -# wrong or incomplete parameter documentation, but not about the absence of -# documentation. - -WARN_NO_PARAMDOC = NO - -# The WARN_FORMAT tag determines the format of the warning messages that -# doxygen can produce. The string should contain the $file, $line, and $text -# tags, which will be replaced by the file and line number from which the -# warning originated and the warning text. Optionally the format may contain -# $version, which will be replaced by the version of the file (if it could -# be obtained via FILE_VERSION_FILTER) - -WARN_FORMAT = "$file:$line: $text" - -# The WARN_LOGFILE tag can be used to specify a file to which warning -# and error messages should be written. If left blank the output is written -# to stderr. - -WARN_LOGFILE = - -#--------------------------------------------------------------------------- -# configuration options related to the input files -#--------------------------------------------------------------------------- - -# The INPUT tag can be used to specify the files and/or directories that contain -# documented source files. You may enter file names like "myfile.cpp" or -# directories like "/usr/src/myproject". Separate the files or directories -# with spaces. - -INPUT = @CMAKE_CURRENT_SOURCE_DIR@/../src - -# This tag can be used to specify the character encoding of the source files -# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is -# also the default input encoding. Doxygen uses libiconv (or the iconv built -# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for -# the list of possible encodings. - -INPUT_ENCODING = UTF-8 - -# If the value of the INPUT tag contains directories, you can use the -# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left -# blank the following patterns are tested: -# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx -# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 - -FILE_PATTERNS = - -# The RECURSIVE tag can be used to turn specify whether or not subdirectories -# should be searched for input files as well. Possible values are YES and NO. -# If left blank NO is used. - -RECURSIVE = NO - -# The EXCLUDE tag can be used to specify files and/or directories that should -# excluded from the INPUT source files. This way you can easily exclude a -# subdirectory from a directory tree whose root is specified with the INPUT tag. - -EXCLUDE = - -# The EXCLUDE_SYMLINKS tag can be used select whether or not files or -# directories that are symbolic links (a Unix filesystem feature) are excluded -# from the input. - -EXCLUDE_SYMLINKS = NO - -# If the value of the INPUT tag contains directories, you can use the -# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude -# certain files from those directories. Note that the wildcards are matched -# against the file with absolute path, so to exclude all test directories -# for example use the pattern */test/* - -EXCLUDE_PATTERNS = - -# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names -# (namespaces, classes, functions, etc.) that should be excluded from the -# output. The symbol name can be a fully qualified name, a word, or if the -# wildcard * is used, a substring. Examples: ANamespace, AClass, -# AClass::ANamespace, ANamespace::*Test - -EXCLUDE_SYMBOLS = - -# The EXAMPLE_PATH tag can be used to specify one or more files or -# directories that contain example code fragments that are included (see -# the \include command). - -EXAMPLE_PATH = - -# If the value of the EXAMPLE_PATH tag contains directories, you can use the -# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left -# blank all files are included. - -EXAMPLE_PATTERNS = - -# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -# searched for input files to be used with the \include or \dontinclude -# commands irrespective of the value of the RECURSIVE tag. -# Possible values are YES and NO. If left blank NO is used. - -EXAMPLE_RECURSIVE = NO - -# The IMAGE_PATH tag can be used to specify one or more files or -# directories that contain image that are included in the documentation (see -# the \image command). - -IMAGE_PATH = - -# The INPUT_FILTER tag can be used to specify a program that doxygen should -# invoke to filter for each input file. Doxygen will invoke the filter program -# by executing (via popen()) the command , where -# is the value of the INPUT_FILTER tag, and is the name of an -# input file. Doxygen will then use the output that the filter program writes -# to standard output. If FILTER_PATTERNS is specified, this tag will be -# ignored. - -INPUT_FILTER = - -# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern -# basis. Doxygen will compare the file name with each pattern and apply the -# filter if there is a match. The filters are a list of the form: -# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further -# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER -# is applied to all files. - -FILTER_PATTERNS = - -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -# INPUT_FILTER) will be used to filter the input files when producing source -# files to browse (i.e. when SOURCE_BROWSER is set to YES). - -FILTER_SOURCE_FILES = NO - -#--------------------------------------------------------------------------- -# configuration options related to source browsing -#--------------------------------------------------------------------------- - -# If the SOURCE_BROWSER tag is set to YES then a list of source files will -# be generated. Documented entities will be cross-referenced with these sources. -# Note: To get rid of all source code in the generated output, make sure also -# VERBATIM_HEADERS is set to NO. - -SOURCE_BROWSER = NO - -# Setting the INLINE_SOURCES tag to YES will include the body -# of functions and classes directly in the documentation. - -INLINE_SOURCES = NO - -# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct -# doxygen to hide any special comment blocks from generated source code -# fragments. Normal C and C++ comments will always remain visible. - -STRIP_CODE_COMMENTS = YES - -# If the REFERENCED_BY_RELATION tag is set to YES (the default) -# then for each documented function all documented -# functions referencing it will be listed. - -REFERENCED_BY_RELATION = NO - -# If the REFERENCES_RELATION tag is set to YES (the default) -# then for each documented function all documented entities -# called/used by that function will be listed. - -REFERENCES_RELATION = NO - -# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) -# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from -# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will -# link to the source code. Otherwise they will link to the documentstion. - -REFERENCES_LINK_SOURCE = YES - -# If the USE_HTAGS tag is set to YES then the references to source code -# will point to the HTML generated by the htags(1) tool instead of doxygen -# built-in source browser. The htags tool is part of GNU's global source -# tagging system (see http://www.gnu.org/software/global/global.html). You -# will need version 4.8.6 or higher. - -USE_HTAGS = NO - -# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen -# will generate a verbatim copy of the header file for each class for -# which an include is specified. Set to NO to disable this. - -VERBATIM_HEADERS = YES - -#--------------------------------------------------------------------------- -# configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- - -# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index -# of all compounds will be generated. Enable this if the project -# contains a lot of classes, structs, unions or interfaces. - -ALPHABETICAL_INDEX = NO - -# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then -# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns -# in which this list will be split (can be a number in the range [1..20]) - -COLS_IN_ALPHA_INDEX = 5 - -# In case all classes in a project start with a common prefix, all -# classes will be put under the same header in the alphabetical index. -# The IGNORE_PREFIX tag can be used to specify one or more prefixes that -# should be ignored while generating the index headers. - -IGNORE_PREFIX = - -#--------------------------------------------------------------------------- -# configuration options related to the HTML output -#--------------------------------------------------------------------------- - -# If the GENERATE_HTML tag is set to YES (the default) Doxygen will -# generate HTML output. - -GENERATE_HTML = YES - -# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `html' will be used as the default path. - -HTML_OUTPUT = html - -# The HTML_FILE_EXTENSION tag can be used to specify the file extension for -# each generated HTML page (for example: .htm,.php,.asp). If it is left blank -# doxygen will generate files with .html extension. - -HTML_FILE_EXTENSION = .html - -# The HTML_HEADER tag can be used to specify a personal HTML header for -# each generated HTML page. If it is left blank doxygen will generate a -# standard header. - -HTML_HEADER = - -# The HTML_FOOTER tag can be used to specify a personal HTML footer for -# each generated HTML page. If it is left blank doxygen will generate a -# standard footer. - -HTML_FOOTER = - -# The HTML_STYLESHEET tag can be used to specify a user-defined cascading -# style sheet that is used by each HTML page. It can be used to -# fine-tune the look of the HTML output. If the tag is left blank doxygen -# will generate a default style sheet. Note that doxygen will try to copy -# the style sheet file to the HTML output directory, so don't put your own -# stylesheet in the HTML output directory as well, or it will be erased! - -HTML_STYLESHEET = - -# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, -# files or namespaces will be aligned in HTML using tables. If set to -# NO a bullet list will be used. - -HTML_ALIGN_MEMBERS = YES - -# If the GENERATE_HTMLHELP tag is set to YES, additional index files -# will be generated that can be used as input for tools like the -# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) -# of the generated HTML documentation. - -GENERATE_HTMLHELP = NO - -# If the GENERATE_DOCSET tag is set to YES, additional index files -# will be generated that can be used as input for Apple's Xcode 3 -# integrated development environment, introduced with OSX 10.5 (Leopard). -# To create a documentation set, doxygen will generate a Makefile in the -# HTML output directory. Running make will produce the docset in that -# directory and running "make install" will install the docset in -# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find -# it at startup. - -GENERATE_DOCSET = NO - -# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the -# feed. A documentation feed provides an umbrella under which multiple -# documentation sets from a single provider (such as a company or product suite) -# can be grouped. - -DOCSET_FEEDNAME = "Doxygen generated docs" - -# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that -# should uniquely identify the documentation set bundle. This should be a -# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen -# will append .docset to the name. - -DOCSET_BUNDLE_ID = org.doxygen.Project - -# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML -# documentation will contain sections that can be hidden and shown after the -# page has loaded. For this to work a browser that supports -# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox -# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). - -HTML_DYNAMIC_SECTIONS = NO - -# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can -# be used to specify the file name of the resulting .chm file. You -# can add a path in front of the file if the result should not be -# written to the html output directory. - -CHM_FILE = - -# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can -# be used to specify the location (absolute path including file name) of -# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run -# the HTML help compiler on the generated index.hhp. - -HHC_LOCATION = - -# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag -# controls if a separate .chi index file is generated (YES) or that -# it should be included in the master .chm file (NO). - -GENERATE_CHI = NO - -# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag -# controls whether a binary table of contents is generated (YES) or a -# normal table of contents (NO) in the .chm file. - -BINARY_TOC = NO - -# The TOC_EXPAND flag can be set to YES to add extra items for group members -# to the contents of the HTML help documentation and to the tree view. - -TOC_EXPAND = NO - -# The DISABLE_INDEX tag can be used to turn on/off the condensed index at -# top of each HTML page. The value NO (the default) enables the index and -# the value YES disables it. - -DISABLE_INDEX = NO - -# This tag can be used to set the number of enum values (range [1..20]) -# that doxygen will group on one line in the generated HTML documentation. - -ENUM_VALUES_PER_LINE = 4 - -# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be -# generated containing a tree-like index structure (just like the one that -# is generated for HTML Help). For this to work a browser that supports -# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, -# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are -# probably better off using the HTML help feature. - -GENERATE_TREEVIEW = NO - -# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be -# used to set the initial width (in pixels) of the frame in which the tree -# is shown. - -TREEVIEW_WIDTH = 250 - -#--------------------------------------------------------------------------- -# configuration options related to the LaTeX output -#--------------------------------------------------------------------------- - -# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will -# generate Latex output. - -GENERATE_LATEX = YES - -# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `latex' will be used as the default path. - -LATEX_OUTPUT = latex - -# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be -# invoked. If left blank `latex' will be used as the default command name. - -LATEX_CMD_NAME = latex - -# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to -# generate index for LaTeX. If left blank `makeindex' will be used as the -# default command name. - -MAKEINDEX_CMD_NAME = makeindex - -# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact -# LaTeX documents. This may be useful for small projects and may help to -# save some trees in general. - -COMPACT_LATEX = NO - -# The PAPER_TYPE tag can be used to set the paper type that is used -# by the printer. Possible values are: a4, a4wide, letter, legal and -# executive. If left blank a4wide will be used. - -PAPER_TYPE = a4wide - -# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX -# packages that should be included in the LaTeX output. - -EXTRA_PACKAGES = - -# The LATEX_HEADER tag can be used to specify a personal LaTeX header for -# the generated latex document. The header should contain everything until -# the first chapter. If it is left blank doxygen will generate a -# standard header. Notice: only use this tag if you know what you are doing! - -LATEX_HEADER = - -# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated -# is prepared for conversion to pdf (using ps2pdf). The pdf file will -# contain links (just like the HTML output) instead of page references -# This makes the output suitable for online browsing using a pdf viewer. - -PDF_HYPERLINKS = YES - -# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of -# plain latex in the generated Makefile. Set this option to YES to get a -# higher quality PDF documentation. - -USE_PDFLATEX = YES - -# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. -# command to the generated LaTeX files. This will instruct LaTeX to keep -# running if errors occur, instead of asking the user for help. -# This option is also used when generating formulas in HTML. - -LATEX_BATCHMODE = NO - -# If LATEX_HIDE_INDICES is set to YES then doxygen will not -# include the index chapters (such as File Index, Compound Index, etc.) -# in the output. - -LATEX_HIDE_INDICES = NO - -#--------------------------------------------------------------------------- -# configuration options related to the RTF output -#--------------------------------------------------------------------------- - -# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output -# The RTF output is optimized for Word 97 and may not look very pretty with -# other RTF readers or editors. - -GENERATE_RTF = NO - -# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `rtf' will be used as the default path. - -RTF_OUTPUT = rtf - -# If the COMPACT_RTF tag is set to YES Doxygen generates more compact -# RTF documents. This may be useful for small projects and may help to -# save some trees in general. - -COMPACT_RTF = NO - -# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated -# will contain hyperlink fields. The RTF file will -# contain links (just like the HTML output) instead of page references. -# This makes the output suitable for online browsing using WORD or other -# programs which support those fields. -# Note: wordpad (write) and others do not support links. - -RTF_HYPERLINKS = NO - -# Load stylesheet definitions from file. Syntax is similar to doxygen's -# config file, i.e. a series of assignments. You only have to provide -# replacements, missing definitions are set to their default value. - -RTF_STYLESHEET_FILE = - -# Set optional variables used in the generation of an rtf document. -# Syntax is similar to doxygen's config file. - -RTF_EXTENSIONS_FILE = - -#--------------------------------------------------------------------------- -# configuration options related to the man page output -#--------------------------------------------------------------------------- - -# If the GENERATE_MAN tag is set to YES (the default) Doxygen will -# generate man pages - -GENERATE_MAN = NO - -# The MAN_OUTPUT tag is used to specify where the man pages will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `man' will be used as the default path. - -MAN_OUTPUT = man - -# The MAN_EXTENSION tag determines the extension that is added to -# the generated man pages (default is the subroutine's section .3) - -MAN_EXTENSION = .3 - -# If the MAN_LINKS tag is set to YES and Doxygen generates man output, -# then it will generate one additional man file for each entity -# documented in the real man page(s). These additional files -# only source the real man page, but without them the man command -# would be unable to find the correct page. The default is NO. - -MAN_LINKS = NO - -#--------------------------------------------------------------------------- -# configuration options related to the XML output -#--------------------------------------------------------------------------- - -# If the GENERATE_XML tag is set to YES Doxygen will -# generate an XML file that captures the structure of -# the code including all documentation. - -GENERATE_XML = NO - -# The XML_OUTPUT tag is used to specify where the XML pages will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `xml' will be used as the default path. - -XML_OUTPUT = xml - -# The XML_SCHEMA tag can be used to specify an XML schema, -# which can be used by a validating XML parser to check the -# syntax of the XML files. - -XML_SCHEMA = - -# The XML_DTD tag can be used to specify an XML DTD, -# which can be used by a validating XML parser to check the -# syntax of the XML files. - -XML_DTD = - -# If the XML_PROGRAMLISTING tag is set to YES Doxygen will -# dump the program listings (including syntax highlighting -# and cross-referencing information) to the XML output. Note that -# enabling this will significantly increase the size of the XML output. - -XML_PROGRAMLISTING = YES - -#--------------------------------------------------------------------------- -# configuration options for the AutoGen Definitions output -#--------------------------------------------------------------------------- - -# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will -# generate an AutoGen Definitions (see autogen.sf.net) file -# that captures the structure of the code including all -# documentation. Note that this feature is still experimental -# and incomplete at the moment. - -GENERATE_AUTOGEN_DEF = NO - -#--------------------------------------------------------------------------- -# configuration options related to the Perl module output -#--------------------------------------------------------------------------- - -# If the GENERATE_PERLMOD tag is set to YES Doxygen will -# generate a Perl module file that captures the structure of -# the code including all documentation. Note that this -# feature is still experimental and incomplete at the -# moment. - -GENERATE_PERLMOD = NO - -# If the PERLMOD_LATEX tag is set to YES Doxygen will generate -# the necessary Makefile rules, Perl scripts and LaTeX code to be able -# to generate PDF and DVI output from the Perl module output. - -PERLMOD_LATEX = NO - -# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be -# nicely formatted so it can be parsed by a human reader. This is useful -# if you want to understand what is going on. On the other hand, if this -# tag is set to NO the size of the Perl module output will be much smaller -# and Perl will parse it just the same. - -PERLMOD_PRETTY = YES - -# The names of the make variables in the generated doxyrules.make file -# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. -# This is useful so different doxyrules.make files included by the same -# Makefile don't overwrite each other's variables. - -PERLMOD_MAKEVAR_PREFIX = - -#--------------------------------------------------------------------------- -# Configuration options related to the preprocessor -#--------------------------------------------------------------------------- - -# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will -# evaluate all C-preprocessor directives found in the sources and include -# files. - -ENABLE_PREPROCESSING = YES - -# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro -# names in the source code. If set to NO (the default) only conditional -# compilation will be performed. Macro expansion can be done in a controlled -# way by setting EXPAND_ONLY_PREDEF to YES. - -MACRO_EXPANSION = NO - -# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES -# then the macro expansion is limited to the macros specified with the -# PREDEFINED and EXPAND_AS_DEFINED tags. - -EXPAND_ONLY_PREDEF = NO - -# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files -# in the INCLUDE_PATH (see below) will be search if a #include is found. - -SEARCH_INCLUDES = YES - -# The INCLUDE_PATH tag can be used to specify one or more directories that -# contain include files that are not input files but should be processed by -# the preprocessor. - -INCLUDE_PATH = - -# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard -# patterns (like *.h and *.hpp) to filter out the header-files in the -# directories. If left blank, the patterns specified with FILE_PATTERNS will -# be used. - -INCLUDE_FILE_PATTERNS = - -# The PREDEFINED tag can be used to specify one or more macro names that -# are defined before the preprocessor is started (similar to the -D option of -# gcc). The argument of the tag is a list of macros of the form: name -# or name=definition (no spaces). If the definition and the = are -# omitted =1 is assumed. To prevent a macro definition from being -# undefined via #undef or recursively expanded use the := operator -# instead of the = operator. - -PREDEFINED = - -# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then -# this tag can be used to specify a list of macro names that should be expanded. -# The macro definition that is found in the sources will be used. -# Use the PREDEFINED tag if you want to use a different macro definition. - -EXPAND_AS_DEFINED = - -# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then -# doxygen's preprocessor will remove all function-like macros that are alone -# on a line, have an all uppercase name, and do not end with a semicolon. Such -# function macros are typically used for boiler-plate code, and will confuse -# the parser if not removed. - -SKIP_FUNCTION_MACROS = YES - -#--------------------------------------------------------------------------- -# Configuration::additions related to external references -#--------------------------------------------------------------------------- - -# The TAGFILES option can be used to specify one or more tagfiles. -# Optionally an initial location of the external documentation -# can be added for each tagfile. The format of a tag file without -# this location is as follows: -# TAGFILES = file1 file2 ... -# Adding location for the tag files is done as follows: -# TAGFILES = file1=loc1 "file2 = loc2" ... -# where "loc1" and "loc2" can be relative or absolute paths or -# URLs. If a location is present for each tag, the installdox tool -# does not have to be run to correct the links. -# Note that each tag file must have a unique name -# (where the name does NOT include the path) -# If a tag file is not located in the directory in which doxygen -# is run, you must also specify the path to the tagfile here. - -TAGFILES = - -# When a file name is specified after GENERATE_TAGFILE, doxygen will create -# a tag file that is based on the input files it reads. - -GENERATE_TAGFILE = - -# If the ALLEXTERNALS tag is set to YES all external classes will be listed -# in the class index. If set to NO only the inherited external classes -# will be listed. - -ALLEXTERNALS = NO - -# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed -# in the modules index. If set to NO, only the current project's groups will -# be listed. - -EXTERNAL_GROUPS = YES - -# The PERL_PATH should be the absolute path and name of the perl script -# interpreter (i.e. the result of `which perl'). - -PERL_PATH = /usr/bin/perl - -#--------------------------------------------------------------------------- -# Configuration options related to the dot tool -#--------------------------------------------------------------------------- - -# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will -# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base -# or super classes. Setting the tag to NO turns the diagrams off. Note that -# this option is superseded by the HAVE_DOT option below. This is only a -# fallback. It is recommended to install and use dot, since it yields more -# powerful graphs. - -CLASS_DIAGRAMS = YES - -# You can define message sequence charts within doxygen comments using the \msc -# command. Doxygen will then run the mscgen tool (see -# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the -# documentation. The MSCGEN_PATH tag allows you to specify the directory where -# the mscgen tool resides. If left empty the tool is assumed to be found in the -# default search path. - -MSCGEN_PATH = - -# If set to YES, the inheritance and collaboration graphs will hide -# inheritance and usage relations if the target is undocumented -# or is not a class. - -HIDE_UNDOC_RELATIONS = YES - -# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is -# available from the path. This tool is part of Graphviz, a graph visualization -# toolkit from AT&T and Lucent Bell Labs. The other options in this section -# have no effect if this option is set to NO (the default) - -HAVE_DOT = @DOXYGEN_DOT_FOUND@ - -# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for each documented class showing the direct and -# indirect inheritance relations. Setting this tag to YES will force the -# the CLASS_DIAGRAMS tag to NO. - -CLASS_GRAPH = YES - -# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for each documented class showing the direct and -# indirect implementation dependencies (inheritance, containment, and -# class references variables) of the class with other documented classes. - -COLLABORATION_GRAPH = YES - -# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for groups, showing the direct groups dependencies - -GROUP_GRAPHS = YES - -# If the UML_LOOK tag is set to YES doxygen will generate inheritance and -# collaboration diagrams in a style similar to the OMG's Unified Modeling -# Language. - -UML_LOOK = NO - -# If set to YES, the inheritance and collaboration graphs will show the -# relations between templates and their instances. - -TEMPLATE_RELATIONS = NO - -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT -# tags are set to YES then doxygen will generate a graph for each documented -# file showing the direct and indirect include dependencies of the file with -# other documented files. - -INCLUDE_GRAPH = YES - -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and -# HAVE_DOT tags are set to YES then doxygen will generate a graph for each -# documented header file showing the documented files that directly or -# indirectly include this file. - -INCLUDED_BY_GRAPH = YES - -# If the CALL_GRAPH and HAVE_DOT options are set to YES then -# doxygen will generate a call dependency graph for every global function -# or class method. Note that enabling this option will significantly increase -# the time of a run. So in most cases it will be better to enable call graphs -# for selected functions only using the \callgraph command. - -CALL_GRAPH = NO - -# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then -# doxygen will generate a caller dependency graph for every global function -# or class method. Note that enabling this option will significantly increase -# the time of a run. So in most cases it will be better to enable caller -# graphs for selected functions only using the \callergraph command. - -CALLER_GRAPH = NO - -# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen -# will graphical hierarchy of all classes instead of a textual one. - -GRAPHICAL_HIERARCHY = YES - -# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES -# then doxygen will show the dependencies a directory has on other directories -# in a graphical way. The dependency relations are determined by the #include -# relations between the files in the directories. - -DIRECTORY_GRAPH = YES - -# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images -# generated by dot. Possible values are png, jpg, or gif -# If left blank png will be used. - -DOT_IMAGE_FORMAT = png - -# The tag DOT_PATH can be used to specify the path where the dot tool can be -# found. If left blank, it is assumed the dot tool can be found in the path. - -DOT_PATH = - -# The DOTFILE_DIRS tag can be used to specify one or more directories that -# contain dot files that are included in the documentation (see the -# \dotfile command). - -DOTFILE_DIRS = - -# The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of -# nodes that will be shown in the graph. If the number of nodes in a graph -# becomes larger than this value, doxygen will truncate the graph, which is -# visualized by representing a node as a red box. Note that doxygen if the -# number of direct children of the root node in a graph is already larger than -# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note -# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. - -DOT_GRAPH_MAX_NODES = 50 - -# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the -# graphs generated by dot. A depth value of 3 means that only nodes reachable -# from the root by following a path via at most 3 edges will be shown. Nodes -# that lay further from the root node will be omitted. Note that setting this -# option to 1 or 2 may greatly reduce the computation time needed for large -# code bases. Also note that the size of a graph can be further restricted by -# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. - -MAX_DOT_GRAPH_DEPTH = 0 - -# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent -# background. This is enabled by default, which results in a transparent -# background. Warning: Depending on the platform used, enabling this option -# may lead to badly anti-aliased labels on the edges of a graph (i.e. they -# become hard to read). - -DOT_TRANSPARENT = YES - -# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output -# files in one run (i.e. multiple -o and -T options on the command line). This -# makes dot run faster, but since only newer versions of dot (>1.8.10) -# support this, this feature is disabled by default. - -DOT_MULTI_TARGETS = NO - -# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will -# generate a legend page explaining the meaning of the various boxes and -# arrows in the dot generated graphs. - -GENERATE_LEGEND = YES - -# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will -# remove the intermediate dot files that are used to generate -# the various graphs. - -DOT_CLEANUP = YES - -#--------------------------------------------------------------------------- -# Configuration::additions related to the search engine -#--------------------------------------------------------------------------- - -# The SEARCHENGINE tag specifies whether or not a search engine should be -# used. If set to NO the values of all tags below this one will be ignored. - -SEARCHENGINE = NO diff --git a/yabause/l10n/CMakeLists.txt b/yabause/l10n/CMakeLists.txt deleted file mode 100644 index c18f927dbf..0000000000 --- a/yabause/l10n/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -project(yabause-l10n) - -set(LANGS de es fr it lt pt pt_BR sv) - -if (UNIX AND NOT APPLE) - foreach(LANG ${LANGS}) - install(FILES "yabause_${LANG}.yts" DESTINATION "share/yabause/yts" RENAME "${LANG}.yts") - endforeach() -elseif (WIN32) - foreach(LANG ${LANGS}) - install(FILES "yabause_${LANG}.yts" DESTINATION "trans" RENAME "${LANG}.yts") - endforeach() -endif () diff --git a/yabause/l10n/Makefile.am b/yabause/l10n/Makefile.am deleted file mode 100644 index 4375084617..0000000000 --- a/yabause/l10n/Makefile.am +++ /dev/null @@ -1,19 +0,0 @@ -LANGS=de es fr it lt pt pt_BR sv - -dist-hook: - @for l in $(LANGS) ; do \ - cp -p "$(srcdir)/$(PACKAGE)_$$l.yts" "$(distdir)/$(PACKAGE)_$$l.yts" ; \ - done - -install-data-hook: - test -z "$(DESTDIR)$(datadir)/$(PACKAGE)/yts" || $(MKDIR_P) "$(DESTDIR)$(datadir)/$(PACKAGE)/yts" - @for l in $(LANGS) ; do \ - echo " $(INSTALL_DATA) $(PACKAGE)_$$l.yts $(DESTDIR)$(datadir)/$(PACKAGE)/yts/$$l.yts" ; \ - $(INSTALL_DATA) "$(srcdir)/$(PACKAGE)_$$l.yts" "$(DESTDIR)$(datadir)/$(PACKAGE)/yts/$$l.yts" ; \ - done - -uninstall-hook: - @for l in $(LANGS) ; do \ - echo " rm -f $(DESTDIR)$(datadir)/$(PACKAGE)/yts/$$l.yts" ; \ - rm -f "$(DESTDIR)$(datadir)/$(PACKAGE)/yts/$$l.yts" ; \ - done diff --git a/yabause/l10n/yabause_de.yts b/yabause/l10n/yabause_de.yts deleted file mode 100644 index c75de6a581..0000000000 --- a/yabause/l10n/yabause_de.yts +++ /dev/null @@ -1,195 +0,0 @@ -%1/%2 blocks free|%1/%2 blöcke frei -%1 Images (*.%2)|Bilder %1 (*.%2) -503/512 blocks free|503/512 blöcke frei -510/512 blocks free|510/512 blöcke frei -About...|Über... -&About...|&Ü Über... -About|Über -&Action Replay|&Action Replay -Action Replay Code :|Action Replay Code : -Add Action Replay Code|Action Replay Code zufügen -Add Codes...|Codes zufügen... -Add Raw Memory Code|Raw Memory Code zufügen -Address :|Adresse : -Advanced|Sonstiges -| -Are you sure you want to delete '%1' ?|Sind Sie sicher, dass Sie '%1' löschen möchten ? -Are you sure you want to format '%1' ?|Sind Sie sicher, dass Sie '%1' formatieren möchten ? -Backup Manager|Backup Manager -Backup Manager...|Backup Manager... -&Backup Ram Manager|&Backup Ram Manager -Backup Ram Manager|Backup Ram Manager -Bios|Bios -Block Size :|Blockgröße : -&Browse|&Browse -Browse|Suchen -Byte Write|Byte schreiben -Cancel|Abbrechen -Cannot initialize|Initialisierung fehlgeschlagen -&Capture Screen|&Capture Screen -Cart/Memory|Cartridge/Speicher -Cartridge|Cartridge -CD Images (*.iso *.cue *.bin)|CD Images (*.iso *.cue *.bin) -Cd-Rom|Cd-Rom -&Cheats|&Cheats -Cheats|Cheats -Cheats File|Cheatdatei -&Cheat List|&Cheat List -Cheats List|Cheatliste -Cheats List...|Cheatliste... -Cheat Type|Cheattyp -Choose a cdrom drive/mount point|CD-Rom Laufwerk/Mount-Punkt auswählen -Choose a cheat file to open|Cheatdatei zum öffnen auswählen -Choose a cheat file to save to|Cheatdatei zum speichern auswählen -Choose a file to save your state|Datei zum speichern des Status auswählen -Choose a location for your screenshot|Speicherort für das Bildschirmfoto auswählen -&Clear|&Leeren -Close|Schliessen -Code|Code -Comment :|Kommentar : -Data Size :|Datengrösse : -_Debug|_Debug -&Debug|&Debug -&Delete|&Löschen -Delete|Löschen -Description|Beschreibung -Description :|Beschreibung : -Device List|Geräteliste -Disabled|Deaktiviert -Down|Runter -Download|Herunterladen -Emu-Compatibility|Emu-Kombatibilität -Emulation|Emulation -End Address:|Adressende -Enable|Aktivieren -Enabled|Aktiviert -English|Englisch -&File|&Datei -File|Datei -File :|File : -File Name :|Dateiname : -File transfer|Dateiübertragung -WARNING: Master Codes are NOT supported.|WARNUNG :Mastercodes werden NICHT unterstützt. -Format|Formatieren -FPS|BPS -Frame Skip/Limiter|Frames überspringen/limitieren -French|Französisch -From|Von -From File|Von Datei -From File...|Von Datei... -&Fullscreen|&Vollbild -Fullscreen|Vollbild -General|Allgemein -German|Deutsch -Hard Reset|Hard Reset -Height|Höhe -_Help|_Hilfe -&Help|&Hilfe -http://www.emu-compatibility.com/yabause/index.php?lang=uk|http://www.emu-compatibility.com/yabause/index.php?lang=de -http://www.monkeystudio.org|http://www.monkeystudio.org -Input|Eingabe -Invalid Address|Ungültige Adresse -Invalid Value|Ungültiger Wert -Italian|Italienisch -Japanese|Japanisch -Language :|Sprache : -&Layer|&Schicht -Layer|Schicht -Left|Links -Left trigger|Linker Trigger -Load as executable|Als ausführbar laden -Load|Laden -&Load From File|&Von Datei laden -Load State|Spielstand laden -Load State As|Spielstand laden als -Log|Protokoll -Long Write|Long schreiben -M68K|M68K -Memory dump|Speicherabzug -Memory Dump|Speicherabzug -Memory Editor|Memory Editor -&Memory Transfer|&Memory Transfer -Memory Transfer|Memory Transfer -Memory|Speicher -Mpeg ROM|Mpeg ROM -MSH2|MSH2 -NBG0|NBG0 -NBG1|NBG1 -NBG2|NBG2 -NBG3|NBG3 -Ok|Ok -&OK|&OK -Open CD Rom|CD-Rom öffnen -Open CD Rom...|CD-Rom öffnen... -Open ISO|ISO öffnen -Open ISO...|ISO öffnen... -&Pause|&Pause -Pause|Pause -&Quit|&Schliessen -Quit|Schliessen -&Raw Memory Address|&Raw Speicheradresse -RBG0|RBG0 -Region|Region -&Reset|&Zurücksetzen -Reset|Zurücksetzen -Resolution|Auflösung -Right|Rechts -Right trigger|Rechter Trigger -R&un|S&tarten -Run|Starten -Save Information|Informationen speichern -Save List|Liste speichern -Save|Speichern -Save State|Status speichern -Save State As|Save State As -Save States|Stati speichern -&Save To File|&In Datei speichern -Screenshot|Bilschirmfoto -SCSP|SCSP -SCU-DSP|SCU-DSP -Select a file to load your state|Wählen Sie die Statusdatei aus -Select your iso/cue/bin file|Wählen Sie Ihre iso/cue/bin-Datei -&Settings...|Einstellungen... -Settings|Einstellungen -SH2 Interpreter|SH2 Interpreter -Sound Core|Sound Kern -Sound|Sound -Spanish|Spanisch -SSH2|SSH2 -Start|Start -Start Address:|Adressanfang -Status|Status -Store|Sichern -To File|in Datei -To File...|in Datei... -toolBar|Werkzeugleiste -Tools|Tools -To|zu -Transfer|Transferieren -Translation|Übersetzung -Unable to add code|Code konnte nicht zugefügt werden -Unable to change description|Beschreibung konnte nicht geändert werden -Unable to open file for loading|Datei konnte nicht geöffnet werden -Unable to open file for saving|Datei konnte nicht geschrieben werden -Unable to remove code|Code konnte nicht entfernt werden -Unknow (%1)|Unbekannt (%1) -Up|Hoch -Upload|Upload -Value :|Wert : -Vdp1|Vdp1 -VDP1|VDP1 -Vdp2|Vdp2 -VDP2|VDP2 -Video Core|Video Kern -Video Driver|Video Treiber -Video Format|Video Format -Video|Video -_View|_Sicht -&View|&Sicht -Waiting Input...|Warte auf EIngaben... -Width|Breite -Word Write|Word schreiben -Yabause Cheat Files (*.yct);;All Files (*)|Yabause Cheat Dateien (*ycf);;Alle Dateien (*) -Yabause Qt Gui
Based on Yabause 0.9.5
http://yabause.org
The Yabause Team
Filipe AZEVEDO|Yabause Qt Gui
Based on Yabause 0.9.5
http://yabause.org
The Yabause Team
Filipe AZEVEDO -Yabause Qt GUI|Qt Grafik-Interface für Yabause -Yabause Save State (*.yss)|Yabause Speicherstände (*.yss) diff --git a/yabause/l10n/yabause_es.yts b/yabause/l10n/yabause_es.yts deleted file mode 100644 index aa10478704..0000000000 --- a/yabause/l10n/yabause_es.yts +++ /dev/null @@ -1,198 +0,0 @@ -%1/%2 blocks free|%1/%2 bloques libres -%1 Images (*.%2)|%1 Imágenes (*.%2) -503/512 blocks free|503/512 bloques libres -510/512 blocks free|510/512 bloques libres -About...|Acerca de... -&About...|&Acerca de... -About|Acerca de -&Action Replay|&Action Replay -Action Replay Code :|Código de Action Replay -Add Action Replay Code|Añadir Código de Action Replay -Add Codes...|Añadir Códigos... -Add Raw Memory Code|Añadir código dirección de memoria -Address :|Dirección : -Advanced|Avanzado -| -Are you sure you want to delete '%1' ?|¿Estás seguro de borrar '%1' ? -Are you sure you want to format '%1' ?|¿Estás seguro de formatear '%1' ? -Backup Manager|Gestor de memoria de backup -Backup Manager...|Gestor de memoria de backup... -&Backup Ram Manager|Gestor de RAM de &backup -Backup Ram Manager|Gestor de RAM de backup -Bios|Bios -Block Size :|Tamaño de bloque: -&Browse|&Examinar -Browse|Examinar -Byte Write|Escritura de byte -Cancel|Cancelar -Cannot initialize|Imposible iniciar -&Capture Screen|&Capturar pantalla -Cart/Memory|Cartucho/Memoria -Cartridge|Cartucho -CD Images (*.iso *.cue *.bin)|Imágenes de CD (*.iso *.cue *.bin) -Cd-Rom|Cd-Rom -&Cheats|&Trucos -Cheats|Trucos -Cheats File|Archivo de trucos -&Cheat List|Listado de &Trucos -Cheats List|Lista de trucos -Cheats List...|Lista de trucos... -Cheat Type|Tipo de truco -Choose a cdrom drive/mount point|Selecciona una unidad de cdrom/punto de montaje -Choose a cheat file to open|Selecciona un archivo de trucos para abrir -Choose a cheat file to save to|Selecciona el archivo de trucos para guardar -Choose a file to save your state|Selecciona un archivo para guardar tu estado -Choose a location for your screenshot|Selecciona ubicación para tu captura -&Clear|&Limpiar -Close|Cerrar -Code|Código -Comment :|Comentario : -Data Size :|Tamaño de datos : -_Debug|_Debug -&Debug|&Debug -&Delete|&Borrar -Delete|Borrar -Description|Descripción -Description :|Descripción : -Device List|Lista de Dispositivos -Disabled|Desactivado -Down|Abajo -Download|Descargar -Emu-Compatibility|Compatibilidad del emulador -Emulation|Emulación -End Address:|Dirección final: -Enable|Activar -Enabled|Activado -English|Inglés -&File|&Archivo -File|Archivo -File :|Archivo: -File Name :|Nombre de archivo : -File transfer|Transferencia de archivo -WARNING: Master Codes are NOT supported.|AVISO: Códigos Maestros NO soportados. -Format|Formato -FPS|FPS -Frame Skip/Limiter|Salto de cuadros/Limitador -French|Francés -From|De -From File|De archivo -From File...|De archivo... -&Fullscreen|&Pantalla completa -Fullscreen|Pantalla completa -General|General -German|Alemán -Hard Reset|Reiniciar en frío -Height|Altura -_Help|_Ayuda -&Help|&Ayuda -http://www.emu-compatibility.com/yabause/index.php?lang=uk|http://www.emu-compatibility.com/yabause/index.php?lang=uk -http://www.monkeystudio.org|http://www.monkeystudio.org -Input|Entrada -Invalid Address|Dirección inválida -Invalid Value|Valor inválido -Italian|Italiano -Japanese|Japonés -Language :|Idioma : -&Layer|&Capa -Layer|Capa -Left|Izquierda -Left trigger|Gatillo izquierdo -Load as executable|Cargar como ejecutable -Load|Cargar -&Load From File|&Cargar desde archivo -Load State|Cargar estado -Load State As|Cargar estado como -Log|Log -Long Write|Escritura larga -M68K|M68K -Memory dump|Volcado de memoria -Memory Dump|Volcado de Memoria -Memory Editor|Editor de memoria -&Memory Transfer|Transferir &memoria -Memory Transfer|Transferir memoria -Memory|Memoria -Mpeg ROM|ROM Mpeg -Mouse|Ratón -MSH2|MSH2 -NBG0|NBG0 -NBG1|NBG1 -NBG2|NBG2 -NBG3|NBG3 -None|Ninguno -Ok|Ok -&OK|&OK -Open CD Rom|Abrir CD Rom -Open CD Rom...|Abrir CD Rom... -Open ISO|Abrir ISO -Open ISO...|Abrir ISO... -Pad|Pad -&Pause|&Pausar -Pause|Pausar -&Quit|&Sair -Quit|Sair -&Raw Memory Address|&Dirección de memoria Raw -RBG0|RBG0 -Region|Región -&Reset|&Resetear -Reset|Resetear -Resolution|Resolución -Right|Derecha -Right trigger|Gatillo derecho -R&un|E&jecutar -Run|Ejecutar -Save Information|Guardar informes -Save List|Lista de salvaguardados -Save|Salvar -Save State|Guardar Estado -Save State As|Guardar estado como -Save States|Guardar estados -&Save To File|&Guardar a archivo -Screenshot|Captura de pantalla -SCSP|SCSP -SCU-DSP|SCU-DSP -Select a file to load your state|Selecciona el archivo para cargar tu estado -Select your iso/cue/bin file|Selecciona tu archivo iso/cue/bin -&Settings...|&Configuración... -Settings|Configuración -SH2 Interpreter|Intérprete SH2 -Sound Core|Núcleo de sonido -Sound|Sonido -Spanish|Español -SSH2|SSH2 -Start|Iniciar -Start Address:|Dirección inicial: -Status|Estado -Store|Almacenar -To File|A archivo -To File...|A archivo... -toolBar|Barra de herramientas -Tools|Herramientas -To|Para -Transfer|Transferencia -Translation|Traducción -Unable to add code|Imposible añadir código -Unable to change description|Imposible cambiar descripción -Unable to open file for loading|Imposible abrir archivo para cargar -Unable to open file for saving|Imposible abrir archivo para guardar -Unable to remove code|Imposible eliminar código -Unknow (%1)|Desconocido (%1) -Up|Arriba -Upload|Subir -Value :|Valor : -Vdp1|Vdp1 -VDP1|VDP1 -Vdp2|Vdp2 -VDP2|VDP2 -Video Core|Núcleo de Vídeo -Video Driver|Driver de Vídeo -Video Format|Formato de Vídeo -Video|Vídeo -_View|_Ver -&View|&Ver -Waiting Input...|Esperando Entrada de Datos... -Width|Ancho -Word Write|Escribir WORD -Yabause Cheat Files (*.yct);;All Files (*)|Archivos de trucos para Yabause (*.yct);;Todos los archivos (*) -Yabause Qt Gui
Based on Yabause 0.9.5
http://yabause.org
The Yabause Team
Filipe AZEVEDO|Interfaz gráfica QT
Basada en Yabause 0.9.5
http://yabause.org
El equipo de Yabause
Filipe AZEVEDO -Yabause Qt GUI|Interfaz gráfica Qt -Yabause Save State (*.yss)|Salvaguardados de Yabause (*.yss) diff --git a/yabause/l10n/yabause_fr.yts b/yabause/l10n/yabause_fr.yts deleted file mode 100644 index 799bd817ed..0000000000 --- a/yabause/l10n/yabause_fr.yts +++ /dev/null @@ -1,276 +0,0 @@ -%1/%2 blocks free|%1/%2 blocs libre -%1 Images (*.%2)|Images %1 (*.%2) -503/512 blocks free|503/512 blocs libre -510/512 blocks free|510/512 blocs libre -About...|A Propos De... -&About...|&A Propos De... -About|A Propos De -&Action Replay|&Action Replay -Action Replay Code :|Code Action Replay : -Add Action Replay Code|Ajouter un Code Action Replay -Add Cheat|Ajouter un Cheat -Add Codes...|Ajouter un Code... -Add Raw Memory Code|Ajouter un Code Mémoire Brut -Address|Adresse -Address :|Adresse : -Advanced|Avancé -Always|Toujours -Asia (NTSC)|Asie (NTSC) -Asia (PAL)|Asie (PAL) -Are you sure you want to delete '%1' ?|Etes vous sûr de vouloir supprimer '%1' ? -Are you sure you want to format '%1' ?|Etes vous sûr de vouloir formater '%1' ? -Auto-detect|Détection Auto -Autostart|Démarrage Automatique -Backup Manager|Gestion des Sauvegardes -&Backup Manager...|&Gestion des Sauvegardes... -Backup Manager...|Gestion des Sauvegardes... -&Backup Ram Manager|&Gestion des Sauvegardes -Backup Ram Manager|Gestion des Sauvegardes -Bios|Bios : -Block Size :|Taille du Bloc : -&Browse|&Parcourir -Browse|Parcourir -Byte Write|Ecrire un Byte -&Cancel|&Annuler -Cancel|Annuler -Cannot initialize|Ne peut pas Initialiser -Cannot initialize Windows SPTI Driver|Ne peut pas initialiser le pilote SPTI -&Capture Screen|&Capture d'Ecran -Cart/Memory|Cartouche/Mémoire -Cartridge|Cartouche : -CD Images (*.iso *.cue *.bin)|Images CD (*.iso *.cue *.bin) -Cd-Rom|CD-Rom : -Central/South America (NTSC)|Amérique du Sud/Centrale (NTSC) -Central/South America (PAL)|Amérique du Sud/Centrale (PAL) -&Cheats|&Cheats -Cheats|Cheats -Cheats File|Fichier Cheat -&Cheat List|Liste de &Cheat -Cheats List|Liste de Cheat -&Cheats List...|Liste de &Cheat... -Cheats List...|Liste de Cheat... -Cheat &Search...|&Rechercher un Cheat... -Cheat Search|Rechercher un Cheat -Cheat Type|Type de Cheat -Choose a cdrom drive/mount point|Choisir un lecteur CD ou un point de montage -Choose a cheat file to open|Choisir un fichier de Cheat à ouvrir -Choose a cheat file to save to|Choisir un fichier de Cheat à enregistrer -Choose a file to save your state|Choisir un fichier où enregistrer l'état -Choose a location for your screenshot|Choisir un nom de fichier pour votre capture d'écran -&Clear|&Effacer -Clear configuration|Vider la Configuration -&Close|&Fermer -Close|Fermer -Code|Code -Comment :|Commentaire : -Compare Type|Type de Comparaison -Data Size|Taille Donnée -Data Size :|Taille des Données : -Data Type|Type Donnée -_Debug|_Débug -&Debug|&Débug -&Delete|&Effacer -Delete|Effacer -Description|Description -Description :|Description : -Device List|Liste des Périphériques -Disabled|Désactivé -Down|Bas -Download|Télécharger -Dummy CD Drive|Lecteur de CD Factice -Dummy Input Interface|Interface Contrôleur Factice -Dummy OSD Interface|Interface OSD Factice -Dummy Sound Interface|Interface Son Factice -Dummy Video Interface|Interface Vidéo Factice -Edit configuration|Editer la Configuration -Emu-Compatibility|Emu-Compatibility -&Emulation|&Emulation -Emulation|Emulation -End Address:|Adresse de Fin : -Enable|Activer -Enable Frame Skip/Limiter|Active le Saut d'Image/Limitateur -Enabled|Activé -English|Anglais -Europe + others (PAL)|Europe + Autres (PAL) -Exact|Identique -&File|&Fichier -File|Fichier -File :|Fichier : -File:|Fichier : -File Name :|Nom du Fichier : -File transfer|Transfert de Fichier -WARNING: Master Codes are NOT supported.|AVERTISSEMENT : Les Codes Maîtres NE SONT PAS supportés. -Format|Formater -FPS|FPS -Frame Skip/Limiter|Saut d'Image/Limitateur -&Frame Skip/Limiter|&Saut d'Image/Limitateur -French|Français -From|A Partir De -From File|A Partir d'un Fichier -From File...|A Partir d'un Fichier... -&Fullscreen|&Plein Ecran -Fullscreen|Plein Ecran -General|Général -German|Allemand -Glut OSD Interface|Interface OSD GLut -Greater then|Plus grand que -Hard Reset|Redémarrage Matériel -Height|Hauteur : -_Help|_Aide -&Help|&Aide -Hide menubar|Cacher la Barre de Menu -Hide toolbar|Cacher la Barre d'Outils -http://www.emu-compatibility.com/yabause/index.php?lang=uk|http://www.emu-compatibility.com/yabause/index.php?lang=fr -http://www.monkeystudio.org|http://www.monkeystudio.org -Information...|Information... -Input|Contrôleur -Invalid Address|Adresse Invalide -Invalid Value|Valeur Invalide -ISO-File Virtual Drive|Lecteur de Fichier ISO Virtuel -Italian|Italien -Japan (NTSC)|Japon (NTSC) -Japanese|Japonais -Korea (NTSC)|Corée (NTSC) -Language :|Langage : -&Layer|&Couche -Layer|Couche -Left|Gauche -Left trigger|Gâchette Gauche -Less than|Moins que -Linux CD Drive|Lecteur CD Linux -Load as executable|Charger en tant qu'Executable -Load|Charger -&Load From File|&Charger à Partir d'un Fichier -L&oad State|&Charger un Etat -Load State|Charger l'Etat -Load State As|Charger l'Etat sous -&Log|&Journal -Log|Journal -Long Write|Ecrire un Long -M68K|M68K -&Master SH2|&Master SH2 -Master SH2|Master SH2 -Memory dump|Copier la mémoire -Memory Dump|Copier la Mémoire -Memory &Editor|&Editeur de Mémoire -Memory Editor|Editeur de Mémoire -&Memory Transfer|&Transfert de Mémoire -Memory Transfer|Transfert de Mémoire -Memory|Mémoire : -Mpeg ROM|ROM MPEG : -Mouse|Souris -MSH2|MSH2 -NBG0|NBG0 -NBG1|NBG1 -NBG2|NBG2 -NBG3|NBG3 -Never|Jamais -None|Aucun -North America (NTSC)|Amérique du Nord (NTSC) -Ok|Ok -&OK|&OK -On fullscreen|Plein Ecran -Open CD Rom|Ouvrir un CD ROM -Open &CD Rom...|Ouvrir un &CD Rom... -Open CD Rom...|Ouvrir un CD ROM... -Open ISO|Ouvrir un Fichier ISO -Open &ISO...|Ouvrir un &ISO... -Open ISO...|Ouvrir un Fichier ISO... -OpenGL Video Interface|Interface Vidéo OpenGL -OSD Core|Noyau OSD -Pad|Manette -Pad Configuration|Configuration de la Manette -&Pause|&Pause -Pause|Pause -Qt Keyboard Input Interface|Interface Qt du Clavier -&Quit|&Quitter -Quit|Quitter -&Raw Memory Address|Adresse Mémoire &Brut -RBG0|RBG0 -Region|Région : -&Reset|&Redémarrer -Reset|Redémarrer -Resolution|Résolution : -Right|Droite -Right trigger|Gâchette Droite -R&un|L&ancer -Run|Lancer -Save Information|Informations sur la Sauvegarde -Save List|Liste des Sauvegardes -Save|Sauvegarder -S&ave State|S&auvegarder un Etat -Save State|Sauvegarder l'Etat -Save State As|Sauvegarder l'Etat sous -Save States|Sauvegarde d'Etat : -&Save To File|&Sauvegarder Vers le Fichier -Sc&reenshot|Copie d'Ec&ran -Screenshot|Capture d'Ecran -SCSP|SCSP -SCU-DSP|SCU-DSP -SDL Joystick Interface|Interface SDL du Joystick -SDL Sound Interface|Interface SDL du Son -Search|Rechercher -Search/Add Cheats|Rechercher/Ajouter un Cheat -Search Value:|Rechercher une Valeur : -Select a file to load your state|Choisissez un fichier pour charger l'état -Select your iso/cue/bin file|Choisissez votre fichier iso/cue/bin -Set PC to Start Address|Sélection PC vers l'Adresse de Démarrage -&Settings...|&Paramétres... -Settings|Paramétres -SH2 Debugger Interpreter|Interpréteur de Débugeur SH2 -SH2 Dynamic Recompiler|Recompileur Dynamique SH2 -SH2 Interpreter|Interpréteur SH2 : -Show FPS|Afficher les FPS -&Slave SH2|&Slave SH2 -Slave SH2|Slave SH2 -Software Video Interface|Interface Vidéo Logiciel -Sound Core|Noyau Son : -Sound|Son -Spanish|Espagnol -SSH2|SSH2 -Signed|Signé -Software OSD Interface|Interface OSD Logiciel -Start|Démarrer -Start Address:|Adresse de Début : -Status|Statut -Store|Stocker -To File|Vers un Fichier -To File...|Vers un Fichier... -toolBar|Barre d'Outils -&Tools|Ou&tils -Tools|Outils -To|Vers -&Transfer|&Transfert -Transfer|Transfert -Translation|Traduction : -Unable to add code|Ne peut pas ajouter de Code -Unable to change description|Ne peut pas changer la Description -Unable to open file for loading|Ne peut pas ouvrir le fichier à Charger -Unable to open file for saving|Ne peut pas ouvrir le fichier à sauvegarder -Unable to remove code|Ne peut pas enlever le Code -Unknow (%1)|Inconnu (%1) -Unsigned|Non Signé -Up|Haut -Upload|Upload -Value|Valeur -Value :|Valeur : -Vdp1|Vdp1 -VDP1|VDP1 -Vdp2|Vdp2 -VDP2|VDP2 -Video Core|Noyau Vidéo : -Video Driver|Pilote Vidéo : -Video Format|Format Vidéo : -Video|Vidéo -_View|_Visualiser -&View|&Visualiser -View|Visualiser -Waiting Input...|En Attente du Contrôleur -Width|Largeur : -Windows SPTI Driver|Pilote Windows SPTI -Word Write|Ecrire un Word -Yabause Cheat Files (*.yct);;All Files (*)|Fichiers de Cheat Yabause (*ycf);;Tous les Fichiers (*) -Yabause is not initialized, can't manage backup ram.|Yabause n'est pas initialisé. Ne peut pas gérer la sauvegarde. -Yabause Qt Gui
Based on Yabause %1
http://yabause.org
The Yabause Team
Filipe AZEVEDO|Yabause Qt Gui
Basé sur Yabause %1 :
http://yabause.org
L'équipe de Yabause :
Filipe AZEVEDO -Yabause Qt GUI|Interface Graphique Qt pour Yabause -Yabause Save State (*.yss)|Sauvegarde d'État Yabause (*.yss) diff --git a/yabause/l10n/yabause_it.yts b/yabause/l10n/yabause_it.yts deleted file mode 100644 index 89b201c316..0000000000 --- a/yabause/l10n/yabause_it.yts +++ /dev/null @@ -1,198 +0,0 @@ -%1/%2 blocks free|%1%2 blocchi liberi -%1 Images (*.%2)|%1 Immagini (*.%2) -503/512 blocks free|503/512 blocchi liberi -510/512 blocks free|510/512 blocchi liberi -About...|Informazioni... -&About...|&Informazioni... -About|Informazioni -&Action Replay|&Action Replay -Action Replay Code :|Codice Action Replay -Add Action Replay Code|Aggiungi codice Action Replay -Add Codes...|Aggiungi codici.... -Add Raw Memory Code|Aggiungi Raw Memory Code -Address :|Indirizzo: -Advanced|Avanzate -|http://www.monkeystudio.org"> -Are you sure you want to delete '%1' ?|Sicuro di voler cancellare '%1'? -Are you sure you want to format '%1' ?|Sicuro di voler formattare '%1'? -Backup Manager|Gestione Backup -Backup Manager...|Gestione Backup... -&Backup Ram Manager|&Gestione Backup RAM -Backup Ram Manager|Gestione Backup RAM -Bios|BIOS -Block Size :|Dimensioni Blocco: -&Browse|&Sfoglia -Browse|Sfoglia -Byte Write|Scrivi Byte -Cancel|Annulla -Cannot initialize|Impossibile Inizializzare -&Capture Screen|&Cattura Schermo -Cart/Memory|Cart/Memoria -Cartridge|Cartuccia -CD Images (*.iso *.cue *.bin)|Immagine CD (*.iso *.cue *.bin) -Cd-Rom|Cd-Rom -&Cheats|&Cheats -Cheats|Cheats -Cheats File|File Cheats -&Cheat List|Lista &Cheat -Cheats List|Lista Cheat -Cheats List...|Lista Cheat... -Cheat Type|Tipo di Cheat -Choose a cdrom drive/mount point|Choose a cdrom drive/mount point -Choose a cheat file to open|Selezionare un file cheat da aprire -Choose a cheat file to save to|Selezionare un file cheat per salvare -Choose a file to save your state|Selezionare un file per salvare lo stato -Choose a location for your screenshot|Selezionare una directory per gli screenshoot -&Clear|&Svuota -Close|Chiudi -Code|Codice -Comment :|Commento: -Data Size :|Dimensioni Dati: -_Debug|_Debug -&Debug|&Debug -&Delete|&Elimina -Delete|Elimina -Description|Descrizione -Description :|Descrizione: -Device List|Lista periferiche -Disabled|Disattivo -Down|Giù -Download|Download -Emu-Compatibility|Compatibilità Emulatore -Emulation|Emulazione -End Address:|Indirizzo Finale: -Enable|Abilita -Enabled|Abilitato -English|Inglese -&File|&File -File|File -File :|File: -File Name :|Nome file: -File transfer|Trasferimento file -WARNING: Master Codes are NOT supported.|ATTENZIONE: I Codici Master NON sono supportati. -Format|Formato -FPS|FPS -Frame Skip/Limiter|Limitatore frame -French|Francese -From|Da -From File|Dal file -From File...|Dal file... -&Fullscreen|&Schermo Intero -Fullscreen|Schermo Intero -General|Generale -German|Tedesco -Hard Reset|Hard Reset -Height|Altezza -_Help|_Aiuto -&Help|&Aiuto -http://www.emu-compatibility.com/yabause/index.php?lang=uk|http://www.emu-compatibility.com/yabause/index.php?lang=it -http://www.monkeystudio.org|http://www.monkeystudio.org -Input|Input -Invalid Address|Indirizzo non valido -Invalid Value|Valore non valido -Italian|Italiano -Japanese|Giapponese -Language :|Lingua: -&Layer|&Layer -Layer|Layer -Left|Sinistra -Left trigger|Left trigger -Load as executable|Carica come eseguibile -Load|Carica -&Load From File|Carica da&l file -Load State|Carica stato -Load State As|Carica stato come -Log|Log -Long Write|Scrivi Log -M68K|M68K -Memory dump|Dump Memoria -Memory Dump|Dump Memoria -Memory Editor|Editor Memoria -&Memory Transfer|Trasferimento &Memoria -Memory Transfer|Trasferimento Memoria -Memory|Memoria -Mpeg ROM|Mpeg ROM -Mouse|Mouse -MSH2|MSH2 -NBG0|NBG0 -NBG1|NBG1 -NBG2|NBG2 -NBG3|NBG3 -None|Nessuno -Ok|Ok -&OK|&OK -Open CD Rom|Apri CD Rom -Open CD Rom...|Apri CD Rom... -Open ISO|Apri ISO -Open ISO...|Apri ISO... -Pad|Pad -&Pause|&Pausa -Pause|Pausa -&Quit|&Esci -Quit|Esci -&Raw Memory Address|Indirizzo Grezzo Memoria -RBG0|RBG0 -Region|Regione -&Reset|&Reset -Reset|Reset -Resolution|Risoluzione -Right|Destra -Right trigger|Right trigger -R&un|Eseg&ui -Run|Esegui -Save Information|Salva Informazioni -Save List|Salva lista -Save|Salva -Save State|Salva stato -Save State As|Salva stato come -Save States|Salva stati -&Save To File|$Salva su file -Screenshot|Screenshot -SCSP|SCSP -SCU-DSP|SCU-DSP -Select a file to load your state|Selezionare un file per caricare il tuo stato -Select your iso/cue/bin file|Selezionare un file iso/cue/bin -&Settings...|Impo&stazioni... -Settings|Impostazioni -SH2 Interpreter|Interprete SH2 -Sound Core|Sistema Audio -Sound|Suono -Spanish|Spagnolo -SSH2|SSH2 -Start|Inizia -Start Address:|Indirizzo Iniziale: -Status|Stato -Store|Store -To File|Nel file -To File...|Nel file... -toolBar|Barra degli Strumenti -Tools|Strumenti -To|A -Transfer|Trasferimento -Translation|Traduzione -Unable to add code|Impossibile aggiungere il codice -Unable to change description|Impossibile cambiare la descrizione -Unable to open file for loading|Impossibile aprire il file per il caricamento -Unable to open file for saving|Impossibile aprire il file per il salvataggio -Unable to remove code|Impossibile rimuovere il codice -Unknow (%1)|Sconosciuto (%1) -Up|Su -Upload|Upload -Value :|Valore: -Vdp1|Vdp1 -VDP1|VDP1 -Vdp2|Vdp2 -VDP2|VDP2 -Video Core|Sistema Video -Video Driver|Driver Video -Video Format|Formato Video -Video|Video -_View|_Visualizza -&View|&Visualizza -Waiting Input...|In attesa di input... -Width|Larghezza -Word Write|Word Write -Yabause Cheat Files (*.yct);;All Files (*)|Yabause File Cheat (*.yct);;Tutti i file (*) -Yabause Qt Gui
Based on Yabause 0.9.5
http://yabause.org
The Yabause Team
Filipe AZEVEDO|Interfaccia Qt Yabause
Basata su Yabause 0.9.5
http://yabause.org">http://yabause.org
Il Team Yabause
mailto:pasnox@gmail.com">Filipe AZEVEDO -Yabause Qt GUI|Interfaccia Qt Yabause -Yabause Save State (*.yss)|Yabause Salvataggio Stato (*.yss) diff --git a/yabause/l10n/yabause_lt.yts b/yabause/l10n/yabause_lt.yts deleted file mode 100644 index 4679856916..0000000000 --- a/yabause/l10n/yabause_lt.yts +++ /dev/null @@ -1,195 +0,0 @@ -%1/%2 blocks free|%1/%2 blokų laisvų -%1 Images (*.%2)|%1 Images (*.%2) -503/512 blocks free|503/512 blokų laisvų -510/512 blocks free|510/512 blokų laisvų -About...|Apie... -&About...|&Apie... -About|Apie -&Action Replay|&Veiksmo pakartojimas -Action Replay Code :|Veiksmo pakartojimo kodas: -Add Action Replay Code|Pridėti veiksmo pakartojimo kodą: -Add Codes...|Pridėti kodų... -Add Raw Memory Code|Pridėti "Raw" atminties kodą -Address :|Adresas : -Advanced|Papildoma -|http://www.monkeystudio.org"> -Are you sure you want to delete '%1' ?|Ar tu įsitikinęs,kad nori ištrinti '%1' ? -Are you sure you want to format '%1' ?|Ar tu įsitikinęs,kad nori suformatuoti '%1' ? -Backup Manager|Atsarginių failų tvarkyklė -Backup Manager...|Atsarginių failų tvarkyklė... -&Backup Ram Manager|&Atsarginės darbinės atminties tvarkyklė -Backup Ram Manager|Atsarginės darbinės atminties tvarkyklė -Bios|Bios'as -Block Size :|Bloko dydis: -&Browse|&Naršyti -Browse|Browse -Byte Write|Byte Write -Cancel|Atšaukti -Cannot initialize|Negalima pradėti -&Capture Screen|&Nufotografuoti ekraną -Cart/Memory|Darbinė atmintis -Cartridge|Disketė -CD Images (*.iso *.cue *.bin)|CD atvaizdai (*.iso *.cue *.bin) -Cd-Rom|CD-ROM -&Cheats|&Kodai -Cheats|Kodai -Cheats File|Kodų failas -&Cheat List|&Kodų sąrašas -Cheats List|Kodų sąrašas -Cheats List...|Kodų sąrašas... -Cheat Type|Kodų tipas -Choose a cdrom drive/mount point|Pasirink CD-ROM prijungimo tašką -Choose a cheat file to open|Pasirink kodų failą -Choose a cheat file to save to|Pasirink kodų failą išsaugojimui į -Choose a file to save your state|Pasirink failą išsaugoti žaidimui -Choose a location for your screenshot|Pasirink vietą žaidimo ekranvaizdžiui -&Clear|&Išvalyti -Close|Uždaryti -Code|Kodas -Comment :|Komentaras: -Data Size :|Duomenų dydis: -_Debug|_Taisyti klaidas -&Debug|&Klaidų taisymas -&Delete|&Trinti -Delete|Trinti -Description|Aprašymas -Description :|Aprašymas : -Device List|Įrenginių sąrašas -Disabled|Neįgalinta -Down|Žemyn -Download|Atsisiųsti -Emu-Compatibility|Emuliatoriaus suderinamumas -Emulation|Emuliacija -End Address:|End Adress: -Enable|Įgalinti -Enabled|Įgalinta -English|Anglų -&File|&Failas -File|Failas -File :|Failas -File Name :|Failo pavadinimas: -File transfer|Failo perkėlimas -WARNING: Master Codes are NOT supported.|WARNING: Master Codes are NOT supported. -Format|Formatuoti -FPS|KPS -Frame Skip/Limiter|Kadrų praleidimas -French|Prancūzų -From|Iš -From File|Iš failo -From File...|Iš failo... -&Fullscreen|&Pilnas ekranas -Fullscreen|Pilnas ekranas -General|Pagrindiniai -German|Vokiečių -Hard Reset|"Gilus" perkrovimas -Height|Aukštis -_Help|_Pagalba -&Help|&Pagalba -http://www.emu-compatibility.com/yabause/index.php?lang=uk|http://www.emu-compatibility.com/yabause/index.php?lang=uk -http://www.monkeystudio.org|http://www.monkeystudio.org -Input|Įvedimas -Invalid Address|Neteisingas adresas -Invalid Value|Neteisinga vertė -Italian|Italų -Japanese|Japonų -Language :|Kalba : -&Layer|&Sluoksniai -Layer|Sluoksniai -Left|Kairė -Left trigger|Kairysis mygtukas -Load as executable|Įkrauti kaip paleidžiamąjį failą -Load|Įkrauti -&Load From File|&Įkelti iš failo -Load State|Įkelti išsaugotą žaidimą -Load State As|Išsaugoti žaidimą kaip -Log|Log'as -Long Write|Long Write -M68K|M68K -Memory dump|Atminties "išmetimas" -Memory Dump|Atminties "išmetimas" -Memory Editor|Atminties tvarkymas -&Memory Transfer|&Atminties pervedimas -Memory Transfer|Atminties pervedimas -Memory|Atmintis -Mpeg ROM|Mpeg ROM'as -MSH2|MSH2 -NBG0|NBG0 -NBG1|NBG1 -NBG2|NBG2 -NBG3|NBG3 -Ok|Gerai -&OK|&Gerai -Open CD Rom|Atverti CD-ROM'ą -Open CD Rom...|Atverti CD-ROM'ą... -Open ISO|Atverti ISO -Open ISO...|Atverti ISO... -&Pause|&Pauzė -Pause|Pauzė -&Quit|&Išeiti -Quit|Išeiti -&Raw Memory Address|&Priėjimas prie Raw atminties -RBG0|RBG0 -Region|Regionas -&Reset|&Perkrauti -Reset|Perkrauti -Resolution|Raiška -Right|Dešinė -Right trigger|Dešinysis mygtukas -R&un|&Leisti -Run|Leisti -Save Information|Išsaugoti informaciją -Save List|Išsaugojimų sąrašas -Save|Išsaugoti -Save State|Išsaugoti žaidimą -Save State As|Išsaugoti žaidimą kaip -Save States|Žaidimų išsaugojimo failai -&Save To File|&Išsaugoti į failą -Screenshot|Ekrano nuotrauka -SCSP|SCSP -SCU-DSP|SCU-DSP -Select a file to load your state|Pasirink žaidimo išsaugojimo failą įkėlimui -Select your iso/cue/bin file|Pasirink iso/cue/bin failą -&Settings...|&Nuostatos -Settings|Nuostatos -SH2 Interpreter|SH2 Interpretatorius -Sound Core|Garso įranga -Sound|Garsas -Spanish|Ispanų -SSH2|SSH2 -Start|Pradėti -Start Address:|Pradžios adresas: -Status|Statusas -Store|Saugoti -To File|Į failą -To File...|Į failą... -toolBar|Įrankų juosta -Tools|Įrankiai -To|Į -Transfer|Pervedimas -Translation|Vertimas -Unable to add code|Neįmanoma pridėti kodo -Unable to change description|Neįmanoma keisti aprašymo -Unable to open file for loading|Neįmanoma atverti failo įkrovimui -Unable to open file for saving|Neįmanoma atverti failo saugojimui -Unable to remove code|Neįmanoma pašalinti kodo -Unknow (%1)|Nežinoma (%1) -Up|Aukštyn -Upload|Įkrauti -Value :|Vertė: -Vdp1|Vdp1 -VDP1|VDP1 -Vdp2|Vdp2 -VDP2|VDP2 -Video Core|Video įranga -Video Driver|Video tvarkyklė -Video Format|Video formatas -Video|Video -_View|_Žiūrėti -&View|&Žiūrėti -Waiting Input...|Laukiama įvedimo -Width|Plotis -Word Write|Žodžių rašymas -Yabause Cheat Files (*.yct);;All Files (*)|Yabause kodų failai (*.yct);;Visi failai (*) -Yabause Qt Gui
Based on Yabause 0.9.5
http://yabause.org
The Yabause Team
Filipe AZEVEDO|Yabause Qt Gui
Paremtas pagal Yabause 0.9.5
http://yabause.org">http://yabause.org
Yabause komanda
mailto:pasnox@gmail.com">Filipe AZEVEDO -Yabause Qt GUI|Yabause Qt grafinė sąsaja -Yabause Save State (*.yss)|Yabause žaidimo išsaugojimo failas (*.yss) diff --git a/yabause/l10n/yabause_pt.yts b/yabause/l10n/yabause_pt.yts deleted file mode 100644 index 634124c088..0000000000 --- a/yabause/l10n/yabause_pt.yts +++ /dev/null @@ -1,195 +0,0 @@ -%1/%2 blocks free|%1/%2 blocos livres -%1 Images (*.%2)|%1 Images (*.%2) -503/512 blocks free|503/512 blocos livres -510/512 blocks free|510/512 blocos livres -About...|Sobre... -&About...|&Sobre... -About|Sobre -&Action Replay|&Action Replay -Action Replay Code :|Código do Action Replay -Add Action Replay Code|Adicionar Código do Action Replay -Add Codes...|Adicionar Códigos... -Add Raw Memory Code|Adicionar o Endereço Original da Memória -Address :|Endereço : -Advanced|Avançado -| -Are you sure you want to delete '%1' ?|Você tem certeza de que deseja excluir '%1' ? -Are you sure you want to format '%1' ?|Você tem certeza de que deseja formatar '%1' ? -Backup Manager|Gerenciador de Backups -Backup Manager...|Gerenciador de Backups... -&Backup Ram Manager|&Gerenciador da Ram de Backup -Backup Ram Manager|Gerenciador da Ram de Backup -Bios|Bios -Block Size :|Tamanho dos Blocos : -&Browse|&Procurar -Browse|Procurar -Byte Write|Gravar Byte -Cancel|Cancelar -Cannot initialize|Não pode inicializar -&Capture Screen|&Capturar Tela -Cart/Memory|Cartucho/Memória -Cartridge|Cartucho -CD Images (*.iso *.cue *.bin)|Imagens de CD (*.iso *.cue *.bin) -Cd-Rom|CD-Rom -&Cheats|&Trapaças -Cheats|Trapaças -Cheats File|Arquivo de Trapaças -&Cheat List|Lista de &Trapaças -Cheats List|Lista de Trapaças -Cheats List...|Lista de Trapaças -Cheat Type|Tipo de Trapaça -Choose a cdrom drive/mount point|Escolha um leitor de CD ou um ponto de montagem -Choose a cheat file to open|Escolha um arquivo de trapaças para abrir -Choose a cheat file to save to|Escolha um arquivo de trapaças para salvar -Choose a file to save your state|Escolha um arquivo para salvar seu estado -Choose a location for your screenshot|Escolha um local para sua captura de tela -&Clear|&Limpar -Close|Fechar -Code|Código -Comment :|Comentário : -Data Size :|Tamanho dos Dados : -_Debug|_Debug -&Debug|&Debug -&Delete|&Excluir -Delete|Excluir -Description|Descrição -Description :|Descrição : -Device List|Lista de Dispositivos -Disabled|Desativado -Down|Para baixo -Download|Baixar -Emu-Compatibility|Compatibilidade com o Emu -Emulation|Emulação -End Address:|Endereço Final: -Enable|Ativar -Enabled|Ativado -English|Inglês -&File|&Arquivo -File|Arquivo -File :|Arquivo : -File Name :|Nome do Arquivo : -File transfer|Transferência de arquivo -WARNING: Master Codes are NOT supported.|AVISO: Códigos Mestres NÃO são suportados. -Format|Formato -FPS|QPS -Frame Skip/Limiter|Pulo de quadros/Limitador -French|Francês -From|De -From File|Do Arquivo -From File...|Do Arquivo... -&Fullscreen|Tela cheia -Fullscreen|Tela cheia -General|Geral -German|Alemão -Hard Reset|Reiniciar Hardware -Height|Altura -_Help|_Ajuda -&Help|&Ajuda -http://www.emu-compatibility.com/yabause/index.php?lang=uk|http://www.emu-compatibility.com/yabause/index.php?lang=uk -http://www.monkeystudio.org|http://www.monkeystudio.org -Input|Controles -Invalid Address|Endereço Inválido -Invalid Value|Valor Inválido -Italian|Italiano -Japanese|Japonês -Language :|Idioma : -&Layer|&Camada -Layer|Camada -Left|Esquerda -Left trigger|Gatilho esquerdo -Load as executable|Carregar como executável -Load|Carregar -&Load From File|&Carregar Do Arquivo -Load State|Carregar Estado -Load State As|Carregar Estado como -Log|Log -Long Write|Escrita Longa -M68K|M68K -Memory dump|Dump de memória -Memory Dump|Dump de Memória -Memory Editor|Editor de Memória -&Memory Transfer|&Transferência de Memória -Memory Transfer|Transferência de Memória -Memory|Memória -Mpeg ROM|ROM Mpeg -MSH2|MSH2 -NBG0|NBG0 -NBG1|NBG1 -NBG2|NBG2 -NBG3|NBG3 -Ok|Ok -&OK|&OK -Open CD Rom|Abrir CD Rom -Open CD Rom...|Abrir CD Rom... -Open ISO|Abrir ISO -Open ISO...|Abrir ISO... -&Pause|&Pausar -Pause|Pausar -&Quit|&Sair -Quit|Sair -&Raw Memory Address|&Endereço Original da Memória -RBG0|RBG0 -Region|Região -&Reset|&Reiniciar -Reset|Reiniciar -Resolution|Resolução -Right|Direita -Right trigger|Gatilho direito -R&un|Exec&utar -Run|Executar -Save Information|Informações sobre os Saves -Save List|Lista dos Saves -Save|Salvar -Save State|Salvar Estado -Save State As|Salvar Estado Como -Save States|Salvar Estado -&Save To File|&Salvar Para Arquivo -Screenshot|Captura de tela -SCSP|SCSP -SCU-DSP|SCU-DSP -Select a file to load your state|Escolha um arquivo para carregar seu estado -Select your iso/cue/bin file|Escolha seu arquivo iso/cue/bin -&Settings...|Configuraçõe&s... -Settings|Configurações -SH2 Interpreter|Interpretador SH2 -Sound Core|Núcleo de Som -Sound|Som -Spanish|Espanhol -SSH2|SSH2 -Start|Iniciar -Start Address:|Endereço Inicial: -Status|Estado -Store|Armazenar -To File|Para Arquivo -To File...|Para arquivo... -toolBar|Barra de ferramentas -Tools|Ferramentas -To|Para -Transfer|Transferência -Translation|Tradução -Unable to add code|Não foi possível adicionar código -Unable to change description|Não foi possível modificar a descrição -Unable to open file for loading|Não foi possível carregar o arquivo -Unable to open file for saving|Não foi possível salvar o arquivo -Unable to remove code|Não foi possível remover o código -Unknow (%1)|Desconh (%1) -Up|Para cima -Upload|Subir -Value :|Valor : -Vdp1|Vdp1 -VDP1|VDP1 -Vdp2|Vdp2 -VDP2|VDP2 -Video Core|Núcleo de Vídeo -Video Driver|Driver de Vídeo -Video Format|Formato do Vídeo -Video|Vídeo -_View|_Visualizar -&View|&Visualizar -Waiting Input...|Aguardando Entrada de Dados... -Width|Largura -Word Write|Escrita Word -Yabause Cheat Files (*.yct);;All Files (*)|Arquivos de trapaça Yabause (*.yct);;Todos os arquivos (*) -Yabause Qt Gui
Based on Yabause 0.9.5
http://yabause.org
The Yabause Team
Filipe AZEVEDO|Gui Qt do Yabause
Baseada no Yabause 0.9.5
http://yabause.org
O Time do Yabause
Filipe AZEVEDO -Yabause Qt GUI|Interface Gráfica do Usuário em Qt do Yabause -Yabause Save State (*.yss)|Estado Salvo do Yabause diff --git a/yabause/l10n/yabause_pt_BR.yts b/yabause/l10n/yabause_pt_BR.yts deleted file mode 100644 index 2843809790..0000000000 --- a/yabause/l10n/yabause_pt_BR.yts +++ /dev/null @@ -1,274 +0,0 @@ -%1/%2 blocks free|%1/%2 blocos livres -%1 Images (*.%2)|%1 Imagens (*.%2) -503/512 blocks free|503/512 blocos livres -510/512 blocks free|510/512 blocos livres -About...|Sobre... -&About...|&Sobre... -About|Sobre -&Action Replay|&Action Replay -Action Replay Code :|Código do Action Replay -Add Action Replay Code|Adicionar Código do Action Replay -Add Cheat|Adicionar Trapaça -Add Codes...|Adicionar Códigos... -Add Raw Memory Code|Adicionar o Código da Memória Original -Address|Endereço -Address :|Endereço : -Advanced|Avançado -Always|Sempre -Asia (NTSC)|Ásia (NTSC) -Asia (PAL)|Ásia (PAL) -Are you sure you want to delete '%1' ?|Você tem certeza que você quer apagar '%1' ? -Are you sure you want to format '%1' ?|Você tem certeza que você quer formatar '%1' ? -Auto-detect|Auto-detectar -Autostart|Auto-iniciar -Backup Manager|Gerenciador de Backups -&Backup Manager...|&Gerenciador de Backups... -Backup Manager...|Gerenciador de Backups... -&Backup Ram Manager|&Gerenciador da Ram de Backup -Backup Ram Manager|Gerenciador da Ram de Backup -Bios|Bios -Block Size :|Tamanho dos Blocos : -&Browse|&Explorar -Browse|Explorar -Byte Write|Gravação do Byte -&Cancel|&Cancelar -Cancel|Cancelar -Cannot initialize|Não consegue inicializar -&Capture Screen|&Capturar Tela -Cart/Memory|Cartucho/Memória -Cartridge|Cartucho -CD Images (*.iso *.cue *.bin)|Imagens de CD (*.iso *.cue *.bin) -Cd-Rom|Cd-Rom -Central/South America (NTSC)|América Central/do Sul (NTSC) -Central/South America (PAL)|América Central/do Sul (PAL) -&Cheats|&Códigos -Cheats|Trapaças -Cheats File|Arquivo das Trapaças -&Cheat List|Lista de &Trapaças -Cheats List|Lista de Trapaças -&Cheats List...|&Lista de Trapaças... -Cheats List...|Lista de Trapaças... -Cheat &Search...|Busca de &Trapaças... -Cheat Search|Busca de Trapaças -Cheat Type|Tipo de Trapaça -Choose a cdrom drive/mount point|Escolha um drive de cdrom/ponto de montagem -Choose a cheat file to open|Escolha um arquivo de códigos para abrir -Choose a cheat file to save to|Escolha um arquivo de códigos para salvar -Choose a file to save your state|Escolha um arquivo para salvar seu estado -Choose a location for your screenshot|Escolha um local para seu screenshot -&Clear|&Limpar -Clear configuration|Limpar configuração -&Close|&Fechar -Close|Fechar -Code|Código -Comment :|Comentário : -Compare Type|Tipo de Comparação -Data Size|Tamanho dos Dados -Data Size :|Tamanho dos Dados : -Data Type|Tipo de Dados -_Debug|_Debug -&Debug|&Debug -&Delete|&Apagar -Delete|Apagar -Description|Descrição -Description :|Descrição : -Device List|Lista de Dispositivos -Disabled|Desativado -Down|Pra baixo -Download|Baixar -Dummy CD Drive|Imitação do Drive de CD -Dummy Input Interface|Imitação da Interface de Entrada de Dados -Dummy OSD Interface|Imitação da Interface OSD -Dummy Sound Interface|Imitação da Interface de Som -Dummy Video Interface|Imitação da Interface de Vídeo -Edit configuration|Editar configuração -Emu-Compatibility|Compatibilidade com o Emu -&Emulation|&Emulação -Emulation|Emulação -End Address:|Endereço Final: -Enable|Ativar -Enable Frame Skip/Limiter|Ativar o Frame Skip/Limitador -Enabled|Ativado -English|Inglês -Europe + others (PAL)|Europa + outros (PAL) -Exact|Exato -&File|&Arquivo -File|Arquivo -File :|Arquivo : -File:|Arquivo: -File Name :|Nome do Arquivo : -File transfer|Transferência de arquivo -WARNING: Master Codes are NOT supported.|AVISO: Códigos Mestres NÃO são suportados. -Format|Formato -FPS|FPS -Frame Skip/Limiter|Frame Skip/Limitador -&Frame Skip/Limiter|&Frame Skip/Limitador -French|Francês -From|De -From File|Do Arquivo -From File...|Do Arquivo... -&Fullscreen|&Tela cheia -Fullscreen|Tela cheia -General|Geral -German|Alemão -Glut OSD Interface|Interface OSD do Glut -Greater then|Maior do que -Hard Reset|Reset Rígido -Height|Altura -_Help|_Ajuda -&Help|&Ajuda -Hide menubar|Esconder a barra do menu -Hide toolbar|Esconder a barra de ferramentas -http://www.emu-compatibility.com/yabause/index.php?lang=uk|http://www.emu-compatibility.com/yabause/index.php?lang=uk -http://www.monkeystudio.org|http://www.monkeystudio.org -Information...|Informação... -Input|Controles -Invalid Address|Endereço Inválido -Invalid Value|Valor Inválido -ISO-File Virtual Drive|Drive Virtual do Arquivo-ISO -Italian|Italiano -Japan (NTSC)|Japão (NTSC) -Japanese|Japonês -Korea (NTSC)|Coréia (NTSC) -Language :|Idioma : -&Layer|&Camada -Layer|Camada -Left|Esquerda -Left trigger|Gatilho esquerdo -Less than|Menos do que -Linux CD Drive|Drive de CD do Linux -Load as executable|Carregar como executável -Load|Carregar -&Load From File|&Carregar Do Arquivo -L&oad State|C&arregar o State -Load State|Carregar State -Load State As|Carregar State Como -&Log|&Log -Log|Log -Long Write|Gravação Longa -M68K|M68K -&Master SH2|&SH2 Mestre -Master SH2|SH2 Mestre -Memory dump|Dump da memória -Memory Dump|Dump da Memória -Memory &Editor|Editor de &Memória -Memory Editor|Editor de Memória -&Memory Transfer|&Transferência de Memória -Memory Transfer|Transferência de Memória -Memory|Memória -Mpeg ROM|ROM Mpeg -Mouse|Mouse -MSH2|MSH2 -NBG0|NBG0 -NBG1|NBG1 -NBG2|NBG2 -NBG3|NBG3 -Never|Nunca -None|Nenhum -North America (NTSC)|América do Norte (NTSC) -Ok|Ok -&OK|&OK -On fullscreen|Na tela cheia -Open CD Rom|Abrir o CD Rom -Open &CD Rom...|Abrir &CD Rom... -Open CD Rom...|Abrir o CD Rom... -Open ISO|Abrir a ISO -Open &ISO...|Abrir &ISO... -Open ISO...|Abrir a ISO... -OpenGL Video Interface|Interface de Vídeo do OpenGL -OSD Core|Núcleo do OSD -Pad|Pad -&Pause|&Pausar -Pause|Pausar -Qt Keyboard Input Interface|Interface da Entrada de Dados do Teclado do Qt -&Quit|&Sair -Quit|Sair -&Raw Memory Address|&Endereço da Memória Original -RBG0|RBG0 -Region|Região -&Reset|&Resetar -Reset|Resetar -Resolution|Resolução -Right|Direita -Right trigger|Gatilho direito -R&un|E&xecutar -Run|Executar -Save Information|Informações sobre os Saves -Save List|Lista dos Saves -Save|Salvar -S&ave State|S&ave State -Save State|Salvar o State -Save State As|Salvar o State Como -Save States|Salvar os States -&Save To File|&Salvar para o Arquivo -Sc&reenshot|Sc&reenshot -Screenshot|Screenshot -SCSP|SCSP -SCU-DSP|SCU-DSP -SDL Joystick Interface|Interface SDL do Joystick -SDL Sound Interface|Interface de Som SDL -Search|Busca -Search/Add Cheats|Procurar/Adicionar Trapaças -Search Value:|Procurar Valor: -Select a file to load your state|Selecione um arquivo para carregar seu state -Select your iso/cue/bin file|Selecione seu arquivo iso/cue/bin -Set PC to Start Address|Configurar o PC pra Iniciar no Endereço -&Settings...|&Configurações... -Settings|Configurações -SH2 Debugger Interpreter|Interpretador do Debugger SH2 -SH2 Dynamic Recompiler|Recompilador Dinâmico do SH2 -SH2 Interpreter|Interpretador SH2 -Show FPS|Mostrar FPS -&Slave SH2|&SH2 Escravo -Slave SH2|SH2 Escravo -Software Video Interface|Interface de Vídeo do Software -Sound Core|Núcleo do Som -Sound|Som -Spanish|Espanhol -SSH2|SSH2 -Signed|Assinado -Software OSD Interface|Interface OSD do Software -Start|Iniciar -Start Address:|Endereço Inicial: -Status|Status -Store|Armazenar -To File|Para o Arquivo -To File...|Para o Arquivo... -toolBar|Barra de ferramentas -&Tools|&Ferramentas -Tools|Ferramentas -To|Para -&Transfer|&Transferência -Transfer|Transferência -Translation|Tradução -Unable to add code|Incapaz de adicionar o código -Unable to change description|Incapaz de mudar a descrição -Unable to open file for loading|Incapaz de abrir o arquivo para carregar -Unable to open file for saving|Incapaz de abrir o arquivo para salvar -Unable to remove code|Incapaz de remover o código -Unknow (%1)|(%1) Desconhecido -Unsigned|Não Assinado -Up|Para cima -Upload|Upload -Value|Valor -Value :|Valor : -Vdp1|Vdp1 -VDP1|VDP1 -Vdp2|Vdp2 -VDP2|VDP2 -Video Core|Núcleo do Vídeo -Video Driver|Driver do Vídeo -Video Format|Formato do Vídeo -Video|Vídeo -_View|_Visualizar -&View|&Visualizar -View|Visualizar -Waiting Input...|Esperando a Entrada dos Dados... -Width|Largura -Windows SPTI Driver|Drive SPTI do Windows -Word Write|Gravação das Palavras -Yabause Cheat Files (*.yct);;All Files (*)|Arquivos das Trapaças do Yabause (*.yct);;Todos os Arquivos (*) -Yabause is not initialized, can't manage backup ram.|O Yabause não está inicializado, não pode gerenciar a ram do backup. -Yabause Qt Gui
Based on Yabause %1
http://yabause.org
The Yabause Team
Filipe AZEVEDO|Gui Qt do Yabause
Baseada no Yabause %1
http://yabause.org
O Time Yabause
Filipe AZEVEDO -Yabause Qt GUI|GUI Qt do Yabause -Yabause Save State (*.yss)|Save State do Yabause (*.yss) diff --git a/yabause/l10n/yabause_sv.yts b/yabause/l10n/yabause_sv.yts deleted file mode 100644 index f2afe08443..0000000000 --- a/yabause/l10n/yabause_sv.yts +++ /dev/null @@ -1,195 +0,0 @@ -%1/%2 blocks free|%1/%2 block fria -%1 Images (*.%2)|%1 Avbilder (*.%2) -503/512 blocks free|503/512 block fria -510/512 blocks free|510/512 block fria -About...|Om... -&About...|&Om... -About|Om -&Action Replay|&Action Replay -Action Replay Code :|Action Replay-kod -Add Action Replay Code|Lägg till en Action Replay-kod -Add Codes...|Lägg till kod... -Add Raw Memory Code|Lägg till råminneskod -Address :|Adress : -Advanced|Avancerat -| -Are you sure you want to delete '%1' ?|Är du säker på att du vill ta bort '%1' ? -Are you sure you want to format '%1' ?|Är du säker på att du vill formatera '%1' ? -Backup Manager|Backuphanterare -Backup Manager...|Backuphanterare... -&Backup Ram Manager|&Backup Ram Manager -Backup Ram Manager|Backup Ram Manager -Bios|Bios -Block Size :|Blockstorlek -&Browse|&Bläddra -Browse|Bläddra -Byte Write|Byteskrivning -Cancel|Avbryt -Cannot initialize|Kan inte initialisera -&Capture Screen|&Skärmdump -Cart/Memory|Kassett/Minne -Cartridge|Kassett -CD Images (*.iso *.cue *.bin)|CD-avbild (*.iso *.cue *.bin) -Cd-Rom|CD-ROM -&Cheats|&Fusk -Cheats|Fusk -Cheats File|Fuskfil -&Cheat List|&Lista över fusk -Cheats List|Lista över fusk -Cheats List...|Lista över fusk... -Cheat Type|Typ av fusk -Choose a cdrom drive/mount point|Välj en CD-läsare eller en monteringspunkt -Choose a cheat file to open|Välj fuskfil att öppna -Choose a cheat file to save to|Välj fuskfil att spara till -Choose a file to save your state|Välj en fil att spara ditt läge till -Choose a location for your screenshot|Välj plats att spara skärmdump till -&Clear|&Rensa -Close|Stäng -Code|Kod -Comment :|Kommentar : -Data Size :|Datastorlek : -_Debug|_Debug -&Debug|%Debug -&Delete|&Ta bort -Delete|Ta bort -Description|Beskrivning -Description :|Beskrivning : -Device List|Lista över enheter -Disabled|Inaktiverad -Down|Ner -Download|Nerladdning -Emu-Compatibility|Emu-kompatibilitet -Emulation|Emulering -End Address:|Slutadress -Enable|Aktivera -Enabled|Aktiverad -English|Engelska -&File|&Fil -File|Fil -File :|File : -File Name :|Filnamn : -File transfer|Filöverföring -WARNING: Master Codes are NOT supported.|VARNING: Master Codes stöds INTE -Format|Formatera -FPS|FPS -Frame Skip/Limiter|Frame Skip/Limiter -French|Franska -From|Från -From File|Från fil -From File...|Från fil... -&Fullscreen|&Helskärm -Fullscreen|Helskärm -General|Allmänt -German|Tyska -Hard Reset|Hård reset -Height|Höjd -_Help|_Hjälp -&Help|&Hjälp -http://www.emu-compatibility.com/yabause/index.php?lang=uk|http://www.emu-compatibility.com/yabause/index.php?lang=uk -http://www.monkeystudio.org|http://www.monkeystudio.org -Input|Kontroller -Invalid Address|Ogiltig adress -Invalid Value|Ogiltigt värde -Italian|Italienska -Japanese|Japanska -Language :|Språk : -&Layer|&Lager -Layer|Lager -Left|Vänster -Left trigger|Vänster avtryckare -Load as executable|Ladda som exekverbar -Load|Ladda -&Load From File|Ladda från fil -Load State|Ladda läge -Load State As|Ladda läge som -Log|Logg -Long Write|Lång skrivning -M68K|M68K -Memory dump|Minnesdump -Memory Dump|Minnesdump -Memory Editor|Minnesredigerare -&Memory Transfer|&Minnesöverföring -Memory Transfer|Minnesöverföring -Memory|Minne -Mpeg ROM|MPEG ROM -MSH2|MSH2 -NBG0|NBG0 -NBG1|NBG1 -NBG2|NBG2 -NBG3|NBG3 -Ok|OK -&OK|&OK -Open CD Rom|Öppna CD-ROM -Open CD Rom...|Öppna CD-ROM... -Open ISO|Öppna ISO -Open ISO...|Öppna ISO... -&Pause|&Paus -Pause|Paus -&Quit|&Avsluta -Quit|Avsluta -&Raw Memory Address|&Rå minnesadress -RBG0|RBG0 -Region|Region -&Reset|&Reset -Reset|Reset -Resolution|Upplösning -Right|Höger -Right trigger|Höger avtryckare -R&un|&Kör -Run|Kör -Save Information|Spara information -Save List|Spara lista -Save|Spara -Save State|Spara läge -Save State As|Spara läge som -Save States|Spara lägen -&Save To File|&Spara till fil -Screenshot|Skärmdump -SCSP|SCSP -SCU-DSP|SCU-DSP -Select a file to load your state|Välj fil för att ladda ditt läge -Select your iso/cue/bin file|Välj din iso/cue/bin-fil -&Settings...|&Inställningar... -Settings|Inställningar -SH2 Interpreter|SH2-tolkare -Sound Core|Ljudgränssnitt -Sound|Ljud -Spanish|Spanska -SSH2|SSH2 -Start|Start -Start Address:|Startadress -Status|Status -Store|Lagra -To File|Till fil -To File...|Till fil... -toolBar|Verktygsfält -Tools|Verktyg -To|Till -Transfer|Överföring -Translation|Översättning -Unable to add code|Kan inte lägga till kod -Unable to change description|Kan inte ändra beskrivning -Unable to open file for loading|Kan inte öppna fil för att ladda -Unable to open file for saving|Kan inte öppna fil för att spara -Unable to remove code|Kan inte ta bort kod -Unknow (%1)|Okänt (%1) -Up|Upp -Upload|Uppladdning -Value :|Värde : -Vdp1|Vdp1 -VDP1|VDP1 -Vdp2|Vdp2 -VDP2|VDP2 -Video Core|Videogränssnitt -Video Driver|Videodrivrutin -Video Format|Videoformat -Video|Video -_View|_Visa -&View|&Visa -Waiting Input...|Väntar på input... -Width|Bredd -Word Write|Ordskrivning -Yabause Cheat Files (*.yct);;All Files (*)|Yabause fuskfil (*.yct);;Alla filer (*) -Yabause Qt Gui
Based on Yabause 0.9.5
http://yabause.org
The Yabause Team
Filipe AZEVEDO|Yabause Qt GUI
Baserat på Yabause 0.9.5
http://yabause.org
Yabause-teamet
Filipe AZEVEDO -Yabause Qt GUI|Yabause Qt GUI -Yabause Save State (*.yss)|Yabause Sparat Läge (*.yss)