上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 627 下一页

2025年10月7日

摘要: #include "CRenderDevice.h" #include "CRenderDevice_Renderware.h" static CRenderDevice* g_pRenderDevice = NULL; static stRenderDeivceSettings g_stDevic 阅读全文
posted @ 2025-10-07 23:39 lydstory 阅读(14) 评论(0) 推荐(0)
摘要: 为什么不用纯虚函数? 有几个可能的设计原因: 保留默认行为 如果有些函数在大多数情况下逻辑类似,可以在基类里写一个默认版本。 子类只在必要时才重写,减少代码重复。 允许实例化基类 如果用纯虚函数,CRenderDevice 就不能实例化。 但有时候作者可能希望基类能作为一个“通用渲染设备”用(即便功 阅读全文
posted @ 2025-10-07 23:36 lydstory 阅读(6) 评论(0) 推荐(0)
摘要: 1. DirectX 是一个“套件” DirectX (Direct eXtension) 不是单一库,而是 微软在 Windows 平台上提供的一整套多媒体 API。 主要模块包括: Direct3D (D3D) → 3D 图形 DirectDraw → 2D 图形(后来合并进 D3D) Dire 阅读全文
posted @ 2025-10-07 23:18 lydstory 阅读(70) 评论(0) 推荐(0)
摘要: 1. DirectX 的历史背景 DirectX 是 90 年代微软为 Windows 游戏/多媒体开发出的 API。 当时 Windows 上最通用的组件化技术就是 COM(Component Object Model)。 DirectX 各子系统(D3D、DirectSound、DirectIn 阅读全文
posted @ 2025-10-07 23:13 lydstory 阅读(30) 评论(0) 推荐(0)
摘要: microsoft/DirectX-Graphics-Samples: This repo contains the DirectX Graphics samples that demonstrate how to build graphics intensive applications on W 阅读全文
posted @ 2025-10-07 17:57 lydstory 阅读(8) 评论(0) 推荐(0)
摘要: https://github.com/CoolManBob/mineserver 项目简介(根据 README) 名称:Mineserver 用途:一个 Minecraft Alpha(早期版 Minecraft) 的 自定义服务器软件,用 C++ 编写,支持 Windows 和 Linux 平台。 阅读全文
posted @ 2025-10-07 00:44 lydstory 阅读(38) 评论(0) 推荐(0)
摘要: Discord 本质上是一个 免费语音、视频、文字社群软件,最早是为游戏玩家设计的,后来扩展成面向各种社区。 主要特点: 语音/视频/文字聊天:实时语音频道、群聊、私聊。 服务器(Server)+频道(Channel) 组织形式:类似一个大群里分很多小频道。 跨平台:支持 Windows、macOS 阅读全文
posted @ 2025-10-07 00:25 lydstory 阅读(205) 评论(0) 推荐(0)

2025年10月5日

摘要: 你说的 “不要模拟登录的,太慢没有效率”,我理解是针对 手机验证码登录 / 签到 这类软件的实现方式里的一种区别: 🔹 1. 什么是“模拟登录”? 模拟登录 = 程序伪装成用户,去模拟浏览器/APP 的点击操作(比如用 Selenium、Appium、爬虫脚本),输入手机号 → 获取验证码 → 提 阅读全文
posted @ 2025-10-05 01:02 lydstory 阅读(24) 评论(0) 推荐(0)

2025年10月4日

摘要: VMProtect 是一种 软件保护工具(Software Protection / Code Obfuscation),主要用于防止程序被破解、逆向或篡改。 开发者可以用它保护 Windows、macOS、Linux 等平台上的可执行程序。 它的核心是 虚拟化保护(Virtualization P 阅读全文
posted @ 2025-10-04 15:48 lydstory 阅读(220) 评论(0) 推荐(0)
摘要: windowsdefender: win+R打开以上命令 阅读全文
posted @ 2025-10-04 13:01 lydstory 阅读(20) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 627 下一页

导航