Experimental stuff for now. Don't think too much about it. Branched off Rabi-Ribi Autosplitter.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

338 lines
11 KiB

8 years ago
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Net.Sockets;
using System.Runtime.InteropServices;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Timers;
8 years ago
using System.Windows.Forms;
namespace rabiribi_splitter
{
public partial class Form1 : Form
{
private static TcpClient tcpclient;
private static NetworkStream networkStream;
private static System.Timers.Timer timer;
8 years ago
private bool bossbattle = false;
private int lastmusicid;
private Regex titleReg = new Regex(@"ver.*?(\d+\.?\d+.*)$");
private Thread memoryThread;
private int lastmoney;
private bool rabiribiready;
private string rabiribititle;
private string rabiver;
private int veridx;
8 years ago
private List<int> lastbosslist = new List<int>();
private int lastnoah3hp = -1;
8 years ago
public Form1()
{
InitializeComponent();
8 years ago
LinkLabel.Link link = new LinkLabel.Link();
link.LinkData = "https://github.com/copyliu/rabiribi_splitter";
linkLabel1.Links.Add(link);
linkLabel1.LinkClicked += LinkLabel1_LinkClicked;
memoryThread = new Thread(() =>
{
while (true)
{
readmemory();
Thread.Sleep(10);
}
});
memoryThread.IsBackground = true;
memoryThread.Start();
8 years ago
}
8 years ago
private void LinkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
// Send the URL to the operating system.
Process.Start(e.Link.LinkData as string);
}
private void readmemory()
8 years ago
{
8 years ago
var processlist = Process.GetProcessesByName("rabiribi");
if (processlist.Length > 0)
{
8 years ago
Process process = processlist[0];
if (process.MainWindowTitle != rabiribititle)
{
var result = titleReg.Match(process.MainWindowTitle);
if (result.Success)
{
rabiver = result.Groups[1].Value;
veridx = Array.IndexOf(StaticData.VerNames, rabiver);
if (veridx < 0)
{
this.Invoke(new Action(() =>
{
rbStatus.Text = rabiver + " Running (not support)";
this.musicLabel.Text = "N/A";
}));
return;
}
}
else
{
veridx = -1;
this.Invoke(new Action(() =>
{
rbStatus.Text = rabiver + " Running (not support)";
this.musicLabel.Text = "N/A";
}));
return;
}
this.Invoke(new Action(() => rbStatus.Text = rabiver + " Running"));
rabiribititle = process.MainWindowTitle;
}
if (veridx < 0) return;
#region CheckMoney
if (cbComputer.Checked)
{
var newmoney = MemoryHelper.GetMemoryValue<int>(process, StaticData.MoneyAddress[veridx]);
if (newmoney - lastmoney == 17500)
{
sendsplit();
}
lastmoney = newmoney;
}
#endregion
#region Music
int musicaddr = StaticData.MusicAddr[veridx];
int musicid = MemoryHelper.GetMemoryValue<int>(process, musicaddr);
8 years ago
if (musicid >= 0 && musicid < StaticData.MusicNames.Length)
8 years ago
{
if (lastmusicid != musicid)
8 years ago
{
this.Invoke(new Action(() => this.musicLabel.Text = StaticData.MusicNames[musicid]));
var bossmusicflag = StaticData.BossMusics.Contains(musicid);
if (bossmusicflag)
8 years ago
{
if (bossbattle)
{
//直接换boss曲
if (cbBossStart.Checked || cbBossEnd.Checked)
{
sendsplit();
}
this.Invoke(new Action(() => cbBoss.Checked = bossbattle));
lastmusicid = musicid;
return;
}
8 years ago
}
if (!bossbattle)
8 years ago
{
if (bossmusicflag) //boss music start!
{
bossbattle = true;
8 years ago
lastbosslist = new List<int>();
lastnoah3hp = -1;
if (cbBossStart.Checked)
{
sendsplit();
}
}
}
8 years ago
else
{
if (!bossmusicflag) //boss music end!
{
bossbattle = false;
if (cbBossEnd.Checked)
{
sendsplit();
}
}
8 years ago
}
lastmusicid = musicid;
8 years ago
}
}
else
{
this.Invoke(new Action(() => this.musicLabel.Text = "N/A"));
8 years ago
}
#endregion Music
#region SpecialBOSS
8 years ago
8 years ago
if (bossbattle)
{
if (cbBoss1.Checked || cbBoss3.Checked)
{
int Noah3HP = -1;
int mapid = MemoryHelper.GetMemoryValue<int>(process, StaticData.MapAddress[veridx]);
if (mapid >= 0 && mapid < StaticData.MapNames.Length)
{
int ptr = MemoryHelper.GetMemoryValue<int>(process, StaticData.EnenyPtrAddr[veridx]);
List<int> bosses = new List<int>();
for (var i = 0; i < 50; i++)
{
ptr = ptr + StaticData.EnenyEntitySize[veridx];
var emyid = MemoryHelper.GetMemoryValue<int>(process,
ptr + StaticData.EnenyEnitiyIDOffset[veridx], false);
if (StaticData.BossNames.ContainsKey(emyid))
{
bosses.Add(emyid);
if (emyid == 1053)
{
Noah3HP = MemoryHelper.GetMemoryValue<int>(process,
ptr + StaticData.EnenyEnitiyHPOffset[veridx], false);
}
}
}
if (cbBoss1.Checked)
{
foreach (var boss in lastbosslist)
{
if (boss == 1024 || boss == 1043)
{
if (!bosses.Contains(boss)) //despawn
{
sendsplit();
bossbattle = false;
}
}
}
}
if (cbBoss3.Checked)
{
if (bosses.Contains(1053) && Noah3HP < lastnoah3hp && Noah3HP == 1)
{
sendsplit();
bossbattle = false;
}
}
lastbosslist = bosses;
lastnoah3hp = Noah3HP;
}
}
}
#endregion SpecialBOSS
8 years ago
// {
// int ptr = MemoryHelper.GetMemoryValue<int>(process, StaticData.EnenyPtrAddr[veridx]);
// List<int> bosses = new List<int>();
// List<int> HPS = new List<int>();
// for (var i = 0; i < 50; i++)
// {
// ptr += StaticData.EnenyEntitySize[veridx];
//
//
// bosses.Add(MemoryHelper.GetMemoryValue<int>(process,
// ptr + StaticData.EnenyEnitiyIDOffset[veridx], false));
// HPS.Add(MemoryHelper.GetMemoryValue<int>(process,
// ptr + StaticData.EnenyEnitiyHPOffset[veridx], false));
//
//
// this.Invoke(new Action(() =>
// {
// t1.Text = string.Join("\n", bosses);
// t2.Text = string.Join("\n", HPS);
// }));
//
// }
// }
this.Invoke(new Action(() => cbBoss.Checked = bossbattle));
8 years ago
}
else
{
rabiribititle = "";
this.Invoke(new Action(() =>
{
rbStatus.Text = "Not Found";
this.musicLabel.Text = "N/A";
}));
8 years ago
}
}
void sendsplit()
{
if (tcpclient != null && tcpclient.Connected)
{
try
{
var b = Encoding.UTF8.GetBytes("split\r\n");
8 years ago
networkStream.Write(b, 0, b.Length);
8 years ago
}
catch (Exception)
{
disconnect();
}
8 years ago
}
8 years ago
}
void disconnect()
{
tcpclient = null;
connectBtn.Enabled = true;
8 years ago
8 years ago
}
private void button2_Click(object sender, EventArgs e)
{
if (tcpclient != null && tcpclient.Connected) return;
try
{
tcpclient = new TcpClient("127.0.0.1", Convert.ToInt32(portNum.Value));
networkStream = tcpclient.GetStream();
connectBtn.Enabled = false;
}
catch (Exception)
{
tcpclient = null;
networkStream = null;
MessageBox.Show(this, "Connect Failed");
}
}
}
}