Vixen is a full featured sequencer for producing animated light shows. It provides all the software tools necessary to create and run an animated light show sequenced to music. It supports typical DIY controllers as well as DMX, traditional and pixel lighting. It runs on the Windows platform under the .Net Framework.
You can download and install Vixen via the self contained installer:
Vixen 3 is unlicensed and free to use.
License
This software is provided 'as-is', without any express or implied warranty.
Vixen 3 is Open Source and source code is available on GitHub at https://github.com/VixenLights/Vixen/ under the licensing outlined above.
This repository contains all the public source available for to build the Vixen 3 system.
Vixen 3 is a modular application that allows for pluggable modules to be developed for it. It is written in C# and some small parts in C++. The code structure is as follows under the src folder:
- /Vixen.Common - Common components used by the application and modules
- /Vixen.Modules - Modules developed and maintained by the core team, and other contributors
- /Vixen.Application - The main Vixen application
- /Vixen.Core - The Vixen core framework
- /Vixen.Installer - Installer projects
For current developer setup information, see the Developer pages on the Vixen website.
Conventions for development:
-
The assembly name should be the name of the module (eg. TimedSequenceEditor), and the default namespace should be "Module..". For example, Modules.Editor.TimedSequenceEditor.
-
The build output directory should be relative to the solution directory, in a 'Release' directory release builds and a Debug folder for Debug builds. We no longer actively support x86 builds. It will also depend on the type of module. For example:
Vixen Modules (Release):
$(SolutionDir)\Release\Ouptput\Module.. Vixen Common assemblies (Release): $ (SolutionDir)\Release\Ouptput
Vixen Applications (Release): $(SolutionDir)\Release\Ouptput\ -
Assembly names are handled by the Directory.Build.Props file for each module type.
-
To reference the Vixen project (or any other projects that are needed), make sure you add a 'project reference', and not a "normal" reference (to the binary DLL). This will help compatibility for other developers when used in different locations. References to projects should be set so they do not copy local. This avoids assembly loader issues with multiple copies. Under Properties of the reference.
- Copy Local : No
- Include Assets: None
-
NuGet packages follow the same principle as Project References. You should include the package in the Common area and allow the libraries to be deployed in that path. Then in the local project the NuGet package is added but is set not to copy the assets locally by setting the following in the properties of the library.
- Exclude Assets : None
-
Tabs vs. Spaces, and other formatting: Tabs are preferred, and general formatting standards are followed. An editorconfig file in the src root controls the code styles. However, please try to review all your own changes before committing, to ensure you are not making large changes to unrelated sections of code (eg. changing formatting in a file, or whitespace, etc.). Commits like this may be rejected. If larger reformats are desired, include them in their own commits noted as such to distingush them from logic changes. See Visual Studio Setup for more info.
-
Powered by