Jump to content




SolaEngine {ALPHA}

game utility

  • You cannot reply to this topic
No replies to this topic

#1 CCTech

  • Members
  • 40 posts
  • LocationGermany

Posted 16 March 2019 - 04:38 PM

SolaEngine

By CCTech


https://imgur.com/a/awcZG8O

(The Player demo)


pastebin run 7T0XNbYe

About
SolaEngine is a small game engine made for the ComputerCraft community to be able to create games a little bit easier
SolaEngine has 3 User-friendly APIS at the moment (There will be more in the future).

It is still in developement that means likely everything you'll see will be changed such as the UI and some functions.

SolaEngine uses a node system for an orderly game developing. SolaEngine uses the Computercraft edit and paint program until it get its internal Script- and Sprite Editors. So far SolaEngine just has the Game-Builder/Compiler and the Component Editor (The main program). It also includes some demo games inside the "Demos" folder

How to use
SolaEngine is a small easy-to-use game engine.

First you will need to install it and run "SolaEngine" inside the "SolaEngine" Folder.

Then this screen will pop up:

http://prntscr.com/myr5vg

Just enter the name of your project, If it already exists then it will be opened. If it doesn't exists then it will be created.
If it's a new game then this screen will appear:

http://prntscr.com/myr6fd

In the Top-Bar there are 4 Buttons: "Add" "Delete" "Build" "Quit" -- They should be self-explaining :P
by clicking on "Add" There a small menu will pop up saying "Node" "Script" and "Sprite". The delete button will open up a dialog field which asks you for the filename you want to delete. Build will open a new Window which asks you for the main script file which will be started when launching your game.

The menu that pops up when you click on "Add" will give you buttons to choose which will create the said file. A node is working like a folder.

The white bar under the topbar is the "Navigation-bar". If you would like to go into a node then type the name of it. If you type in a script or sprite name. Then it will open the paint or edit program.

A Script in SolarEngine has to contain a loop simillar to following in the last lines:
[
-- Functions and Player/Collisions generating. Most Important is a draw function!

while true do  -- Can be another variable that returns true
  player.control(keys.w, keys.a, keys.s, keys.d, true, true, true, true)  -- WASD to move. The player is allowed to move to every direction
  draw()  -- Call the draw function. Can be called as you wish
  player.Movement()  -- Render the player
  -- Something else you wish
end


APIS:
player


collisions


game


There will be more APIS in the future.

To do:
  • Scene API, Multiplayer API + Support and more
  • Major UI fixes
  • Script Editor
  • Scene Editor (maybe)
Any feedbacks and suggestions are apperciated! :D

Edited by OneTech, 16 March 2019 - 04:47 PM.






1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users