Skip to content

Commit

Permalink
Created a first bare prototype of the editor. Needs CEGUI-0 and a fif…
Browse files Browse the repository at this point in the history
…e with cegui-0 enabled (fife cegui_0.8 branch at the time of writing)
  • Loading branch information
Beliar83 committed Feb 12, 2014
1 parent c53ea91 commit 010d9dd
Show file tree
Hide file tree
Showing 13 changed files with 898 additions and 608 deletions.
70 changes: 35 additions & 35 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
*.py[cod]

# C extensions
*.so

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg
lib
lib64

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox
nosetests.xml

# Translations
*.mo

# Mr Developer
.mr.developer.cfg
.project
.pydevproject
*.py[cod]

# C extensions
*.so

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg
lib
lib64

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox
nosetests.xml

# Translations
*.mo

# Mr Developer
.mr.developer.cfg
.project
.pydevproject
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
editor
======

The editor for fife-rpg
editor
======

The editor for fife-rpg
33 changes: 33 additions & 0 deletions combined.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
Components:
Agent: fife_rpg.components.agent
MoveAgent: fife_rpg.components.move_agent
CharacterStatistics: fife_rpg.components.character_statistics
Containable: fife_rpg.components.containable
Container: fife_rpg.components.container
Description: fife_rpg.components.description
Dialogue: fife_rpg.components.dialogue
Equip: fife_rpg.components.equip
Equipable: fife_rpg.components.equipable
FifeAgent: fife_rpg.components.fifeagent
General: fife_rpg.components.general
Lockable: fife_rpg.components.lockable
RPGEquip: fife_rpg.components.equip
Readable: fife_rpg.components.readable
Moving: fife_rpg.components.moving
Systems:
CharacterStatisticSystem: fife_rpg.systems.character_statistics
GameVariables: fife_rpg.systems.game_variables
ScriptingSystem: fife_rpg.systems.scriptingsystem
Actions:
MoveAgent: fife_rpg.actions.move_agent
Close: fife_rpg.actions.close
Lock: fife_rpg.actions.lock
Look: fife_rpg.actions.look
Open: fife_rpg.actions.open
PickUp: fife_rpg.actions.pick_up
Read: fife_rpg.actions.read
Unlock: fife_rpg.actions.unlock
MoveCamera: fife_rpg.actions.move_camera
SetGlobalLight: fife_rpg.actions.set_global_light
Behaviours:
Base: fife_rpg.behaviours.base
30 changes: 15 additions & 15 deletions editor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# -*- coding: utf-8 -*-
# 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 3 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, see <http://www.gnu.org/licenses/>.

"""This package contains the main editor modules"""
# -*- coding: utf-8 -*-
# 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 3 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, see <http://www.gnu.org/licenses/>.

"""This package contains the main editor modules"""
Loading

0 comments on commit 010d9dd

Please sign in to comment.