Files
neutrino/src/neutrinoMessages.h
GetAway 3e6d45b65a Fix set lastmode; introduce sending an actionKey for LCD4linux
We have a problem since the introduction of moviebrowser_mode.
Lastmode is no longer reset correctly, because the new mode is overlaid by another mode
and thus the original mode cannot be restored. Neutrino becomes unusable and has to be
restarted. (Example below)
Generally the opening of a window, like the MB or Channellist is also no Neutrino_mode in
the sense as it was invented once. It is just a window and not a mode that Neutrino is in.
Example: Neutrino is in TV_MODUS and you open the MB. You can see, Neutrino is still in TV_MODUS.
I reverted the code and now an open window can say for example to the lcd4linux 'hello i'm open, here is mb'.
When running a window we send some kind of AktionKey. After the actions in the window, the AktionKey is cleared.
Now to the current bug:

1. boot on a TV channel.
2. switch to a WebTV channel. (in my case PlutoTV Star Trek)
3. play a TS over the Moviebrowser and stop it. (MODE_WEBTV is detected and the WebTV stream is restarted)
4. call the MB a second time and start and stop the TS.
5. the WebTV stream does not restart anymore.
6. exit the MB now.
7. neutrino becomes not operable.
2023-09-14 18:53:26 +02:00

206 lines
7.2 KiB
C

