mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-03-23 16:23:53 -04:00
209 lines
4.5 KiB
Perl
209 lines
4.5 KiB
Perl
# ==========================================================================
|
|
#
|
|
# ZoneMinder Neu-Fusion Control Protocol Module, $Date$, $Revision$
|
|
# Copyright (C) 2001-2008 Philip Coombes
|
|
#
|
|
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
#
|
|
# ==========================================================================
|
|
#
|
|
# This module contains the implementation of the Neu-Fusion NCS370 IP camera
|
|
# control protocol
|
|
#
|
|
package ZoneMinder::Control::Ncs370;
|
|
|
|
use 5.006;
|
|
use strict;
|
|
use warnings;
|
|
|
|
require ZoneMinder::Base;
|
|
require ZoneMinder::Control;
|
|
|
|
our @ISA = qw(ZoneMinder::Control);
|
|
|
|
# ==========================================================================
|
|
#
|
|
# Ncs370 IP Control Protocol
|
|
#
|
|
# ==========================================================================
|
|
|
|
use ZoneMinder::Logger qw(:all);
|
|
use ZoneMinder::Config qw(:all);
|
|
|
|
use Time::HiRes qw( usleep );
|
|
|
|
sub open
|
|
{
|
|
my $self = shift;
|
|
|
|
$self->loadMonitor();
|
|
|
|
use LWP::UserAgent;
|
|
$self->{ua} = LWP::UserAgent->new;
|
|
$self->{ua}->agent( "ZoneMinder Control Agent/".ZoneMinder::Base::ZM_VERSION );
|
|
|
|
$self->{state} = 'open';
|
|
}
|
|
|
|
sub printMsg
|
|
{
|
|
my $self = shift;
|
|
my $msg = shift;
|
|
my $msg_len = length($msg);
|
|
|
|
Debug( $msg."[".$msg_len."]" );
|
|
}
|
|
|
|
sub sendCmd
|
|
{
|
|
my $self = shift;
|
|
my $cmd = shift;
|
|
|
|
my $result = undef;
|
|
|
|
printMsg( $cmd, "Tx" );
|
|
|
|
my $req = HTTP::Request->new( POST=>"http://".$self->{Monitor}->{ControlAddress}."/PANTILTCONTROL.CGI" );
|
|
my $res = $self->{ua}->request($req);
|
|
|
|
if ( $res->is_success )
|
|
{
|
|
$result = !undef;
|
|
}
|
|
else
|
|
{
|
|
Error( "Error check failed: '".$res->status_line()."'" );
|
|
}
|
|
|
|
return( $result );
|
|
}
|
|
|
|
sub moveConUp
|
|
{
|
|
my $self = shift;
|
|
Debug( "Move Up" );
|
|
my $cmd = "PanSingleMoveDegree=1\nTiltSingleMoveDegree=1\nPanTiltSingleMove=1";
|
|
$self->sendCmd( $cmd );
|
|
}
|
|
|
|
sub moveConDown
|
|
{
|
|
my $self = shift;
|
|
Debug( "Move Down" );
|
|
my $cmd = "PanSingleMoveDegree=1\nTiltSingleMoveDegree=1\nPanTiltSingleMove=7";
|
|
$self->sendCmd( $cmd );
|
|
}
|
|
|
|
sub moveConLeft
|
|
{
|
|
my $self = shift;
|
|
Debug( "Move Left" );
|
|
my $cmd = "PanSingleMoveDegree=1\nTiltSingleMoveDegree=1\nPanTiltSingleMove=3";
|
|
$self->sendCmd( $cmd );
|
|
}
|
|
|
|
sub moveConRight
|
|
{
|
|
my $self = shift;
|
|
Debug( "Move Right" );
|
|
my $cmd = "PanSingleMoveDegree=1\nTiltSingleMoveDegree=1\nPanTiltSingleMove=5";
|
|
$self->sendCmd( $cmd );
|
|
}
|
|
|
|
sub moveConUpRight
|
|
{
|
|
moveConUp();
|
|
moveConRight();
|
|
}
|
|
|
|
sub moveConUpLeft
|
|
{
|
|
moveConUp();
|
|
moveConLeft();
|
|
}
|
|
|
|
sub moveConDownRight
|
|
{
|
|
moveConDown();
|
|
moveConRight();
|
|
}
|
|
|
|
sub moveConDownLeft
|
|
{
|
|
moveConDown();
|
|
moveConLeft();
|
|
}
|
|
|
|
sub presetHome
|
|
{
|
|
my $self = shift;
|
|
Debug( "Home Preset" );
|
|
my $cmd = "PanSingleMoveDegree=1\nTiltSingleMoveDegree=1\nPanTiltSingleMove=4";
|
|
$self->sendCmd( $cmd );
|
|
}
|
|
|
|
1;
|
|
__END__
|
|
# Below is stub documentation for your module. You'd better edit it!
|
|
|
|
=head1 NAME
|
|
|
|
ZoneMinder::Database - Perl extension for blah blah blah
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
use ZoneMinder::Database;
|
|
blah blah blah
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
Stub documentation for ZoneMinder, created by h2xs. It looks like the
|
|
author of the extension was negligent enough to leave the stub
|
|
unedited.
|
|
|
|
Blah blah blah.
|
|
|
|
=head2 EXPORT
|
|
|
|
None by default.
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
Mention other useful documentation such as the documentation of
|
|
related modules or operating system documentation (such as man pages
|
|
in UNIX), or any relevant external documentation such as RFCs or
|
|
standards.
|
|
|
|
If you have a mailing list set up for your module, mention it here.
|
|
|
|
If you have a web site set up for your module, mention it here.
|
|
|
|
=head1 AUTHOR
|
|
|
|
Philip Coombes, E<lt>philip.coombes@zoneminder.comE<gt>
|
|
|
|
=head1 COPYRIGHT AND LICENSE
|
|
|
|
Copyright (C) 2001-2008 Philip Coombes
|
|
|
|
This library is free software; you can redistribute it and/or modify
|
|
it under the same terms as Perl itself, either Perl version 5.8.3 or,
|
|
at your option, any later version of Perl 5 you may have available.
|
|
|
|
|
|
=cut
|