HISE Logo Forum
    • Categories
    • Register
    • Login

    Choc

    Scheduled Pinned Locked Moved C++ Development
    18 Posts 5 Posters 1.4k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Christoph HartC
      Christoph Hart @d.healey
      last edited by

      Alrighty, I think it's ready now for you all to play around:

      HISE features now an embedded web browser that allows you to render parts of your UI using the native browser on the OS. The amount of possiblilities that this is unlocking is completely ridiculous, but I've added a project to the repository that contains two interesting use cases (using the newest fancy 3D rendering powered by the OS browser and implement a custom preset browser using your web design skills):

      Link Preview Image
      hise_tutorial/WebViewTests at master · christophhart/hise_tutorial

      The Tutorial project for HISE. Contribute to christophhart/hise_tutorial development by creating an account on GitHub.

      favicon

      GitHub (github.com)

      The communication between HiseScript and the WebView component is as straightforward as it can get - you can call JS functions from HiseScript and bind callable HiseScript objects to JS callbacks.

      I'll write a reference documentation later, but the examples should provide enough information for you to dig yourself into that rabbit hole.

      It currently works on macOS and Windows, but I don't know how to add the browser handle to the Linux UI, so David has to wait inside while the other kids have fun on the new playground :)

      Casey KolbC 1 Reply Last reply Reply Quote 5
      • Casey KolbC
        Casey Kolb @Christoph Hart
        last edited by

        @Christoph-Hart 🙌 🙌

        Casey Kolb
        Founder & CEO of Lunacy Audio
        Composer | Producer | Software Developer

        1 Reply Last reply Reply Quote 0
        • d.healeyD
          d.healey
          last edited by d.healey

          I think you have a typo
          https://github.com/christophhart/HISE/blob/develop/hi_tools/hi_standalone_components/ChocWebView.cpp#L34

          Should be lowercase, no? Maybe my compiler is just picky.

          Is there a preprocessor definition I can use to prevent it trying to compile the choc webview stuff on Linux? because I'm getting a few errors related to it and since it's not implemented I rather just not have it bother me.

          Libre Wave - Freedom respecting instruments and effects
          My Patreon - HISE tutorials
          YouTube Channel - Public HISE tutorials

          Christoph HartC 1 Reply Last reply Reply Quote 0
          • Christoph HartC
            Christoph Hart @d.healey
            last edited by

            @d-healey what are the errors (besides the typo)?

            d.healeyD 1 Reply Last reply Reply Quote 0
            • d.healeyD
              d.healey @Christoph Hart
              last edited by

              @Christoph-Hart

              ../../../../../HISE/hi_tools/hi_standalone_components/choc/gui/choc_webview.h:157:10: fatal error: ../platform/choc_DisableAllWarnings.h: No such file or directory
                157 | #include "../platform/choc_DisableAllWarnings.h"
              

              If I comment that and line 160 out I get:

              In file included from ../../../../../HISE/hi_tools/hi_standalone_components/ChocWebView.cpp:34,
                               from ../../../../../HISE/hi_tools/hi_tools.cpp:79,
                               from ../../JuceLibraryCode/include_hi_tools.cpp:9:
              ../../../../../HISE/hi_tools/hi_standalone_components/choc/gui/choc_webview.h:158:10: fatal error: JavaScriptCore/JavaScript.h: No such file or directory
                158 | #include <JavaScriptCore/JavaScript.h>
                    |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
              compilation terminated.
              make: *** [Makefile:891: build/intermediate/Release/include_hi_tools_3ba2cabd.o] Error 1
              make: *** Waiting for unfinished jobs....
              In file included from ../../../../../HISE/hi_snex/snex_mir/snex_Mir.cpp:15,
                               from ../../../../../HISE/hi_snex/hi_snex_62.cpp:4,
                               from ../../JuceLibraryCode/include_hi_snex_62.cpp:9:
              ../../../../../HISE/hi_snex/snex_mir/snex_MirInstructions.cpp: In static member function ‘static juce::Result snex::mir::InstructionParsers::SyntaxTree(snex::mir::State*)’:
              ../../../../../HISE/hi_snex/snex_mir/snex_MirInstructions.cpp:63:45: error: converting to ‘std::allocator_arg_t’ from initializer list would use explicit constructor ‘constexpr std::allocator_arg_t::allocator_arg_t()’
                 63 |                         staticSignatures.add({ {}, "int PolyHandler::getVoiceIndexStatic(void* voiceIndex)" });
                    |                         ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
              ../../../../../HISE/hi_snex/snex_mir/snex_MirInstructions.cpp:64:45: error: converting to ‘std::allocator_arg_t’ from initializer list would use explicit constructor ‘constexpr std::allocator_arg_t::allocator_arg_t()’
                 64 |                         staticSignatures.add({ {}, "int PolyHandler::getSizeStatic(void* voiceIndex)" });
                    |                         ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
              ../../../../../HISE/hi_snex/snex_mir/snex_MirInstructions.cpp: In lambda function:
              ../../../../../HISE/hi_snex/snex_mir/snex_MirInstructions.cpp:77:78: error: conversion from ‘<brace-enclosed initializer list>’ to ‘const std::tuple<snex::NamespacedIdentifier, juce::String>’ is ambiguous
                 77 |                                         staticSignatures.addIfNotAlreadyThere({ {}, sig });
                    |                                         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~
              

              And:

              ../../../../../HISE/hi_snex/snex_mir/snex_MirInstructions.cpp:93:86: error: conversion from ‘<brace-enclosed initializer list>’ to ‘const std::tuple<snex::NamespacedIdentifier, juce::String>’ is ambiguous
                 93 |                                                 staticSignatures.addIfNotAlreadyThere({ {}, sig });
              

              Libre Wave - Freedom respecting instruments and effects
              My Patreon - HISE tutorials
              YouTube Channel - Public HISE tutorials

              Christoph HartC 1 Reply Last reply Reply Quote 0
              • Christoph HartC
                Christoph Hart @d.healey
                last edited by

                @d-healey Alright, I've booted up Linux and removed those errors. Most of those errors were actually related to the new SNEX MIR Backend, but I've also just deactivated the choc header on Linux.

                Unfortunately the integration on Linux seems to be more complicated than I thought (which is annoying because juce actually has a webview component that is already using almost the same API as the choc header, but I need a few special methods to call javascript etc which is not available for the juce web component.

                d.healeyD 1 Reply Last reply Reply Quote 0
                • d.healeyD
                  d.healey @Christoph Hart
                  last edited by

                  @Christoph-Hart I wonder if that's because Linux doesn't have a standard web browser, like Edge or Safari?

                  Libre Wave - Freedom respecting instruments and effects
                  My Patreon - HISE tutorials
                  YouTube Channel - Public HISE tutorials

                  Christoph HartC 1 Reply Last reply Reply Quote 0
                  • Christoph HartC
                    Christoph Hart @d.healey
                    last edited by

                    @d-healey no it uses the webkit framework that you have to link with your binary (but JUCE does that already for the existing web component).

                    It's frustrating because the parts are all there but I lack the overview on Linux to put it all together...

                    d.healeyD 1 Reply Last reply Reply Quote 0
                    • d.healeyD
                      d.healey @Christoph Hart
                      last edited by

                      @Christoph-Hart Ah I understand now. Just tried building and no errors this time :) thanks

                      Libre Wave - Freedom respecting instruments and effects
                      My Patreon - HISE tutorials
                      YouTube Channel - Public HISE tutorials

                      1 Reply Last reply Reply Quote 0
                      • d.healeyD
                        d.healey
                        last edited by

                        Seeing this message in the console with the latest build, not sure what it's referring to.

                        Master Chain:! DLL Library version mismatch: 0.1.0 vs. 0.2.0

                        Libre Wave - Freedom respecting instruments and effects
                        My Patreon - HISE tutorials
                        YouTube Channel - Public HISE tutorials

                        Christoph HartC 1 Reply Last reply Reply Quote 0
                        • Christoph HartC
                          Christoph Hart @d.healey
                          last edited by Christoph Hart

                          @d-healey haha, no that's the Loris DLL library version mismatch error (I bumped the version counter and included a few more features), but now that you mention it, I might want to make it more verbose so that you don't need to guess what version number it's talking about...

                          Oh and to get rid of it, pull and recompile the loris toolbox library.

                          1 Reply Last reply Reply Quote 1
                          • NatanN
                            Natan
                            last edited by

                            @Christoph-Hart Hey Legend,

                            Any tip on how to get started here?
                            In Three.js, Nothing makes sense to me LOL
                            Where and How to Download another example from Three.js?
                            Contacting Images and s, and Index?

                            Appreciate your help

                            1 Reply Last reply Reply Quote 0
                            • First post
                              Last post

                            17

                            Online

                            1.7k

                            Users

                            11.8k

                            Topics

                            102.8k

                            Posts