OSDN Git Service

戦況にツールチップで味方の装備を表示する
[kancollesniffer/KancolleSniffer.git] / KancolleSniffer / Ascii85.cs
1 // Copyright (C) 2017 Kazuhiro Fujieda <fujieda@users.osdn.me>\r
2 //\r
3 // Licensed under the Apache License, Version 2.0 (the "License");\r
4 // you may not use this file except in compliance with the License.\r
5 // You may obtain a copy of the License at\r
6 //\r
7 //    http://www.apache.org/licenses/LICENSE-2.0\r
8 //\r
9 // Unless required by applicable law or agreed to in writing, software\r
10 // distributed under the License is distributed on an "AS IS" BASIS,\r
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
12 // See the License for the specific language governing permissions and\r
13 // limitations under the License.\r
14 \r
15 using System;\r
16 using System.Text;\r
17 \r
18 namespace KancolleSniffer\r
19 {\r
20     public static class Ascii85\r
21     {\r
22         public static string Encode(byte[] input)\r
23         {\r
24             var count = 0;\r
25             var tuple = 0u;\r
26             var output = new StringBuilder();\r
27             output.Append("<~");\r
28             foreach (byte ch in input)\r
29             {\r
30                 tuple |=  (uint)ch << (24 - 8 * count++);\r
31                 if (count < 4)\r
32                     continue;\r
33                 output.Append(tuple == 0 ? "z" : Encode85(tuple, count));\r
34                 tuple = 0;\r
35                 count = 0;\r
36             }\r
37             if (count > 0)\r
38                 output.Append(Encode85(tuple, count));\r
39             output.Append("~>");\r
40             return output.ToString();\r
41         }\r
42 \r
43         private static string Encode85(uint tuple, int count)\r
44         {\r
45             var buf = new char[5];\r
46             for (var j = 4; j >= 0; j--)\r
47             {\r
48                 buf[j] = (char)(tuple % 85 + '!');\r
49                 tuple /= 85;\r
50             }\r
51             Array.Resize(ref buf, count + 1);\r
52             return new string(buf);\r
53         }\r
54     }\r
55 }