Changed minimizing to system tray on Windows systems.
3 Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 The contents of this file are subject to the Mozilla Public License Version
6 1.1 (the "License"); you may not use this file except in compliance with
7 the License. You may obtain a copy of the License at
9 http://www.mozilla.org/MPL/
11 Software distributed under the License is distributed on an "AS IS" basis,
12 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 for the specific language governing rights and limitations under the License.
15 The Original Code is the Open Hardware Monitor code.
17 The Initial Developer of the Original Code is
18 Michael Möller <m.moeller@gmx.ch>.
19 Portions created by the Initial Developer are Copyright (C) 2009-2010
20 the Initial Developer. All Rights Reserved.
24 Alternatively, the contents of this file may be used under the terms of
25 either the GNU General Public License Version 2 or later (the "GPL"), or
26 the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 in which case the provisions of the GPL or the LGPL are applicable instead
28 of those above. If you wish to allow use of your version of this file only
29 under the terms of either the GPL or the LGPL, and not to allow others to
30 use your version of this file under the terms of the MPL, indicate your
31 decision by deleting the provisions above and replace them with the notice
32 and other provisions required by the GPL or the LGPL. If you do not delete
33 the provisions above, a recipient may use your version of this file under
34 the terms of any one of the MPL, the GPL or the LGPL.
39 using System.Collections.Generic;
41 using System.Reflection;
43 namespace OpenHardwareMonitor.Hardware.ATI {
44 public class ATIGPU : IHardware {
48 private int adapterIndex;
49 private int busNumber;
50 private int deviceNumber;
51 private Sensor temperature;
53 private Sensor coreClock;
54 private Sensor memoryClock;
55 private Sensor coreVoltage;
56 private Sensor coreLoad;
58 private List<ISensor> active = new List<ISensor>();
60 public ATIGPU(string name, int adapterIndex, int busNumber,
64 this.icon = Utilities.EmbeddedResources.GetImage("ati.png");
65 this.adapterIndex = adapterIndex;
66 this.busNumber = busNumber;
67 this.deviceNumber = deviceNumber;
69 ADLFanSpeedInfo speedInfo = new ADLFanSpeedInfo();
70 ADL.ADL_Overdrive5_FanSpeedInfo_Get(adapterIndex, 0, ref speedInfo);
73 new Sensor("GPU Core", 0, SensorType.Temperature, this);
74 this.fan = new Sensor("GPU", 0, speedInfo.MaxRPM, SensorType.Fan, this);
75 this.coreClock = new Sensor("GPU Core", 0, SensorType.Clock, this);
76 this.memoryClock = new Sensor("GPU Memory", 1, SensorType.Clock, this);
77 this.coreVoltage = new Sensor("GPU Core", 0, SensorType.Voltage, this);
78 this.coreLoad = new Sensor("GPU Core", 0, SensorType.Load, this);
82 public int BusNumber { get { return busNumber; } }
84 public int DeviceNumber { get { return deviceNumber; } }
90 public string Identifier {
91 get { return "/atigpu/" + adapterIndex; }
98 public ISensor[] Sensors {
99 get { return active.ToArray(); }
102 public string GetReport() {
106 public void Update() {
107 ADLTemperature adlt = new ADLTemperature();
108 if (ADL.ADL_Overdrive5_Temperature_Get(adapterIndex, 0, ref adlt)
111 temperature.Value = 0.001f * adlt.Temperature;
112 ActivateSensor(temperature);
114 DeactivateSensor(temperature);
117 ADLFanSpeedValue adlf = new ADLFanSpeedValue();
118 adlf.SpeedType = ADL.ADL_DL_FANCTRL_SPEED_TYPE_RPM;
119 if (ADL.ADL_Overdrive5_FanSpeed_Get(adapterIndex, 0, ref adlf)
122 fan.Value = adlf.FanSpeed;
125 DeactivateSensor(fan);
128 ADLPMActivity adlp = new ADLPMActivity();
129 if (ADL.ADL_Overdrive5_CurrentActivity_Get(adapterIndex, ref adlp)
132 coreClock.Value = 0.01f * adlp.EngineClock;
133 memoryClock.Value = 0.01f * adlp.MemoryClock;
134 coreVoltage.Value = 0.001f * adlp.Vddc;
135 coreLoad.Value = adlp.ActivityPercent;
136 ActivateSensor(coreClock);
137 ActivateSensor(memoryClock);
138 ActivateSensor(coreVoltage);
139 ActivateSensor(coreLoad);
141 DeactivateSensor(coreClock);
142 DeactivateSensor(memoryClock);
143 DeactivateSensor(coreVoltage);
144 DeactivateSensor(coreLoad);
148 private void ActivateSensor(Sensor sensor) {
149 if (!active.Contains(sensor)) {
151 if (SensorAdded != null)
156 private void DeactivateSensor(Sensor sensor) {
157 if (active.Contains(sensor)) {
158 active.Remove(sensor);
159 if (SensorRemoved != null)
160 SensorRemoved(sensor);
164 public event SensorEventHandler SensorAdded;
165 public event SensorEventHandler SensorRemoved;