内容简介:io-game is a networking prototype using sockets and express to communicate over the network, p5.js for the graphics and input, and electron.js for cross-platform support. The end goal is to create a online RPG syncing over various elements such as NPCs, ch
io-game is a networking prototype using sockets and express to communicate over the network, p5.js for the graphics and input, and electron.js for cross-platform support. The end goal is to create a online RPG syncing over various elements such as NPCs, chat messages and other transforms.
Thanks to electron the game has the potential to run on Windows, Linux, Mac and any web browser.
Due to the limitations of the p5.js graphics library and the complexity of three.js, this project has been discontinued and is now a relic in time. I'm still open to working on it if anyone has any suggestions.
Feel free to contact me on Discord ( valk#3277 ).
Table of Contents
Setup
- Clone
https://github.com/valkyrienyanko/io-game-v2.git
- Download and install
LTS
Node.js - Make sure you have yarn installed
npm i -g yarn
- Run
yarn install
- Start server with
yarn dev:server
- Create a client by opening up
localhost:7777/
in your browser
If you're using nodemon, the server will automatically restart whenever code has been changed. If you ever need to restart the server manually you can do so with the rs
command. Nodemon is used by default when using yarn dev:server
. You can use node .
instead if you prefer.
Building
Use yarn build
to build the electron app.
Debugging
Server
The server will spit out errors directly to the server console. If you're using nodemon, it will restart the server when changes are made to any of the files.
Browser
Viewing the developer console depends on which browser you're using. Here are some hotkeys to take note of.
Chrome | Firefox | Opera |
---|---|---|
CTRL + SHIFT + J |
CTRL + SHIFT + J |
CTRL + SHIFT + I |
Electron
An external debugger will automatically be attached if you run the app through yarn dev:client
. Note that this has not been tested and may not even be the right way to go about debugging electron.
Libraries
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Ajax修炼之道
(美)哥特兰、高伯瑞斯、艾米亚 / 徐锋,胡冰 / 电子工业出版社 / 2006-4 / 29.8
Ajax将静态Web页面转变为充满交互的应用。现在您不需要牺牲Web应用程序部署的简单性,就可以将“胖”客户端应用程序部署到客户端。不过对于很多人业说,Ajax看起来很难。这就是我们撰写本书的原因。作为实践的指导,本书揭开了Ajax神秘的面纱,教您如何以简单的方式使用Ajax。本书内容覆盖了DHTML、Javascript和闻名已久的XmlHttp Request回调技术的基础知识。您将了解如何将......一起来看看 《Ajax修炼之道》 这本书的介绍吧!