如何快速重新定义大量数据
我目前正在编写一个 ASCII 命令提示符游戏引擎,但我不知道如何快速重新定义 256+ ASCII 字符。我无法胜任学习所有 256 个代码的工作。
我本来打算创建一个包含变量的单独文件以节省空间,但老实说,我无法胜任编写此内容的工作:
char ascii_null = char(0);
不同 256 次。
I'm currently writing an ASCII Command Prompt game engine and I am not sure how to redefine 256+ ASCII chars quickly. I am not up to the job of learning all 256 codes.
I was going about having a separate file with the variables to save space, but honestly I'm not upto the job of writing this:
char ascii_null = char(0);
differently 256 times.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
标准方法是使用 #define 或 const 为值提供名称。这些将更加有效,因为您在定义这些值后将不会更改它们。
或者
编写这些行的最简单方法是从 此处 复制表格并粘贴将其导入 Excel。然后使用 Excel 使用公式构建行:
="const char ascii_" & A1& " = char(" & B1 & ")"
The standard methods are to use #define or const to provide a name to values. These will more efficient since you won't be changing the values after you define them.
or
The easiest way to write those lines would be to copy a table from say here and pasting it into Excel. Then use Excel to build the lines with a formula:
="const char ascii_" & A1 & " = char(" & B1 & ")"