Beispiel #1
0
        public string _roomInfo(string room)
        {
            Socket socket0 = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);

            socket0.Connect("api.live.bilibili.com", 80);
            byte[] bs = Encoding.ASCII.GetBytes(@"GET /room/v1/Room/room_init?id=" + room + http);            //
            socket0.Send(bs);
            Byte[] buffer = new byte[4096];
            int    l      = socket0.Receive(buffer, 0, buffer.Length, 0);
            string s      = Encoding.UTF8.GetString(buffer, 0, l);

            //window.write(s.IndexOf("3").ToString());
            try
            {
                jsonReader j = new jsonReader(s.Substring(s.IndexOf("{")));
                if (j.get("code") == "0")
                {
                    _roomId = j.get_o("data").get("room_id");
                    MainWindow.main.write("已识别真实房间号:" + _roomId);
                    string short_id = j.get_o("data").get("short_id");
                    if (short_id != "0")
                    {
                        MainWindow.main.write("房间短号:" + short_id);
                    }

                    //识别up
                    socket0.Send(Encoding.ASCII.GetBytes(@"GET /live_user/v1/UserInfo/get_anchor_in_room?roomid=" + _roomId + http));
                    l     = socket0.Receive(buffer, 0, buffer.Length, 0);
                    s     = Encoding.UTF8.GetString(buffer, 0, l);
                    j     = new jsonReader(s.Substring(s.IndexOf("{")));
                    _uper = j.get_o("data").get_o("info").get("uname");
                    return(_roomId);
                }
                else
                {
                    MainWindow.main.write("解析失败:" + j.get("message"));
                }
            }
            catch (Exception)
            {
                MainWindow.main.write("解析房间地址时发生未知错误!");
            }
            l = socket0.Receive(buffer, 0, buffer.Length, 0);
            s = Encoding.UTF8.GetString(buffer, 0, l);
            return("");
        }
Beispiel #2
0
        public string getTitle()
        {
            Socket socket0 = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);

            socket0.Connect("api.live.bilibili.com", 80);
            byte[] bs = Encoding.ASCII.GetBytes(@"GET /room/v1/Room/get_info?from=room&room_id=" + _roomId + http);                    //
            socket0.Send(bs);
            Byte[] buffer = new byte[20480];
            Thread.Sleep(100);
            int        l = socket0.Receive(buffer, 0, buffer.Length, 0);
            string     s = Encoding.UTF8.GetString(buffer, 0, l);
            jsonReader j = new jsonReader(s.Substring(s.IndexOf("{")));

            j = j.get_o("data");
            s = j.get("title");
            return(s);
            //return _roomTitle;
        }
Beispiel #3
0
        static void Main(string[] args)
        {
            jsonReader jr = new jsonReader();


            string json = @"{
            'Email': '*****@*****.**',
             'Active': true,
             'CreatedDate': '2013-01-20T00:00:00Z',
            }";

            string        json2  = @"{
            'Email': '*****@*****.**',
             'Active': true,
             'CreatedDate': '2013-01-20T00:00:00Z',
            }";
            List <string> mylist = new List <string>(new string[] { json, json2 });


            object responce = jr.ReadJson(mylist);

            Console.WriteLine(responce);
            Console.ReadLine();
        }
 TokenizeInternal(jsonReader, tokens);
Beispiel #5
0
        private void getdanmu(object obj)         //读弹幕循环
        {
            byte[] head = new byte[16];
            int    length;  //数据包总长度
            short  version; //协议版本
            int    action;
            string s = "";
            int    l;

            //ThreadPool.QueueUserWorkItem(keep_link, null);//此线程定时发送获取人数的信息
            while (socket != null && socket.Connected)
            {
                try{
                    l = socket.Receive(head, 0, head.Length, 0);
                    if (l != head.Length)
                    {
                        continue;
                    }
                    length  = NetConverter.toInt(head, 0) - 16;
                    version = NetConverter.toShort(head, 6);
                    action  = NetConverter.toInt(head, 8);
                    l       = socket.Receive(buffer, 0, buffer.Length < length ? buffer.Length : length, 0);
                    if (l == 0)
                    {
                        continue;
                    }
                    if (action == 3)
                    {
                        window.setVNum(NetConverter.toInt(buffer, 0));
                        check_keeper();
                        continue;
                    }
                    else if (action == 5)
                    {
                        if (version == 2)
                        {
                            s = NetConverter.DecompressString(buffer, 2, l - 2);
                        }
                        else
                        {
                            s = Encoding.UTF8.GetString(buffer, 0, l);//取出信息
                        }

                        try
                        {
                            jsonReader js = new jsonReader(s.Substring(s.IndexOf("{")));
                            if (ini.debug)
                            {
                                window.write(s);
                            }
                            if (js.get("cmd").StartsWith("DANMU_MSG"))//弹幕消息
                            {
                                string color = (new jsonReader(js.get("info"))).get_o(0).get(3);
                                switch (color)
                                {
                                case "16777215":
                                    color = "[白]";
                                    break;

                                case "65532":
                                    color = "[青]";
                                    break;

                                case "16738408":
                                    color = "[红]";
                                    break;

                                case "6737151":
                                    color = "[蓝]";
                                    break;

                                case "14893055":
                                    color = "[紫]";
                                    break;

                                case "8322816":
                                    color = "[绿]";
                                    break;

                                case "16772431":
                                    color = "[黄]";
                                    break;

                                case "16746752":
                                    color = "[橙]";
                                    break;

                                default:
                                    color = "[" + color + "]";
                                    break;
                                }
                                jsonReader info     = js.get_o("info");
                                jsonReader user     = info.get_o(2);
                                string     username = user.get(1);
                                int        u_type   = 13;
                                if (username == "星星☆star")
                                {
                                    u_type = 0;
                                }
                                else if (username == window.upname)
                                {
                                    u_type = 11;
                                }
                                else if (user.get(2) == "1")
                                {
                                    u_type = 12;
                                }
                                window.write(username, color + info.get(1), u_type);
                            }
                            else if (js.get("cmd") == "SEND_GIFT")//礼物信息
                            {
                                jsonReader data = js.get_o("data");
                                window.write("礼物提醒", data.get("uname") + " 送了 " + data.get("num") + " 个 " + data.get("giftName"), 2);
                            }

                            /*else if (js.get("cmd") == "WELCOME")//老爷进入房间
                             * {
                             *  window.write("迎宾小姐", "欢迎" + js.get_o("data").get("uname") + "老爷", 2);
                             * }*/
                            else if (js.get("cmd") == "INTERACT_WORD")//进入房间
                            {
                                window.write("迎宾小姐", "欢迎" + js.get_o("data").get("uname"), 2);
                            }
                            else
                            {
                                if (ini.debug)
                                {
                                    window.write(s);
                                }
                            }
                        }
                        catch (Exception)
                        {
                            if (ini.debug)
                            {
                                window.write(s);
                            }
                        }
                    }
                }catch (SocketException) {
                    keeper.Abort();
                    break;
                }
            }
            window.write("连接已断开");
            flag = false;
        }