File: README

package info (click to toggle)
libpmemobj-cpp 1.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,568 kB
  • sloc: cpp: 14,128; sh: 643; ansic: 497; perl: 381; makefile: 8
file content (28 lines) | stat: -rw-r--r-- 953 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
This directory contains an example application implemented using libpmemobj,
it's a game in which all the objects are stored on persistent memory.
This means that the game process can be safely killed and then resumed.

To launch the game:
	./pmpong <game session file> [mode]

Mode option might be skipped if you want to run game with GUI or use
	-s
to run game simulation.

The file with the game session will either be created if it doesn't exist
or opened if it contains a valid pool.

Controls:
	move left paddle - up and down arrow keys
	move right paddle - 'w' and 's'
	pause - esc
	start ball - space

This game demonstrates the usage of the very basics of the libpmemobj C++
bindings. It demonstrates pool management, persistent pointers and transactions.

** DEPENDENCIES: **
In order to build the game you need to have SFML 2.4+ installed.
rpm-based systems : sudo dnf install SFML-devel
dpkg-based systems: sudo apt-get install libsfml-dev