⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 irconfig.cpp

📁 WinLIRC软件:WinLIRC是一个以 LIRC为基础而在Windows环境发展出来的模块, 而什么是LIRC呢...它其实是 Linux InfraredRemote Control的缩写, 本
💻 CPP
字号:
/* 
 * This file is part of the WinLIRC package, which was derived from
 * LIRC (Linux Infrared Remote Control) 0.5.4pre9.
 *
 * 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.
 *
 * Copyright (C) 1999 Jim Paris <jim@jtan.com>
 * RX device, some other stuff Copyright (C) 2002 Alexander Nesterovsky <Nsky@users.sourceforge.net>
 */

#include "irconfig.h"
#include "irdriver.h"
#include "stdafx.h"
#include <atlbase.h>
#include "config.h"
#include "remote.h"
#include "globals.h"

CIRConfig::CIRConfig()
{
	CSingleLock lock(&CS_global_remotes,TRUE);

	sense=-1;
	port="COM2";
	animax=0;
	transmittertype=0;
	speed = 115200;			
	devicetype = 1;			
	virtpulse = 300;		
	global_remotes=NULL;
}

CIRConfig::~CIRConfig()
{
	DEBUG("~CIRConfig\n");
		
	CSingleLock lock(&CS_global_remotes,TRUE);

	if(global_remotes!=NULL)
		free_config(global_remotes);
	
	DEBUG("~CIRConfig done\n");
}

bool CIRConfig::ReadConfig(CIRDriver *driver)
{
	CSingleLock lock(&CS_global_remotes,TRUE);

	CRegKey key;

	/* First try HKCU, then HKLM */
	if(key.Open(HKEY_CURRENT_USER,"Software\\LIRC")!=ERROR_SUCCESS)
		if(key.Open(HKEY_LOCAL_MACHINE,"Software\\LIRC")
		   !=ERROR_SUCCESS)
		return false;

	char s[512];
	DWORD len=512;
	if(key.QueryValue(s,"port",&len)!=ERROR_SUCCESS)
		return false;
	port=s;

	DWORD x;
	if(key.QueryValue(x,"sense")!=ERROR_SUCCESS)
		return false;
	sense=(x==2)?-1:x;

	DWORD a;
	if(key.QueryValue(a,"animax")!=ERROR_SUCCESS)
		return false;
	animax=a;

	if(key.QueryValue(a,"transmittertype")!=ERROR_SUCCESS)
		return false;
	transmittertype=a;

	len=512;
	if(key.QueryValue(s,"conf",&len)!=ERROR_SUCCESS)
		return false;
	conf=s;

	if(key.QueryValue(a,"speed")!=ERROR_SUCCESS)		
		return false;									
	speed = a;

	if(key.QueryValue(a,"devicetype")!=ERROR_SUCCESS)	
		return false;									
	devicetype = a;

	if(key.QueryValue(a,"notrayicon")!=ERROR_SUCCESS)	
		return false;									
	notrayicon = a;

	if(key.QueryValue(a,"virtpulse")!=ERROR_SUCCESS)	
		return false;									
	virtpulse = a;

	FILE *tmp;
	if(conf=="" || (tmp=fopen(conf,"r"))==NULL)
		return false;
		
	if(global_remotes!=NULL)
		free_config(global_remotes);

	global_remotes=read_config(tmp);
	fclose(tmp);

	if(global_remotes==(struct ir_remote *)-1)
	{
		global_remotes=NULL;
		DEBUG("read_config returned -1\n");
		return false;
	}

	/* ??? bad input causes codes to be null, but no */
	/* error is returned from read_config. */
	struct ir_remote *sr;
	for(sr=global_remotes;sr!=NULL;sr=sr->next)
	{
		if(sr->codes==NULL)
		{
			DEBUG("read_config returned remote with null codes\n");
			free_config(global_remotes);

			return false;
		}
	}

	if(global_remotes==NULL)
	{
		DEBUG("read_config returned null\n");
		return false;
	}

	return true;
}

bool CIRConfig::WriteConfig(void)
{
	CRegKey key;

	if(key.Create(HKEY_LOCAL_MACHINE,"Software\\LIRC")!=ERROR_SUCCESS)
		if(key.Create(HKEY_CURRENT_USER,"Software\\LIRC")
		   !=ERROR_SUCCESS)
		return false;

	if(key.SetValue(port,"port")!=ERROR_SUCCESS)
		return false;

	if(key.SetValue((sense==-1)?2:sense,"sense")!=ERROR_SUCCESS)
		return false;

	if(key.SetValue(animax,"animax")!=ERROR_SUCCESS)
		return false;

	if(key.SetValue(transmittertype,"transmittertype")!=ERROR_SUCCESS)
		return false;

	if(key.SetValue(conf,"conf")!=ERROR_SUCCESS)
		return false;

    if(key.SetValue(speed,"speed")!=ERROR_SUCCESS)		
		return false;									

    if(key.SetValue(devicetype,"devicetype")!=ERROR_SUCCESS)	
		return false;											

    if(key.SetValue(notrayicon,"notrayicon")!=ERROR_SUCCESS)	
		return false;											

    if(key.SetValue(virtpulse,"virtpulse")!=ERROR_SUCCESS)		
		return false;											

	return true;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -