如何快速重新定义大量数据

发布于 2024-12-05 21:15:33 字数 205 浏览 0 评论 0原文

我目前正在编写一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深海夜未眠 2024-12-12 21:15:33

标准方法是使用 #define 或 const 为值提供名称。这些将更加有效,因为您在定义这些值后将不会更改它们。

#define ascii_null char(0)
#define ascii_bell char(7)

或者

const char ascii_null = char(0);
const char ascii_bell = char(7);

编写这些行的最简单方法是从 此处 复制表格并粘贴将其导入 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.

#define ascii_null char(0)
#define ascii_bell char(7)

or

const char ascii_null = char(0);
const char ascii_bell = char(7);

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 & ")"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文