GithubHelp home page GithubHelp logo

createclass's Introduction

Hi there ๐Ÿ‘‹, I'm Thomas


๐ŸŽฎ Game Developer | ๐Ÿ’ป Full Stack Developer

I'm a passionate programmer who enjoys facing challenges every now & then.
Some times I like to "Re-invent the wheel", just to learn how things work internally.
In my free time, I go through Open Source repositories to suggest improvements/bugs.

  • ๐Ÿ”ญ Iโ€™m currently working on Game Development Tools
  • ๐Ÿ’ฌ Ask me about Gamedev, Web Design, Competitive Programming
  • โšก Fun fact: I โ™ฅ๏ธ Functional Programming

Technologies I know :

Programming Languages

C

C++

Python

Java

Javascript

Typescript

Haskell

OCaml

Lua

Dart





### Web Development

Tic Tac Toe - Multiplayer

Project Link: https://github.com/be-thomas/tictactoe

Play Online: http://tictactoe.be-thomas.com/

Tic Tac Toe Multiplayer

Mobile UI Mockup

Checkout online: https://mobile-anim.be-thomas.com/

Tic Tac Toe Multiplayer

Hitwicket Website

Checkout online: https://hitwicket.com/

Tic Tac Toe Multiplayer

Infobility Website

Checkout online: https://infobility.ca/

Tic Tac Toe Multiplayer

Game Development

  • Love2D logo Love2D

  • Unity logo Unity

  • Godot logo Godot

  • Panda3D logo Panda3D

  • Solar2D logoSolar2D

  • Pygame logo pygame

Games built by me

Memory Puzzle CLI

Project Link: https://github.com/be-thomas/memory-puzzle

Memory Puzzle CLI

Memory Puzzle GUI

Project Link: https://github.com/be-thomas/memory-puzzle

Memory Puzzle GUI

Other Game Demo Previews

Game Preview 1

Game Preview 2

P.S. : Stay tuned for more!

createclass's People

Contributors

be-thomas avatar jonstoler avatar

Stargazers

 avatar  avatar  avatar

createclass's Issues

Multiple inheritance chain error

Hi.

I am trying to implement multiple inheritance but when I chain more than 2 classes it is cause LOVE to crash with the following error:

Error: [love "boot.lua"]:48: Failed to initialize filesystem: already initialized

I am uncertain if is it a limitation a bug or am I doing something wrong.
This is what I am trying to do:

createClass = require "createClass"

Car = createClass()
function Car:constructor(_wheels)
  self.wheels = _wheels
end

FamilyCar = createClass(Car)
function FamilyCar:constructor(_seats, _wheels)
  self.super.constructor(self, _wheels)
  self.seats = _seats
end

SportCar = createClass(FamilyCar)
function SportCar:constructor(_engine, _seats, _wheels)
  self.super.constructor(self, _seats, _wheels)
  self.engine = _engine
end

peugeot = FamilyCar(5, 4)
ferrari = SportCar("V8", 2, 4) --this is causing the crash

function love.draw()
  love.graphics.print(peugeot.wheels)
end

Here is a project that reproduce the problem:
multiple inheritance.zip

Using
LOVE 11.4
createClass.lua
macOS 12.3.1

I would appreciate any help.

Thank you.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.