forked from Beliar83/fife-editor-cegui
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created a first bare prototype of the editor. Needs CEGUI-0 and a fif…
…e with cegui-0 enabled (fife cegui_0.8 branch at the time of writing)
- Loading branch information
Showing
13 changed files
with
898 additions
and
608 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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""" |
Oops, something went wrong.