Пример #1
0
 public void SetInstrumentProgram(SharedInstrumentComponent component, byte program, byte bank)
 {
     component.InstrumentBank    = bank;
     component.InstrumentProgram = program;
     component.DirtyRenderer     = true;
     Dirty(component);
 }
    private void OnHandleState(EntityUid uid, SharedInstrumentComponent instrument, ref ComponentHandleState args)
    {
        if (args.Current is not InstrumentState state)
        {
            return;
        }

        if (state.Playing)
        {
            SetupRenderer(uid, true, instrument);
        }
        else
        {
            EndRenderer(uid, true, instrument);
        }

        instrument.Playing            = state.Playing;
        instrument.AllowPercussion    = state.AllowPercussion;
        instrument.AllowProgramChange = state.AllowProgramChange;
        instrument.InstrumentBank     = state.InstrumentBank;
        instrument.InstrumentProgram  = state.InstrumentProgram;
        instrument.DirtyRenderer      = true;
    }
 private void OnGetState(EntityUid uid, SharedInstrumentComponent instrument, ref ComponentGetState args)
 {
     args.State =
         new InstrumentState(instrument.Playing, instrument.InstrumentProgram, instrument.InstrumentBank,
                             instrument.AllowPercussion, instrument.AllowProgramChange, instrument.RespectMidiLimits, instrument.LastSequencerTick);
 }