Beispiel #1
0
        public BkmHeader()
        {
            Comments  = new List <string>();
            Subtitles = new SubtitleList();

            this[HeaderKeys.EMULATIONVERSION] = VersionInfo.GetEmuVersion();
            this[HeaderKeys.PLATFORM]         = Global.Emulator != null ? Global.Emulator.SystemId : string.Empty;
            this[HeaderKeys.GAMENAME]         = string.Empty;
            this[HeaderKeys.AUTHOR]           = string.Empty;
            this[HeaderKeys.RERECORDS]        = "0";
        }
Beispiel #2
0
        public BkmHeader()
        {
            Comments  = new List <string>();
            Subtitles = new SubtitleList();

            this[HeaderKeys.EmulationVersion] = VersionInfo.GetEmuVersion();
            this[HeaderKeys.Platform]         = Global.Emulator != null ? Global.Emulator.SystemId : "";
            this[HeaderKeys.GameName]         = "";
            this[HeaderKeys.Author]           = "";
            this[HeaderKeys.Rerecords]        = "0";
        }
Beispiel #3
0
        public Bk2Movie()
        {
            Subtitles = new SubtitleList();
            Comments  = new List <string>();

            Filename            = string.Empty;
            IsCountingRerecords = true;
            _mode       = Moviemode.Inactive;
            _makeBackup = true;

            Header[HeaderKeys.MOVIEVERSION] = "BizHawk v2.0.0";
        }
Beispiel #4
0
        public Bk2Movie()
        {
            Subtitles = new SubtitleList();
            Comments  = new List <string>();

            Filename            = "";
            IsCountingRerecords = true;
            Mode       = Moviemode.Inactive;
            MakeBackup = true;

            Header[HeaderKeys.MOVIEVERSION] = "BizHawk v2.0.0";

            Log = StringLogUtil.MakeStringLog();
        }
Beispiel #5
0
        public Bk2Movie(string filename = null)
        {
            Subtitles = new SubtitleList();
            Comments  = new List <string>();

            Filename            = filename ?? string.Empty;
            IsCountingRerecords = true;
            if (filename != null)
            {
                Rerecords = 0;
            }
            Mode       = MovieMode.Inactive;
            MakeBackup = true;

            Header[HeaderKeys.MovieVersion] = "BizHawk v2.0.0";

            Log = StringLogUtil.MakeStringLog();
        }