/*
Neutrino-GUI - DBoxII-Project
Copyright (C) 2001 Steffen Hehn 'McClean'
Homepage: http://dbox.cyberphoria.org/
Kommentar:
Diese GUI wurde von Grund auf neu programmiert und sollte nun vom
Aufbau und auch den Ausbaumoeglichkeiten gut aussehen. Neutrino basiert
auf der Client-Server Idee, diese GUI ist also von der direkten DBox-
Steuerung getrennt. Diese wird dann von Daemons uebernommen.
License: GPL
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __neutrinoMessages__
#define __neutrinoMessages__
#include "driver/rcinput.h"
struct messages_return
{
enum
{
none = 0x00,
handled = 0x01,
unhandled = 0x02,
cancel_all = 0x04,
cancel_info = 0x08
};
};
struct NeutrinoMessages
{
enum
{
SHOW_EPG = CRCInput::RC_Messages + 1,
SHOW_INFOBAR = CRCInput::RC_Messages + 2,
AVINPUT_ON = CRCInput::RC_Messages + 3,
AVINPUT_OFF = CRCInput::RC_Messages + 4,
STANDBY_ON = CRCInput::RC_Messages + 5,
STANDBY_OFF = CRCInput::RC_Messages + 6,
STANDBY_TOGGLE = CRCInput::RC_Messages + 7,
SHUTDOWN = CRCInput::RC_Messages + 8,
ANNOUNCE_SHUTDOWN = CRCInput::RC_Messages + 9,
ANNOUNCE_ZAPTO = CRCInput::RC_Messages + 10,
ZAPTO = CRCInput::RC_Messages + 11,
ANNOUNCE_RECORD = CRCInput::RC_Messages + 12,
RECORD_START = CRCInput::RC_Messages + 13,
RECORD_STOP = CRCInput::RC_Messages + 14,
ANNOUNCE_SLEEPTIMER = CRCInput::RC_Messages + 15,
SLEEPTIMER = CRCInput::RC_Messages + 16,
CHANGEMODE = CRCInput::RC_Messages + 17,
REMIND = CRCInput::RC_Messages + 18,
LOCK_RC = CRCInput::RC_Messages + 19,
UNLOCK_RC = CRCInput::RC_Messages + 20,
LOCK_RC_EXTERN = CRCInput::RC_Messages + 21,
UNLOCK_RC_EXTERN = CRCInput::RC_Messages + 22,
REBOOT = CRCInput::RC_Messages + 23,
RELOAD_SETUP = CRCInput::RC_Messages + 24,
SHOW_MAINMENU = CRCInput::RC_Messages + 25,
LEAVE_ALL = CRCInput::RC_Messages + 26,
RESTART = CRCInput::RC_Messages + 27,
/* END of CRCInput::RC_Messages */
EVT_VOLCHANGED = CRCInput::RC_Events + 1,
EVT_MUTECHANGED = CRCInput::RC_Events + 2,
EVT_VCRCHANGED = CRCInput::RC_Events + 3,
EVT_MODECHANGED = CRCInput::RC_Events + 4,
EVT_BOUQUETSCHANGED = CRCInput::RC_Events + 6,
EVT_SERVICESCHANGED = CRCInput::RC_Events + 7,
EVT_SCAN_COMPLETE = CRCInput::RC_Events + 16,
EVT_SCAN_NUM_TRANSPONDERS = CRCInput::RC_Events + 17,
EVT_SCAN_NUM_CHANNELS = CRCInput::RC_Events + 18,
EVT_SHUTDOWN = CRCInput::RC_Events + 19,
EVT_TIMER = CRCInput::RC_Events + 20,
EVT_PROGRAMLOCKSTATUS = CRCInput::RC_Events + 22,
EVT_RECORDMODE = CRCInput::RC_Events + 24,
#ifndef SKIP_CA_STATUS
EVT_ZAP_CA_ID = CRCInput::RC_Events + 25,
EVT_ZAP_CA_CLEAR = CRCInput::RC_Events + 26,
EVT_ZAP_CA_LOCK = CRCInput::RC_Events + 27,
EVT_ZAP_CA_FTA = CRCInput::RC_Events + 28,
#endif
EVT_SCAN_FAILED = CRCInput::RC_Events + 29,
EVT_SCAN_REPORT_NUM_SCANNED_TRANSPONDERS = CRCInput::RC_Events + 30,
EVT_SCAN_FOUND_RADIO_CHAN = CRCInput::RC_Events + 32,
EVT_SCAN_FOUND_DATA_CHAN = CRCInput::RC_Events + 33,
EVT_SCAN_FOUND_TV_CHAN = CRCInput::RC_Events + 34,
EVT_ZAP_MOTOR = CRCInput::RC_Events + 37,
/* sectionsd */
EVT_SERVICES_UPD = CRCInput::RC_Events + 38,
EVT_SI_FINISHED = CRCInput::RC_Events + 39,
EVT_PMT_CHANGED = CRCInput::RC_Events + 40,
/* from nhttpd */
EVT_HDMI_CEC_VIEW_ON = CRCInput::RC_Events + 41,
EVT_HDMI_CEC_STANDBY = CRCInput::RC_Events + 42,
EVT_SET_MUTE = CRCInput::RC_Events + 43,
EVT_SET_VOLUME = CRCInput::RC_Events + 44,
EVT_STREAM_START = CRCInput::RC_Events + 45, /* data = fd */
EVT_STREAM_STOP = CRCInput::RC_Events + 46,
/* NEVER CHANGE THIS */
EVT_CA_MESSAGE = CRCInput::RC_Events + 60, /* data = CA_MESSAGE pointer */
EVT_SUBT_MESSAGE = CRCInput::RC_Events + 61, /* data = subtitles pointer */
EVT_AUTO_SET_VIDEOSYSTEM = CRCInput::RC_Events + 62, /* data = new video system */
/* sectionsd */
EVT_RELOAD_XMLTV = CRCInput::RC_Events + 63,
/* END of CRCInput::RC_Events */
EVT_CURRENTEPG = CRCInput::RC_WithData + 1,
EVT_NEXTEPG = CRCInput::RC_WithData + 2,
EVT_POPUP = CRCInput::RC_WithData + 3,
EVT_EXTMSG = CRCInput::RC_WithData + 4,
EVT_START_PLUGIN = CRCInput::RC_WithData + 5,
/* sectionsd */
EVT_CURRENTNEXT_EPG = CRCInput::RC_WithData + 6, /* data: (t_channel_id *) */
EVT_TIMESET = CRCInput::RC_WithData + 7, /* data: (long long *) */
/* "sectionsd" events triggered by neutrino */
EVT_NOEPG_YET = CRCInput::RC_WithData + 8, /* data: (t_channel_id *) */
/* "timerd" events triggered by neutrino */
EVT_NEXTPROGRAM = CRCInput::RC_WithData + 9, /* data: (t_channel_id *) */
/* zapit */
EVT_SCAN_FOUND_A_CHAN = CRCInput::RC_WithData + 10,
EVT_SCAN_PROVIDER = CRCInput::RC_WithData + 11,
EVT_SCAN_SATELLITE = CRCInput::RC_WithData + 12,
EVT_SCAN_SERVICENAME = CRCInput::RC_WithData + 13,
EVT_ZAP_COMPLETE = CRCInput::RC_WithData + 14, /* data: (t_channel_id *) */
EVT_ZAP_FAILED = CRCInput::RC_WithData + 15, /* data: (t_channel_id *) */
EVT_ZAP_ISNVOD = CRCInput::RC_WithData + 16, /* data: (t_channel_id *) */
EVT_ZAP_SUB_COMPLETE = CRCInput::RC_WithData + 17, /* data: (t_channel_id *) */
EVT_ZAP_SUB_FAILED = CRCInput::RC_WithData + 18, /* data: (t_channel_id *) */
/* "zapit" events triggered by neutrino */
EVT_ZAP_GOT_SUBSERVICES = CRCInput::RC_WithData + 19, /* data: (t_channel_id *) */
EVT_ZAP_GOTAPIDS = CRCInput::RC_WithData + 20, /* data: (t_channel_id *) */
EVT_ZAP_GOTPIDS = CRCInput::RC_WithData + 21, /* data: (t_channel_id *) */
EVT_TUNE_COMPLETE = CRCInput::RC_WithData + 22, /* data: (t_channel_id *) */
/* neutrino */
EVT_RECORDING_ENDED = CRCInput::RC_WithData + 23,
/* sectionsd */
EVT_EIT_COMPLETE = CRCInput::RC_WithData + 24, /* data: (t_channel_id *) */
EVT_BACK_ZAP_COMPLETE = CRCInput::RC_WithData + 25, /* data: (t_channel_id *) */
EVT_HOTPLUG = CRCInput::RC_WithData + 26, /* data: char */
EVT_FORMAT_DRIVE = CRCInput::RC_WithData + 27, /* data: char */
EVT_WEBTV_ZAP_COMPLETE = CRCInput::RC_WithData + 28, /* data: (t_channel_id *) */
EVT_SCAN_REPORT_FREQUENCYP = CRCInput::RC_WithData + 29,
EVT_SLIDER = CRCInput::RC_WithData + 30 /* data: int */
};
};
struct NeutrinoModes
{
enum
{
mode_unknown = -1,
mode_tv = 1,
mode_radio = 2,
mode_avinput = 3,
mode_standby = 4,
mode_audio = 5,
mode_pic = 6,
mode_ts = 7,
mode_off = 8,
mode_webtv = 9,
mode_upnp = 10,
mode_webradio = 11,
mode_mask = 0xFF,
norezap = 0x100
};
};
#endif