找回密码
 立即注册

微信登录

只需一步,快速开始

QQ登录

只需一步,快速开始

搜索
查看: 152|回复: 3

[分享] 写了一个浏览字库的小程序,但是C2-DF库80-BF显示不正确,请帮忙查一下原因!

[复制链接]
  • TA的每日心情
    郁闷
    2024-12-18 14:21
  • 签到天数: 2 天

    连续签到: 1 天

    [LV.1]初来乍到

    1

    主题

    4

    回帖

    34

    积分

    新手上路

    积分
    34
    来自: 中国陕西宝鸡
    发表于 2024-12-14 09:35:03 | 显示全部楼层 |阅读模式 来自: 中国陕西宝鸡
    非业余 - aardio 编程语言 - 非官方问答社区
    限时85折!暑假期间,用aardio培训班充实自己!https://mp.weixin.qq.com/s/c4Z8sZPOiMh_OTG2VPOJmA
    Aardio培训大揭秘,轻松上手打造个人项目!https://mp.weixin.qq.com/s/cr47qhp_Cpz0p57lbbPwug
    aardio风行者第二期培训班https://mp.weixin.qq.com/s/uB6XHUDnGSk0JlWuiBE9AA
    [AAuto] 纯文本查看 复制代码
    import console;
    var q = 0xB3;
    console.setTitle("中文编码字符集");
    for (z = 0x81; 0xFE; 1) {
        if (q > 128 and q < 255) z = q;
        var zz = string.format("%X", z);
        console.writeColorText('\n\t\t\t 中文编码字符集', console.color.yellow, console.color.black);
        console.writeColorText(' (GB18030-2022) ', console.color.red, console.color.black);
        console.writeColorText(zz++'区', console.color.yellow, console.color.black);
        console.log('\n');
    
        console.writeColorText(' '++zz++' ', console.color.yellow, console.color.red);
        for (j = 0x0; 0xF; 1) {
            console.writeColorText(' ', console.color.yellow, console.color.black);
            console.writeColorText('  '++string.format("%0X", j) ++' ', console.color.red, console.color.yellow);
        }
        console.log('\n');
    
        var k1 = "\x"++string.format("%X", z);
        for (i = 0x4; 0xF; 1) {
            console.writeColorText('  '++string.format("%X", i) ++' ', console.color.red, console.color.yellow);
            var kk = '    ';
            for (j = 0x0; 0xF; 1) {
                var k = i * 16 + j;
                var k2 = "\x"++string.format("%X", k);
                kk = kk++' '++string.format("%X", z) ++string.format("%X", k);
                var k3 = k1++k2;
                k3 = string.unhex(k3);
                if ((i == 0x7 or i == 0xF) and j == 0xF) continue;
                console.writeColorText('  ', console.color.yellow, console.color.black);
                if (z >= 0xB0 and z <= 0xF7 and k > 0xA0) console.writeColorText(k3, console.color.white, console.color.black);
                else console.writeColorText(k3, console.color.yellow, console.color.black);
                console.writeColorText(' ');
            }
            console.log();
            console.writeColorText(kk, 5, console.color.black);
            console.log();
        }
        console.writeColorText('\n\t\t当前显示是 ', console.color.blue, console.color.black);
        console.writeColorText(z, console.color.red, console.color.black);
        console.writeColorText(' / ', console.color.blue, console.color.black);
        console.writeColorText(zz, console.color.red, console.color.black);
        console.writeColorText(' 区,', console.color.blue, console.color.black);
        console.setTextAttribute(console.color.blue, console.color.black);
        q = console.getNumber("请输入要显示的区号(129-254):");
        console.clearScreen();
    }
    

    非业余 - aardio 编程语言 - 非官方问答社区
    限时85折!暑假期间,用aardio培训班充实自己!https://mp.weixin.qq.com/s/c4Z8sZPOiMh_OTG2VPOJmA
    Aardio培训大揭秘,轻松上手打造个人项目!https://mp.weixin.qq.com/s/cr47qhp_Cpz0p57lbbPwug
    aardio风行者第二期培训班https://mp.weixin.qq.com/s/uB6XHUDnGSk0JlWuiBE9AA
    回复

    使用道具 举报

  • TA的每日心情
    郁闷
    2024-12-18 14:21
  • 签到天数: 2 天

    连续签到: 1 天

    [LV.1]初来乍到

    1

    主题

    4

    回帖

    34

    积分

    新手上路

    积分
    34
    来自: 中国陕西宝鸡
     楼主| 发表于 2024-12-18 14:23:26 | 显示全部楼层 来自: 中国陕西宝鸡
    //在 aardio 中模拟 Python.exe 运行

    import console;
    import py3;

    var pyCode = /*
    import os

    def hex_to_unicode(hex_string):
        bytes_obj = bytes.fromhex(hex_string)
        return bytes_obj.decode('GBK', errors='ignore')

    q = 0xB3
    for z in range( 0x81, 0xFE ):
        os.system('cls' if os.name == 'nt' else 'clear')
        if (q == 0): exit()
        if (q > 128 and q < 255): z = q
        zz = f'{z:X}'
        print(f'\033[93m\n\t\t\t中文编码字符集\033[91m (GB18030-2022)\033[93m GBK字库')
        print()
       
        print(' \033[33m', zz, end="   ")
        for j in range( 0x0, 0x10 ):
            print(f'{j:X}' , end="    ")
        print()
       
        for i in range( 0x4, 0x10 ):
            print('   \033[33m', f'{i:X}' , sep="", end=" ")
            kk = '   '
            for j in range( 0x0, 0x10 ):
                k = i * 16 + j
                k1 = f'{z:X}' + f'{k:X}'
                k2 = hex_to_unicode(k1)
                kk = kk+' '+ k1
                if ((i == 0x7 or i == 0xF) and j == 0xF):continue
                if (z >= 0xB0 and z <= 0xF7 and k > 0xA0): print('\033[93m', k2, end="  ")
                else: print('\033[97m', k2, end="  ")
            print()
            print('\033[95;2m', kk, '\033[95;0m')
            
        print('\033[94m\n     当前显示的字库是 \033[91m', z, '\033[94m / \033[91m', zz, '\033[94m 区。', sep="", end="")

        try:
            q = int(input( "请输入要显示的区号(129-254),输入 \033[91;5m0\033[0m\033[94m 退出:\033[91m"))
        except ValueError:
            if (z==0xB3): q = 0xBE
            if (z==0xBE): q = 0xCE
            if (z==0xCE): q = 0xB3
        except KeyboardInterrupt:
            q = 0
    */

    console.setTitle("aardio-python");

    py3.exec( pyCode );
    回复

    使用道具 举报

  • TA的每日心情
    郁闷
    2024-12-18 14:21
  • 签到天数: 2 天

    连续签到: 1 天

    [LV.1]初来乍到

    1

    主题

    4

    回帖

    34

    积分

    新手上路

    积分
    34
    来自: 中国陕西宝鸡
     楼主| 发表于 2024-12-18 14:25:12 | 显示全部楼层 来自: 中国陕西宝鸡
    用python重新写的代码在arrdio中模拟运行还是不错的!
    回复

    使用道具 举报

  • TA的每日心情
    开心
    2024-12-19 10:21
  • 签到天数: 3 天

    连续签到: 1 天

    [LV.2]偶尔看看I

    0

    主题

    4

    回帖

    38

    积分

    新手上路

    积分
    38
    来自: 中国广东广州
    发表于 2024-12-19 10:23:25 | 显示全部楼层 来自: 中国广东广州
    回复

    使用道具 举报

    *滑块验证:
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    Archiver|手机版|小黑屋|非业余 - aardio 编程语言 - 非官方问答社区 知道创宇云防御

    GMT+8, 2025-1-18 13:15 , Processed in 0.119040 second(s), 29 queries .

    Powered by Discuz! X3.5

    © 2001-2025 Discuz! Team.

    快速回复 返回顶部 返回列表