📄 tune.h
字号:
//------------------------------------------------------------------------------
// File: Tune.h
//
// Desc: Additional infrastructure to extend the tuner.idl. Works nicely
// from C++.
//
// Copyright (c) 1999 - 2001, Microsoft Corporation. All rights reserved.
//------------------------------------------------------------------------------
#pragma once
#ifndef TUNE_H
#define TUNE_H
#include <tuner.h>
namespace BDATuningModel {
const long DEFAULT_MIN_CHANNEL = 2;
const long DEFAULT_MAX_CHANNEL = 999;
const long DEFAULT_MIN_FREQUENCY = 535; //bottom us am
const long DEFAULT_MAX_FREQUENCY = 108000; // top us fm
const long DEFAULT_ANALOG_TUNER_COUNTRY_CODE = 1; //usa
const TunerInputType DEFAULT_ANALOG_TUNER_INPUT_TYPE = TunerInputCable; //usa
typedef CComQIPtr<ITuningSpaceContainer> PQTuningSpaceContainer;
typedef CComQIPtr<ITuningSpace> PQTuningSpace;
typedef CComQIPtr<IAnalogRadioTuningSpace> PQAnalogRadioTuningSpace;
typedef CComQIPtr<IAnalogTVTuningSpace> PQAnalogTVTuningSpace;
typedef CComQIPtr<IATSCTuningSpace> PQATSCTuningSpace;
typedef CComQIPtr<ITuneRequest> PQTuneRequest;
typedef CComQIPtr<IChannelTuneRequest> PQChannelTuneRequest;
typedef CComQIPtr<IATSCChannelTuneRequest> PQATSCChannelTuneRequest;
typedef CComQIPtr<ILocator> PQLocator;
typedef CComQIPtr<IATSCLocator> PQATSCLocator;
typedef CComQIPtr<IDVBTuningSpace> PQDVBTuningSpace;
typedef CComQIPtr<IDVBTuneRequest> PQDVBTuneRequest;
typedef CComQIPtr<IDVBSLocator> PQDVBSLocator;
typedef CComQIPtr<IDVBTLocator> PQDVBTLocator;
typedef CComQIPtr<IDVBCLocator> PQDVBCLocator;
typedef CComQIPtr<IAuxInTuningSpace> PQAuxInTuningSpace;
// tuning space container
class TNTuningSpaceContainer : public PQTuningSpaceContainer {
TNTuningSpaceContainer() {}
TNTuningSpaceContainer(const PQTuningSpaceContainer &a) : PQTuningSpaceContainer(a) {}
TNTuningSpaceContainer(ITuningSpace *p) : PQTuningSpaceContainer(p) {}
TNTuningSpaceContainer(IUnknown *p) : PQTuningSpaceContainer(p) {}
TNTuningSpaceContainer(const TNTuningSpaceContainer &a) : PQTuningSpaceContainer(a) {}
TNTuningSpaceContainer& operator=(TNTuningSpaceContainer& rhs) {
PQTuningSpaceContainer::operator=(rhs);
return *this;
}
};
// tuning spaces
template<class TUNINGSPACETYPE, class TUNEREQUESTTYPE> class TNTuningSpaceHelper : public TUNINGSPACETYPE {
public:
TNTuningSpaceHelper() {}
TNTuningSpaceHelper(const TUNINGSPACETYPE &a) : TUNINGSPACETYPE(a) {}
TNTuningSpaceHelper(ITuningSpace *p) : TUNINGSPACETYPE(p) {}
TNTuningSpaceHelper(IUnknown *p) : TUNINGSPACETYPE(p) {}
TNTuningSpaceHelper(const TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE> &a) : TUNINGSPACETYPE(a) {}
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& rhs) {
TUNINGSPACETYPE::operator=(rhs);
return *this;
}
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(TUNINGSPACETYPE& rhs) {
TUNINGSPACETYPE::operator=(rhs);
return *this;
}
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(IUnknown *rhs) {
TUNINGSPACETYPE::operator=(rhs);
return *this;
}
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(ITuningSpace *rhs) {
TUNINGSPACETYPE::operator=(rhs);
return *this;
}
bool operator==(TUNINGSPACETYPE& rhs) {
CComBSTR rhsname;
HRESULT hr = rhs->get_UniqueName(&rhsname);
if (FAILED(hr)) {
return false;
}
CComBSTR name;
hr = (*this)->get_UniqueName(&name);
if (FAILED(hr)) {
return false;
}
return name == rhsname;
}
bool operator!=(TUNINGSPACETYPE& rhs) {
return !operator==(rhs);
}
PQTuneRequest CreateTuneRequest() {
PQTuneRequest p;
HRESULT hr = (*this)->CreateTuneRequest(&p);
if (FAILED(hr)) {
return PQTuneRequest();
}
return p;
}
PQLocator Locator() {
_ASSERT(*this);
PQLocator ts;
HRESULT hr = (*this)->get_DefaultLocator(&ts);
if (FAILED(hr)) {
return PQLocator();
}
return ts;
}
HRESULT Locator(PQLocator& l) {
_ASSERT(*this);
return (*this)->put_Locator(l);
}
void Clone() {
PQTuningSpace t;
HRESULT hr = (*this)->Clone(&t);
if (FAILED(hr) || !t) {
Release(); // clone failed, clear ourselves
return;
}
TUNINGSPACETYPE::operator=(t);
}
};
typedef TNTuningSpaceHelper<PQTuningSpace, PQTuneRequest> TNTuningSpace;
template<class TUNINGSPACETYPE, class TUNEREQUESTTYPE> class TNAnalogRadioTuningSpaceHelper : public TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE> {
public:
TNAnalogRadioTuningSpaceHelper() {}
TNAnalogRadioTuningSpaceHelper(const TUNINGSPACETYPE &a) : TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>(a) {}
TNAnalogRadioTuningSpaceHelper(IUnknown *p) : TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>(p) {}
TNAnalogRadioTuningSpaceHelper(const TNAnalogRadioTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE> &a) : TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>(a) {}
TNAnalogRadioTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(TNAnalogRadioTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& rhs) {
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(rhs);
return *this;
}
template<class TS, class TR> TNAnalogRadioTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(TNTuningSpaceHelper<TS, TR>& rhs) {
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(TUNINGSPACETYPE(rhs));
return *this;
}
TNAnalogRadioTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(TUNINGSPACETYPE& rhs) {
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(rhs);
return *this;
}
TNAnalogRadioTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(IUnknown* rhs) {
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(rhs);
return *this;
}
long MaxFrequency() {
_ASSERT(*this);
long freq;
HRESULT hr = (*this)->get_MaxFrequency(&freq);
if (FAILED(hr)) {
freq = DEFAULT_MAX_FREQUENCY;
}
return freq;
}
HRESULT MaxFrequency(long freq) {
_ASSERT(*this);
return (*this)->put_MaxFrequency(freq);
}
long MinFrequency() {
_ASSERT(*this);
long freq;
HRESULT hr = (*this)->get_MinFrequency(&freq);
if (FAILED(hr)) {
freq = DEFAULT_MIN_FREQUENCY;
}
return freq;
}
HRESULT MinFrequency(long freq) {
_ASSERT(*this);
return (*this)->put_MinFrequency(freq);
}
};
typedef TNAnalogRadioTuningSpaceHelper<PQAnalogRadioTuningSpace, PQChannelTuneRequest> TNAnalogRadioTuningSpace;
template<class TUNINGSPACETYPE, class TUNEREQUESTTYPE> class TNAnalogTVTuningSpaceHelper : public TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE> {
public:
TNAnalogTVTuningSpaceHelper() {}
TNAnalogTVTuningSpaceHelper(const TUNINGSPACETYPE &a) : TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>(a) {}
TNAnalogTVTuningSpaceHelper(IUnknown *p) : TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>(p) {}
TNAnalogTVTuningSpaceHelper(const TNAnalogTVTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE> &a) : TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>(a) {}
TNAnalogTVTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(TNAnalogTVTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& rhs) {
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(rhs);
return *this;
}
template<class TS, class TR> TNAnalogTVTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(TNTuningSpaceHelper<TS, TR>& rhs) {
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(TUNINGSPACETYPE(rhs));
return *this;
}
TNAnalogTVTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(TUNINGSPACETYPE& rhs) {
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(rhs);
return *this;
}
TNAnalogTVTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(IUnknown* rhs) {
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(rhs);
return *this;
}
TunerInputType InputType() {
_ASSERT(*this);
TunerInputType ti;
HRESULT hr = (*this)->get_InputType(&ti);
if (FAILED(hr)) {
ti = DEFAULT_ANALOG_TUNER_INPUT_TYPE;
}
return ti;
}
HRESULT InputType(TunerInputType ti) {
_ASSERT(*this);
return (*this)->put_InputType(&ti);
}
long CountryCode() {
_ASSERT(*this);
long cc;
HRESULT hr = (*this)->get_CountryCode(&cc);
if (FAILED(hr)) {
cc = DEFAULT_ANALOG_TUNER_INPUT_TYPE;
}
return cc;
}
HRESULT CountryCode(long cc) {
_ASSERT(*this);
return (*this)->put_CountryCode(cc);
}
long MinChannel() {
_ASSERT(*this);
long chan;
HRESULT hr = (*this)->get_MinChannel(&chan);
if (FAILED(hr)) {
chan = DEFAULT_MIN_CHANNEL;
}
return chan;
}
HRESULT MinChannel(long chan) {
_ASSERT(*this);
return (*this)->put_MinChannel(chan);
}
long MaxChannel() {
_ASSERT(*this);
long chan;
HRESULT hr = (*this)->get_MaxChannel(&chan);
if (FAILED(hr)) {
chan = DEFAULT_MAX_CHANNEL;
}
return chan;
}
HRESULT MaxChannel(long chan) {
_ASSERT(*this);
return (*this)->put_MaxChannel(chan);
}
};
typedef TNAnalogTVTuningSpaceHelper<PQAnalogTVTuningSpace, PQChannelTuneRequest> TNAnalogTVTuningSpace;
template<class TUNINGSPACETYPE, class TUNEREQUESTTYPE> class TNAuxInTuningSpaceHelper : public TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE> {
public:
TNAuxInTuningSpaceHelper() {}
TNAuxInTuningSpaceHelper(const TUNINGSPACETYPE &a) : TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>(a) {}
TNAuxInTuningSpaceHelper(IUnknown *p) : TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>(p) {}
TNAuxInTuningSpaceHelper(const TNAuxInTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE> &a) : TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>(a) {}
TNAuxInTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(TNAuxInTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& rhs) {
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(rhs);
return *this;
}
template<class TS, class TR> TNAuxInTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(TNTuningSpaceHelper<TS, TR>& rhs) {
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(TUNINGSPACETYPE(rhs));
return *this;
}
TNAuxInTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(TUNINGSPACETYPE& rhs) {
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(rhs);
return *this;
}
TNAuxInTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(IUnknown* rhs) {
TNTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(rhs);
return *this;
}
};
typedef TNAuxInTuningSpaceHelper<PQAuxInTuningSpace, PQChannelTuneRequest> TNAuxInTuningSpace;
template<class TUNINGSPACETYPE, class TUNEREQUESTTYPE> class TNATSCTuningSpaceHelper : public TNAnalogTVTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE> {
public:
TNATSCTuningSpaceHelper() {}
TNATSCTuningSpaceHelper(const TUNINGSPACETYPE &a) : TNAnalogTVTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>(a) {}
TNATSCTuningSpaceHelper(IUnknown *p) : TNAnalogTVTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>(p) {}
TNATSCTuningSpaceHelper(const TNATSCTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE> &a) : TNAnalogTVTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>(a) {}
TNATSCTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(TNATSCTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& rhs) {
TNAnalogTVTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(rhs);
return *this;
}
template<class TS, class TR> TNATSCTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(TNTuningSpaceHelper<TS, TR>& rhs) {
TNAnalogTVTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(TUNINGSPACETYPE(rhs));
return *this;
}
TNATSCTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(TUNINGSPACETYPE& rhs) {
TNAnalogTVTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(rhs);
return *this;
}
TNATSCTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>& operator=(IUnknown* rhs) {
TNAnalogTVTuningSpaceHelper<TUNINGSPACETYPE, TUNEREQUESTTYPE>::operator=(rhs);
return *this;
}
long MinMinorChannel() {
_ASSERT(*this);
long chan;
HRESULT hr = (*this)->get_MinMinorChannel(&chan);
if (FAILED(hr)) {
chan = DEFAULT_MIN_CHANNEL;
}
return chan;
}
HRESULT MinMinorChannel(long chan) {
_ASSERT(*this);
return (*this)->put_MinMinorChannel(chan);
}
long MaxMinorChannel() {
_ASSERT(*this);
long chan;
HRESULT hr = (*this)->get_MaxMinorChannel(&chan);
if (FAILED(hr)) {
chan = DEFAULT_MAX_CHANNEL;
}
return chan;
}
HRESULT MaxMinorChannel(long chan) {
_ASSERT(*this);
return (*this)->put_MaxMinorChannel(chan);
}
long MinPhysicalChannel() {
_ASSERT(*this);
long chan;
HRESULT hr = (*this)->get_MinPhysicalChannel(&chan);
if (FAILED(hr)) {
chan = DEFAULT_MIN_CHANNEL;
}
return chan;
}
HRESULT MinPhysicalChannel(long chan) {
_ASSERT(*this);
return (*this)->put_MinPhysicalChannel(chan);
}
long MaxPhysicalChannel() {
_ASSERT(*this);
long chan;
HRESULT hr = (*this)->get_MaxPhysicalChannel(&chan);
if (FAILED(hr)) {
chan = DEFAULT_MAX_CHANNEL;
}
return chan;
}
HRESULT MaxPhysicalChannel(long chan) {
_ASSERT(*this);
return (*this)->put_MaxPhysicalChannel(chan);
}
};
typedef TNATSCTuningSpaceHelper<PQATSCTuningSpace, PQATSCChannelTuneRequest> TNATSCTuningSpace;
// dvb tuning space
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -