Skip to main content

A Qt Widget that displays a beatmap, and an arbitrary amount of replays.

Project description

Circlevis

Circlevis is the replay viewer (aka visualizer) in Circleguard. It was split off into its own repository to allow other projects to use it, should they so choose.

Circlevis is a Qt widget, and will only work if you are using the Qt (or pyqt, as we are) GUI framwork.

Installation

Circlevis can be installed from pip:

pip install circlevis

Usage

Circlevis can be used in two ways:

VisualizerApp

The easiest way is to instantiate a VisualizerApp, which subclasses QApplication so you don't have to create a main application yourself. This is best for quick visualization, when you only want to open circlevis and nothing else.

from circleguard import *
from circlevis import VisualizerApp, BeatmapInfo

cg = Circleguard("key")
r = ReplayMap(509610, 6304246)
# replays must be loaded before passed to the visualizer
cg.load(r)

# BeatmapInfo tells circlevis how it should load the beatmap before it displays
# it. You can pass either a map id (in which case circlevis will download the map
# from osu!'s servers) or a path to a .osu file (in which case circlevis will
# load the beatmap from that file).
# If you don't want any beatmap to be displayed, instantiate an empty BeatmapInfo
# (bm = BeatmapInfo()) and pass that to the visualizer.
bm = BeatmapInfo(map_id=r.map_id)
app = VisualizerApp(bm, replays=[r])
# this calls qt's `exec` function, which shows the application and enters the
# gui run loop, blocking any code after this call.
app.exec()

You can also visualize only a map, without any replay:

from circlevis import VisualizerApp, BeatmapInfo

bm = BeatmapInfo(map_id=509610)
app = VisualizerApp(bm)
app.exec()

Visualizer

If you want to integrate the visualizer into an existing project (which already has its own QApplication), you should instead instantiate the Visualizer class, which is a normal Qt widget and can be added to a layout like any other widget.

from circleguard import *
from circlevis import Visualizer, BeatmapInfo

cg = Circleguard("key")
r = ReplayMap(509610, 6304246)
cg.load(r)

bm = BeatmapInfo(map_id=r.map_id)
visualizer_widget = Visualizer(bm, replays=[r])

# add visualizer_widget to your layout here

Advanced Usage

Both VisualizerApp and Visualizer can take several optional arguments:

  • events - a list of timestamps (in ms). If a frame with that timestamp is found in the replay, it is colored gold
  • library - A slider Library class, which will be used instead of creating a new one if passed
  • speeds - a list of possible speeds the visualizer can play at. These can be switched between in real time with the speed up or speed down icons on the visualizer, or by pressing the up or down keys
  • start_speed - which speed to start playback at. This value must be in speeds
  • paint_info - whether to draw information about the map and replays in the upper left hand corner

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

circlevis-1.1.1.tar.gz (116.4 kB view details)

Uploaded Source

Built Distribution

circlevis-1.1.1-py3-none-any.whl (133.7 kB view details)

Uploaded Python 3

File details

Details for the file circlevis-1.1.1.tar.gz.

File metadata

  • Download URL: circlevis-1.1.1.tar.gz
  • Upload date:
  • Size: 116.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for circlevis-1.1.1.tar.gz
Algorithm Hash digest
SHA256 856e85b6b1263cddf7ca1f963a0ad8e094a21dc22c6e9180b28f01d0ba9ed92b
MD5 f9937454890182e33e2e5c619eafc664
BLAKE2b-256 239a8a05c5c230ff54bb97e46e1275a5ffab1f9a3e76a10a1e23c8ae315109a4

See more details on using hashes here.

File details

Details for the file circlevis-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: circlevis-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 133.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for circlevis-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b70c55898404daa847aceed8e5697cc2141a3def19f5723a55e5b18425b35f70
MD5 a9e40bf1c862098effe2d1124467a6c4
BLAKE2b-256 69cb62c56598c5c2dc2f4331ccc932441e94a888dd9cb96d51664b4f9a2cb064

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page