2003-06-11 23:36:48 +00:00
|
|
|
// The contents of this file are subject to the BOINC Public License
|
2003-05-15 17:10:26 +00:00
|
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
// compliance with the License. You may obtain a copy of the License at
|
2003-06-11 23:36:48 +00:00
|
|
|
// http://boinc.berkeley.edu/license_1.0.txt
|
2004-07-13 13:54:09 +00:00
|
|
|
//
|
2003-05-15 17:10:26 +00:00
|
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing rights and limitations
|
2004-07-13 13:54:09 +00:00
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
2003-05-15 17:10:26 +00:00
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
2004-07-13 13:54:09 +00:00
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
2003-05-15 17:10:26 +00:00
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
2003-05-09 00:00:39 +00:00
|
|
|
#ifndef _SS_LOGIC_
|
|
|
|
#define _SS_LOGIC_
|
|
|
|
|
2004-03-04 11:41:43 +00:00
|
|
|
#ifndef _WIN32
|
2004-07-13 13:54:09 +00:00
|
|
|
#include <ctime>
|
2004-03-04 11:41:43 +00:00
|
|
|
#endif
|
2003-05-08 18:11:05 +00:00
|
|
|
|
2004-11-16 08:04:57 +00:00
|
|
|
#define SS_STATUS_ENABLED 1
|
|
|
|
#define SS_STATUS_RESTARTREQUEST 2
|
|
|
|
#define SS_STATUS_BLANKED 3
|
|
|
|
#define SS_STATUS_BOINCSUSPENDED 4
|
|
|
|
#define SS_STATUS_NOTGRAPHICSCAPABLE 5
|
|
|
|
#define SS_STATUS_NOAPPSEXECUTING 6
|
|
|
|
#define SS_STATUS_NOGRAPHICSAPPSEXECUTING 7
|
2004-11-18 01:52:07 +00:00
|
|
|
#define SS_STATUS_QUIT 8
|
2004-11-16 08:04:57 +00:00
|
|
|
|
2003-05-08 18:11:05 +00:00
|
|
|
class SS_LOGIC {
|
|
|
|
public:
|
|
|
|
|
2004-11-16 08:04:57 +00:00
|
|
|
SS_LOGIC();
|
2003-05-09 21:54:23 +00:00
|
|
|
|
2004-11-17 19:19:26 +00:00
|
|
|
void start_ss(GRAPHICS_MSG&, double blank_time);
|
2003-05-08 18:11:05 +00:00
|
|
|
void stop_ss();
|
|
|
|
void poll();
|
2004-07-19 20:37:45 +00:00
|
|
|
void reset();
|
2004-11-16 08:04:57 +00:00
|
|
|
int get_ss_status() { return ss_status; };
|
|
|
|
|
|
|
|
private:
|
|
|
|
double blank_time; // 0 or time to blank screen
|
|
|
|
double ack_deadline; // when to give up on graphics app
|
|
|
|
int ss_status; // the status of the screensaver from the core
|
|
|
|
// client perspective.
|
2003-05-08 18:11:05 +00:00
|
|
|
bool do_ss; // true if we're acting like a screensaver
|
|
|
|
|
|
|
|
// invariants
|
|
|
|
//
|
|
|
|
// do_boinc_logo_ss and do_blank are not both true
|
|
|
|
// at most one app has request_mode = FULLSCREEN
|
|
|
|
// pre-ss mode of all apps is not FULLSCREEN
|
|
|
|
};
|
2003-05-09 00:00:39 +00:00
|
|
|
|
|
|
|
#endif
|