3.4 KiB
Contributing Guide
After forking the repository, run the following commands to get started:
- Ensure you have Node.js and
pnpminstalled. To install pnpm runnpm i -g pnpm. - Install dependencies:
pnpm i - Start the project in development mode:
pnpm start
Project Structure
-
src- main app source code -
src/react- React components - almost all UI is in this folder. Almost every component has its base (reused in app and storybook) andProvider- which is a component that provides context to its children. Consider looking at DeathScreen component to see how it's used. -
src/menus- Old Lit Element GUI. In the process of migration to React. -
prismarine-viewer- Improved version of https://github.com/prismarineJS/prismarine-viewer. Here is everything related to rendering the game world itself (no ui at all). Two most important parts here are: -
prismarine-viewer/viewer/lib/worldrenderer.ts- adding new objects to three.js happens here (sections) -
prismarine-viewer/viewer/lib/models.ts- preparing data for rendering (blocks) - happens in worker: out file -worker.js, building -prismarine-viewer/buildWorker.mjs -
prismarine-viewer/examples/playground.ts- Playground (source of <mcraft.fun/playground.html>) Use this for testing render changes. You can also modify playground code.
How different modules are used:
mineflayer- providerbotvariable and as mineflayer states it is a wrapper for thenode-minecraft-protocolmodule and is used to connect and interact with real Java Minecraft servers. However not all events & properties are exposed and sometimes you have to usebot._client.on('packet_name', data => ...)to handle packets that are not handled via mineflayer API. Also you can use almost any mineflayer plugin.
Making protocol changes
You can get a description of packets for the latest protocol version from https://wiki.vg/Protocol and for previous protocol versions from https://wiki.vg/Protocol_version_numbers (look for Page links that have Protocol in URL).
Also there are src/generatedClientPackets.ts and src/generatedServerPackets.ts files that have definitions of packets that come from the server and the client respectively. These files are generated from the protocol files. Protocol, blocks info and other data go from https://github.com/prismarineJS/minecraft-data repository.
Would be useful to have
- cleanup folder & modules structure, cleanup playground code
A few other notes:
-
Use
nextbranch for development and as base & target branch for pull requests if possible. -
To link dependency locally e.g. flying-squid add this to
pnpm>overridesof root package.json:"flying-squid": "file:../space-squid",(with some modulespnpm linkalso works) -
It's recommended to use debugger for debugging. VSCode has a great debugger built-in. If debugger is slow, you can use
--no-sourcesflag that would allow browser to speedup .map file parsing. -
Some data are cached between restarts. If you see something doesn't work after upgrading dependencies, try to clear the by simply removing the
distfolder. -
The same folder
distis used for both development and production builds, so be careful when deploying the project. -
Use
start-prodscript to start the project in production mode after running thebuildscript to build the project.