All public logs
Combined display of all available logs of DDraceNetwork. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Development/zh (Created page with "截至目前,处于一下原因,我们强烈建议使用Linux环境在DDNet中开发: * 大多数DDNet贡献者实际上使用Linux来贡献。 * 更容易的软件包管理,您可以轻松地安装所有需要的库并开始贡献。 * 本文还没有Windows版本,主要关注Linux。")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/33/zh (Created page with "==== 客户端 ====")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/32/zh (Created page with "[https://github.com/ddnet/ddnet/blob/master/src/game/server/entities/character.h CCharacter]: 代表着一个tee 是活着的, 当一个tee产生时它被实例化,当它死亡时它被删除。有关玩家在死亡之间的信息,请参阅[https://github.com/ddnet/ddnet/blob/master/src/game/server/player.h CPlayer].")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/31/zh (Created page with "一些重要实体有:")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/30/zh (Created page with "这些实体由位于此处的游戏世界管理<code>src/game/server/gameworld.h</code>")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/29/zh (Created page with "这个游戏使用自己的[https://en.wikipedia.org/wiki/Entity_component_system 实体组件系统],所有其他实体派生到的主类是<code>CEntity</code>,位于<code>src/game/server/Entity.h</code>中。")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/28/zh (Created page with "==== 服务器 ====")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/27/zh (Created page with "所有玩游戏的代码都在这里,分为客户端和服务器。")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/26/zh (Created page with "=== src/game 目录 ===")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/25/zh (Created page with "游戏引擎就在这里,它处理大多数与游戏无关的东西,比如图形、声音、网络等。")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/24/zh (Created page with "=== src/engine 文件夹 ===")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/23/zh (Created page with "由于DDNet是一个跨平台游戏,需要一个抽象层来简化开发,因此该目录包含许多有用的函数来处理这一问题。")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/22/zh (Created page with "=== src/base 文件夹 ==")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/21/zh (Created page with "现在你可以构建DDNet了,可以开始编辑它了。")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/20/zh (Created page with "== 源代码布局 ==")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/19/zh (Created page with "以下是一些通用信息: *目前,源代码是使用C++17标准编译的,但您会看到代码的许多部分更像C,因为只有大多数新代码使用C++17。 *<code>std::string</code>很少使用,字符数组加<code>system.h</code>方法才是常态。 *大多数输入输出代码、格式化和Print都是使用<code>system.h</code>提供的方法完成的。")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/18/zh (Created page with "== 通用信息 ==")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/17/zh (Created page with "<syntaxhighlight lang="bash"> mkdir build cd build cmake .. make -j$(nproc) </syntaxhighlight>")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/16/zh (Created page with "我们使用CMake来控制编译进程,如果你所有的依赖项都下载了,那么它会很简单,只要输入这些命令(确保你在DDNet文件夹下):")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/15/zh (Created page with "== 编译DDNet ==")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/14/zh (Created page with "控制台输入 <code>sudo pacman -S --needed base-devel cmake curl freetype2 git glew gmock libnotify opusfile python sdl2 sqlite wavpack</code>")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/13/zh (Created page with "对于Arch Linux:")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/12/zh (Created page with "如果您在Linux上,您可以通过阅读DDNet github页面上的自述文件来安装所有需要的依赖项:https://github.com/ddnet/ddnet#dependencies-在linux上--macos")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/11/zh (Created page with "== 下载依赖项 ==")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/10/zh (Created page with "如果您不熟悉git/github,可以在这里学习基本知识: [https://docs.github.com/en/get-started/quickstart/hello-world Hello World - Github]")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/9/zh (Created page with "源代码位于[https://github.com/ddnet/ddnet Github],您可以在不需要帐户的情况下通过Clone获得源代码,但如果您想将更改放入官方源代码,则需要一个账号。")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/8/zh (Created page with "== 获取源代码 ==")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/7/zh (Created page with "如果您的Linux发行版中还没有git,请安装它,例如在大多数基于debian/ubuntu的发行版中,你可以打开终端,输入:<code>sudo-apt-install git</code>。")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/6/zh (Created page with "DDNet的源代码使用[https://git-scm.com/ Git]托管,这是一个版本控制系统,也是与多个开发人员协作的重要工具。")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/5/zh (Created page with "学习C++的一些有用资源: * [https://www.learncpp.com/ learncpp.com] * [https://en.cppreference.com/w/ cppreference.com] * 百度。")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/3/zh (Created page with "截至目前,处于一下原因,我们强烈建议使用Linux环境在DDNet中开发: * 大多数DDNet贡献者实际上使用Linux来贡献。 * 更容易的软件包管理,您可以轻松地安装所有需要的库并开始贡献。 * 本文还没有Windows版本,主要关注Linux。")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/4/zh (Created page with "首先,DDNet是使用 C++ 语言编写的,您需要相当熟悉它,但您也可以了解基础知识并了解更多信息。")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/2/zh (Created page with "== 你的开发环境 ==")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/1/zh (Created page with "本文皆在教你如何对 DDNet '''''开发''''' ,因为这是一款开源游戏(源代码公开),它依赖于一些善良的人们来用他们的放松时间贡献。")
- 06:44, 5 April 2023 棉裤Manki talk contribs created page Translations:Development/Page display title/zh (Created page with "开发")
- 03:13, 5 April 2023 User account 棉裤Manki talk contribs was created