-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.cs
72 lines (63 loc) · 1.86 KB
/
Form1.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace BVtranslateAV
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public int translate(String x)
{
int r=0;
Dictionary<char, int> dic= new Dictionary<char, int>();
String table = "fZodR9XQDSUm21yCkr6zBqiveYah8bt4xsWpHnJE7jL5VG3guMTKNPAwcF";
for (int i=0;i<58;i++)
{
dic.Add(table[i],i);
}
int[] s = {11,10,3,8,4,6};
int xo = 177451812;
long add = 8728348608;
for (int i = 0; i < 6; i++)
{
r+=dic[x[s[i]]]*(int)Math.Pow(58,i);
}
int re = (int)(r - add) ^ xo;
return re;
;
}
private void button1_Click(object sender, EventArgs e)
{
String x=BVtext.Text.ToString();
if (x.Length < 12)
{
x = "BV17x411w7KC";
BVtext.Text = x;
}
int r = translate(x);
String re = r + "";
AVtext.Text = re;
linkLabel2.Text = "https://www.bilibili.com/video/av" + r;
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://space.bilibili.com/40506842/video");
}
private void linkLabel2_MouseClick(object sender, MouseEventArgs e)
{
System.Diagnostics.Process.Start(linkLabel2.Text);
}
private void button2_Click(object sender, EventArgs e)
{
}
}
}