Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ruby-player

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ruby-player

  • 0.6.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Ruby Player - client library for the Player (operation system for robots) in pure Ruby. Build Status

Summary

Ruby Player provide high level client library to access to Player server in pure Ruby.

Why?

The Player project distributes bindings of client libraries for Ruby and Python but I think that this project has several reasons to be:

  1. Pure implementation doesn't require C\C++ libraries of Player, SWIG and compilator. You can use it on any platform with installed Ruby.
  2. In contrast to standard bindings Ruby Player is spreaded as gem and you can use it with Bundle, RVM and others tools which we all are loving.
  3. Standard bindings doesn't use the expression of Ruby. Calls of function in C style without blocks, hashes and exceptions.

Install

gem install ruby-player

Example

  require 'ruby-player'
  Player::Client.connect("localhost") do |robot|
    pos2d = robot.position2d(1)
    ranger = robot.ranger
    pos2d.set_speed(vx: 1, vy: 0, va: 0.2)
    #main loop
    robot.loop do
      puts "Position: x=%{px}, y=%{py}, a=%{pa}" % pos2d.state
      puts "Rangers: #{ranger.collect(&:range)}"
    end
  end

API coverage

The list of support objects and devices of Player.

  • Client object
  • ActArray
  • AIO
  • BlobFinder
  • Gripper
  • Position2d
  • Power
  • Ranger

Requirements

  • Ruby 1.9.2 or later
  • Player 3.1.0 or later
  • For examples Stage 4.1.0 or later

References

Home page

Wiki

Documentation

Player project

C API Player

Authors

Aleksey Timin atimin@gmail.com

FAQs

Package last updated on 17 Jun 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc