Coder Social home page Coder Social logo

vorb's Issues

Path:isNice()

It returns false with drive letters. Add some option for semi-portable path.

ValueMediator.h Issue

Having an issue with popValues on line 215.
template<typename ...Types>
std::tuple<Types...> popValues(Handle state) {
// Initialise tuple with default values for each type of Parameters.
std::tuple<Types...> values{ ValueMediator::defaultValue()... };
impl::rpopValues(state, &values);

            return std::move(values);
        }

error: implicit instantiation of undefined template

ColorRGB(A) Downcast

Use static_cast(v) or (ui8)v ?

Currently one is used for color3 and the other for color4. Which is the correct one? I believe we ran into an issue with YAML parsing that caused us to use one over the other.

Sound System

Load various formats (mp3, wav, ogg)
Library-Cue format (see XNA)

Event Ownership

Figure out a way to not expose Event::setSender for better-defined behaviors. Also, separate listener lists for different events. A way to swap listener lists and optionally still keep original senders would be nice:


class A {
    A() : 
    myEvent(this) {
        // Empty
    }
    Event<> myEvent;
}
// ...
A a; // Sender for a is &a as expected
A b = a; // The sender for b should not be &a, but &b. Both should have the same listener lists, yet discrete from each other.

Getting rid of copy methods for events may be the way to go?

Cristian

I take issue on the fact I ended up in some freaking stupid relationship with a girl I didn't even really like and I got dragged away from this project for the last couple years.

Fix:
Get best girl instead

Model file loader

Loads file of at least format .obj into an indexed-interleaved-vertex mesh format. It would be preferable to load other types .dae, .fbx and a raw binary type. Should support Pos, Norm, TexCoord, BoneIndex, BoneWeight, and Color attributes for vertices.

Script namespaces

Add function into lua "namespaces" (tables):

Current: BulletObject_addForce()

New: BulletObject.addForce()

Hunter's Yaml-CPP Version Can't Compile In VS2017

We need to keep an eye on yaml-cpp for its next release. When it releases we then need to get Hunter to accept that new version as an option for building with. This will enable compilation on VS2017.

Alternatively, we could heed the issues raised by Cristian in this issue and look for an alternative yaml solution.

Window backbuffer and size

Investigate discrepancies and creation of windows whose backbuffer resolutions do not match their size.

Array Functionality

Add more functionality to ArrayBase to support correct object construction and destruction.

Hiding unused parameters behind VORB_UNUSED.

In order to get compilation to issue fewer warnings without disabling the warnings themselves, we have hidden all unused parameters behind a macro "VORB_UNUSED". This is a temporary measure and we want to review each location VORB_UNUSED is used, and follow the sequence:

  1. Do we want to reimplement/revise the system in which the function resides?
    • If yes, do so or go to step 3.
  2. Is the parameter unused in all compilation and logic paths of the code?
    • If yes, make the parameter anonymous;
    • If no, mark the parameter with VORB_MAYBE_UNUSED;
    • In either case remove the VORB_USED tag.
  3. Find the next VORB_UNUSED-tagged parameter you want to tackle and go to step 1.

Templates issue in "Script.h"

In file included from /home/damir/repos/soa/SoA/MainMenuScriptedUI.cpp:3:

In file included from /home/damir/repos/soa/SoA/SoaEngine.h:20:

In file included from /home/damir/repos/soa/SoA/OptionsController.h:20:

In file included from /home/damir/repos/soa/SoA/Vorb//script/Environment.h:40:

/home/damir/repos/soa/SoA/Vorb/script/Script.h:136:24: error: call to 'fRCall' is ambiguous

                return fRCall<Ret, Args...>(s, (RDelegate<Ret, Args...>*)del);
                       ^~~~~~~~~~~~~~~~~~~~
/home/damir/repos/soa/SoA/Vorb/script/Script.h:153:26: note: in instantiation of function template specialization 'vorb::script::impl::luaDRCall<unsigned long>' requested here

            return impl::luaDRCall<Ret, Args...>;
                         ^
/home/damir/repos/soa/SoA/Vorb//script/Environment.h:149:32: note: in instantiation of function template specialization 'vorb::script::fromRDelegate<unsigned long>' requested here

                ScriptFunc f = fromRDelegate<Ret, Args...>();
                               ^
/home/damir/repos/soa/SoA/MainMenuScriptedUI.cpp:34:10: note: in instantiation of function template specialization 'vorb::script::Environment::addCRDelegate<unsigned long>' requested here

    env->addCRDelegate("size", makeRDelegate(*this, &MainMenuScriptedUI::getNumInputs));
         ^
/home/damir/repos/soa/SoA/Vorb/script/Script.h:112:17: note: candidate function [with Ret = unsigned long]

            i32 fRCall(EnvironmentHandle h, RDelegate<Ret>* del) {
                ^

/home/damir/repos/soa/SoA/Vorb/script/Script.h:117:17: note: candidate function [with Ret = unsigned long, Args = <>]

            i32 fRCall(EnvironmentHandle h, RDelegate<Ret, Args...>* del) {
                ^

Can't resolve this by my own.

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.