From a1cb41aa0444da3068f580812271f55c950d96f6 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 30 Oct 2021 19:02:07 +0200 Subject: [PATCH] Added the old project code itself. --- Mourne-CI/.gitignore | 16 + Mourne-CI/application/.htaccess | 1 + Mourne-CI/application/controllers/admin.php | 1935 ++ .../application/controllers/alliance.php | 22 + .../application/controllers/building.php | 702 + .../application/controllers/changelog.php | 78 + Mourne-CI/application/controllers/cron.php | 23 + Mourne-CI/application/controllers/forum.php | 20 + Mourne-CI/application/controllers/gm.php | 17 + Mourne-CI/application/controllers/hero.php | 213 + Mourne-CI/application/controllers/index.html | 10 + Mourne-CI/application/controllers/mail.php | 164 + Mourne-CI/application/controllers/news.php | 68 + Mourne-CI/application/controllers/user.php | 139 + Mourne-CI/application/controllers/village.php | 262 + Mourne-CI/application/core/MO_Controller.php | 430 + Mourne-CI/application/core/MO_Model.php | 1523 ++ Mourne-CI/application/core/index.html | 10 + .../application/helpers/class_helper.php | 30 + .../application/helpers/equipment_helper.php | 246 + .../application/helpers/event_helper.php | 16 + Mourne-CI/application/helpers/index.html | 10 + Mourne-CI/application/helpers/murl_helper.php | 24 + Mourne-CI/application/index.html | 10 + Mourne-CI/application/models/ai_model.php | 389 + .../application/models/assignment_model.php | 396 + .../application/models/building_model.php | 265 + .../application/models/changelog_model.php | 55 + Mourne-CI/application/models/cron_model.php | 10 + Mourne-CI/application/models/event_model.php | 1189 ++ Mourne-CI/application/models/hero_model.php | 331 + Mourne-CI/application/models/image_model.php | 298 + Mourne-CI/application/models/index.html | 10 + Mourne-CI/application/models/item_model.php | 676 + Mourne-CI/application/models/log_model.php | 82 + Mourne-CI/application/models/mail_model.php | 234 + Mourne-CI/application/models/map_model.php | 294 + Mourne-CI/application/models/menu_model.php | 14 + .../application/models/mo_common_model.php | 73 + Mourne-CI/application/models/news_model.php | 32 + .../application/models/resource_model.php | 64 + Mourne-CI/application/models/spell_model.php | 240 + Mourne-CI/application/models/sql_model.php | 148 + .../application/models/technology_model.php | 646 + Mourne-CI/application/models/unit_model.php | 172 + Mourne-CI/application/models/user_model.php | 72 + .../application/models/village_model.php | 194 + .../application/models/weather_model.php | 101 + .../views/admin/ai_settings_tool/list.php | 42 + .../views/admin/ai_settings_tool/settings.php | 88 + .../views/admin/ai_unit_tool/list.php | 35 + .../views/admin/ai_unit_tool/unit.php | 211 + .../admin/assignment_tool/assignment.php | 374 + .../views/admin/assignment_tool/list.php | 41 + .../views/admin/building_tool/building.php | 635 + .../views/admin/building_tool/list.php | 41 + .../hero_inventory_template_tool/items.php | 58 + .../hero_inventory_template_tool/list.php | 32 + .../views/admin/hero_template_tool/hero.php | 500 + .../views/admin/hero_template_tool/list.php | 39 + .../views/admin/image_tool/menu_image.php | 209 + .../admin/image_tool/menu_image_view.php | 20 + .../views/admin/image_tool/slot_image.php | 360 + .../admin/image_tool/slot_image_view.php | 14 + .../views/admin/item_tool/item.php | 1006 ++ .../views/admin/item_tool/list.php | 45 + .../application/views/admin/map_tool/list.php | 41 + Mourne-CI/application/views/admin/panel.php | 144 + .../views/admin/spell_tool/list.php | 43 + .../views/admin/spell_tool/spell.php | 454 + .../application/views/admin/sql_tool/list.php | 40 + .../application/views/admin/sql_tool/new.php | 35 + .../admin/technology_group_tool/list.php | 40 + .../technology_group_tool/tech_group_desc.php | 56 + .../technology_group_tool/tech_groups.php | 59 + .../add_to_list.php | 30 + .../technology_requirements_tool/list.php | 39 + .../remove_conf.php | 30 + .../technology_requirements_tool/tech_req.php | 63 + .../views/admin/technology_tool/list.php | 35 + .../admin/technology_tool/technology.php | 485 + .../views/admin/unit_tool/list.php | 38 + .../views/admin/unit_tool/unit.php | 400 + .../views/admin/weather_tool/list.php | 43 + .../views/admin/weather_tool/weather.php | 323 + .../views/building/al_research.php | 5 + .../views/building/assignments.php | 80 + .../views/building/building_create.php | 113 + .../application/views/building/events.php | 28 + .../application/views/building/header.php | 13 + Mourne-CI/application/views/building/list.php | 86 + Mourne-CI/application/views/building/menu.php | 36 + .../application/views/building/next_event.php | 17 + .../application/views/building/research.php | 166 + .../application/views/building/spacer.php | 2 + .../application/views/building/spells.php | 103 + .../application/views/building/stats.php | 91 + .../application/views/building/upgrade.php | 98 + .../application/views/changelog/changelog.php | 30 + .../views/changelog/new_commit.php | 27 + .../views/changelog/new_version.php | 27 + Mourne-CI/application/views/forum/notimpl.php | 5 + .../application/views/hero/character.php | 379 + Mourne-CI/application/views/hero/create.php | 190 + .../application/views/hero/delete_confirm.php | 40 + .../application/views/hero/hero_menu.php | 29 + .../application/views/hero/inventory.php | 43 + .../application/views/hero/inventory_view.php | 22 + Mourne-CI/application/views/hero/menu.php | 45 + Mourne-CI/application/views/hero/select.php | 61 + Mourne-CI/application/views/hero/stats.php | 298 + Mourne-CI/application/views/index.html | 10 + Mourne-CI/application/views/login/login.php | 33 + Mourne-CI/application/views/mail/drafts.php | 71 + Mourne-CI/application/views/mail/inbox.php | 69 + Mourne-CI/application/views/mail/menu.php | 29 + Mourne-CI/application/views/mail/new.php | 89 + Mourne-CI/application/views/mail/read.php | 65 + Mourne-CI/application/views/mail/sent.php | 65 + Mourne-CI/application/views/mail/sread.php | 48 + Mourne-CI/application/views/menu.php | 88 + Mourne-CI/application/views/news/add.php | 20 + .../application/views/news/add_success.php | 1 + Mourne-CI/application/views/news/news.php | 20 + Mourne-CI/application/views/parts/footer.php | 3 + Mourne-CI/application/views/parts/header.php | 35 + Mourne-CI/application/views/parts/js_res.php | 13 + .../application/views/register/register.php | 59 + .../views/register/register_db_error.php | 1 + .../application/views/register/success.php | 3 + .../views/village/build_in_progress.php | 1 + .../application/views/village/events.php | 28 + Mourne-CI/application/views/village/grid.php | 29 + .../application/views/village/log/combat.php | 19 + .../application/views/village/log/list.php | 34 + Mourne-CI/application/views/village/map.php | 96 + Mourne-CI/application/views/village/menu.php | 31 + .../application/views/village/next_event.php | 17 + .../application/views/village/resources.php | 43 + .../application/views/village/select.php | 52 + .../application/views/village/settings.php | 56 + Mourne-CI/application/views/village/units.php | 3 + .../application/views/village/weather.php | 6 + Mourne-CI/css/admin.css | 164 + Mourne-CI/css/base.css | 887 + Mourne-CI/css/hero.css | 615 + Mourne-CI/css/index.html | 10 + Mourne-CI/css/mail.css | 226 + Mourne-CI/css/menu.css | 78 + .../images/ui-bg_flat_30_cccccc_40x100.png | Bin 0 -> 180 bytes .../images/ui-bg_flat_50_5c5c5c_40x100.png | Bin 0 -> 211 bytes .../images/ui-bg_glass_20_555555_1x400.png | Bin 0 -> 115 bytes .../images/ui-bg_glass_40_0078a3_1x400.png | Bin 0 -> 135 bytes .../images/ui-bg_glass_40_ffc73d_1x400.png | Bin 0 -> 131 bytes .../ui-bg_gloss-wave_25_333333_500x100.png | Bin 0 -> 1874 bytes .../ui-bg_highlight-soft_80_eeeeee_1x100.png | Bin 0 -> 95 bytes .../ui-bg_inset-soft_25_000000_1x100.png | Bin 0 -> 98 bytes .../ui-bg_inset-soft_30_f58400_1x100.png | Bin 0 -> 117 bytes .../images/ui-icons_222222_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_4b8e0b_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_a83300_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_cccccc_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_ffffff_256x240.png | Bin 0 -> 4369 bytes .../ui-darkness/jquery-ui-1.10.0.custom.css | 1174 ++ .../jquery-ui-1.10.0.custom.min.css | 5 + Mourne-CI/css/village.css | 4 + Mourne-CI/img/buildings/art/cornfield1.png | Bin 0 -> 9486 bytes Mourne-CI/img/buildings/art/empty.png | Bin 0 -> 9260 bytes Mourne-CI/img/buildings/art/index.html | 10 + Mourne-CI/img/buildings/art/ironmine1.png | Bin 0 -> 8214 bytes Mourne-CI/img/buildings/bip/bip.png | Bin 0 -> 377 bytes Mourne-CI/img/buildings/bip/index.html | 10 + Mourne-CI/img/buildings/corn_field/index.html | 10 + Mourne-CI/img/buildings/corn_field/r1.png | Bin 0 -> 5914 bytes Mourne-CI/img/buildings/corn_field/r2.png | Bin 0 -> 5940 bytes Mourne-CI/img/buildings/empty/empty.png | Bin 0 -> 9260 bytes Mourne-CI/img/buildings/empty/index.html | 10 + Mourne-CI/img/buildings/farm/index.html | 10 + Mourne-CI/img/buildings/farm/r1.png | Bin 0 -> 320 bytes Mourne-CI/img/buildings/house/index.html | 10 + Mourne-CI/img/buildings/house/r1.png | Bin 0 -> 349 bytes Mourne-CI/img/buildings/index.html | 10 + Mourne-CI/img/buildings/iron_mine/index.html | 10 + Mourne-CI/img/buildings/iron_mine/r1.png | Bin 0 -> 5098 bytes .../img/buildings/lumber_mill/index.html | 10 + Mourne-CI/img/buildings/lumber_mill/r1.png | Bin 0 -> 455 bytes Mourne-CI/img/buildings/school/index.html | 10 + Mourne-CI/img/buildings/school/r1.png | Bin 0 -> 357 bytes Mourne-CI/img/buildings/stone_mine/index.html | 10 + Mourne-CI/img/buildings/stone_mine/r1.png | Bin 0 -> 444 bytes Mourne-CI/img/characters/base/female.png | Bin 0 -> 190 bytes Mourne-CI/img/characters/base/male.png | Bin 0 -> 190 bytes Mourne-CI/img/generated/settings.txt | 27 + Mourne-CI/img/hero/inv_base/ammo.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/back.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/base.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/belt.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/bracers.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/chest.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/foots.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/gloves.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/head.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/legs.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/main_hand.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/neck.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/off_hand.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/ranged.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/ring.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/shirt.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/shoulders.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/tabard.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inv_base/trinket.png | Bin 0 -> 167 bytes Mourne-CI/img/hero/inventory/base.png | Bin 0 -> 167 bytes Mourne-CI/img/imggen/cornfield1.png | Bin 0 -> 9486 bytes Mourne-CI/img/imggen/index.html | 10 + Mourne-CI/img/imggen/ironmine1.png | Bin 0 -> 8214 bytes Mourne-CI/img/imggen/menu.png | Bin 0 -> 8346 bytes Mourne-CI/img/imggen/overlay/menu.png | Bin 0 -> 8346 bytes Mourne-CI/img/imggen/slot.png | Bin 0 -> 168 bytes Mourne-CI/img/index.html | 10 + Mourne-CI/img/map/ai_village.png | Bin 0 -> 605 bytes Mourne-CI/img/map/bottom.png | Bin 0 -> 568 bytes Mourne-CI/img/map/empty.png | Bin 0 -> 168 bytes Mourne-CI/img/map/index.html | 10 + Mourne-CI/img/map/left.png | Bin 0 -> 658 bytes Mourne-CI/img/map/right.png | Bin 0 -> 684 bytes Mourne-CI/img/map/rocks.png | Bin 0 -> 460 bytes Mourne-CI/img/map/top.png | Bin 0 -> 480 bytes Mourne-CI/img/map/village.png | Bin 0 -> 543 bytes Mourne-CI/img/map/water.png | Bin 0 -> 591 bytes Mourne-CI/img/menu/index.html | 10 + Mourne-CI/img/saves/bip/settings.txt | 27 + Mourne-CI/img/saves/corn/gen.png | Bin 0 -> 435 bytes Mourne-CI/img/saves/corn/settings.txt | 27 + Mourne-CI/img/saves/index.html | 10 + Mourne-CI/index.php | 205 + Mourne-CI/js/index.html | 10 + Mourne-CI/js/jquery-ui-1.10.0.custom.js | 14850 ++++++++++++++++ Mourne-CI/js/jquery-ui-1.10.0.custom.min.js | 6 + Mourne-CI/js/jquery.js | 4 + Mourne-CI/js/resource.js | 33 + Mourne-CI/license.txt | 51 + Mourne-CI/sql/db_13_04_23.sql | 1104 ++ Mourne-CI/sql/index.html | 10 + Mourne-CI/sql/map/index.html | 10 + 245 files changed, 40960 insertions(+) create mode 100755 Mourne-CI/.gitignore create mode 100755 Mourne-CI/application/.htaccess create mode 100755 Mourne-CI/application/controllers/admin.php create mode 100755 Mourne-CI/application/controllers/alliance.php create mode 100755 Mourne-CI/application/controllers/building.php create mode 100755 Mourne-CI/application/controllers/changelog.php create mode 100755 Mourne-CI/application/controllers/cron.php create mode 100755 Mourne-CI/application/controllers/forum.php create mode 100755 Mourne-CI/application/controllers/gm.php create mode 100755 Mourne-CI/application/controllers/hero.php create mode 100755 Mourne-CI/application/controllers/index.html create mode 100755 Mourne-CI/application/controllers/mail.php create mode 100755 Mourne-CI/application/controllers/news.php create mode 100755 Mourne-CI/application/controllers/user.php create mode 100755 Mourne-CI/application/controllers/village.php create mode 100755 Mourne-CI/application/core/MO_Controller.php create mode 100755 Mourne-CI/application/core/MO_Model.php create mode 100755 Mourne-CI/application/core/index.html create mode 100755 Mourne-CI/application/helpers/class_helper.php create mode 100755 Mourne-CI/application/helpers/equipment_helper.php create mode 100755 Mourne-CI/application/helpers/event_helper.php create mode 100755 Mourne-CI/application/helpers/index.html create mode 100755 Mourne-CI/application/helpers/murl_helper.php create mode 100755 Mourne-CI/application/index.html create mode 100755 Mourne-CI/application/models/ai_model.php create mode 100755 Mourne-CI/application/models/assignment_model.php create mode 100755 Mourne-CI/application/models/building_model.php create mode 100755 Mourne-CI/application/models/changelog_model.php create mode 100755 Mourne-CI/application/models/cron_model.php create mode 100755 Mourne-CI/application/models/event_model.php create mode 100644 Mourne-CI/application/models/hero_model.php create mode 100755 Mourne-CI/application/models/image_model.php create mode 100755 Mourne-CI/application/models/index.html create mode 100644 Mourne-CI/application/models/item_model.php create mode 100755 Mourne-CI/application/models/log_model.php create mode 100755 Mourne-CI/application/models/mail_model.php create mode 100755 Mourne-CI/application/models/map_model.php create mode 100755 Mourne-CI/application/models/menu_model.php create mode 100755 Mourne-CI/application/models/mo_common_model.php create mode 100755 Mourne-CI/application/models/news_model.php create mode 100755 Mourne-CI/application/models/resource_model.php create mode 100755 Mourne-CI/application/models/spell_model.php create mode 100755 Mourne-CI/application/models/sql_model.php create mode 100755 Mourne-CI/application/models/technology_model.php create mode 100755 Mourne-CI/application/models/unit_model.php create mode 100755 Mourne-CI/application/models/user_model.php create mode 100755 Mourne-CI/application/models/village_model.php create mode 100755 Mourne-CI/application/models/weather_model.php create mode 100755 Mourne-CI/application/views/admin/ai_settings_tool/list.php create mode 100755 Mourne-CI/application/views/admin/ai_settings_tool/settings.php create mode 100755 Mourne-CI/application/views/admin/ai_unit_tool/list.php create mode 100755 Mourne-CI/application/views/admin/ai_unit_tool/unit.php create mode 100755 Mourne-CI/application/views/admin/assignment_tool/assignment.php create mode 100755 Mourne-CI/application/views/admin/assignment_tool/list.php create mode 100755 Mourne-CI/application/views/admin/building_tool/building.php create mode 100755 Mourne-CI/application/views/admin/building_tool/list.php create mode 100755 Mourne-CI/application/views/admin/hero_inventory_template_tool/items.php create mode 100755 Mourne-CI/application/views/admin/hero_inventory_template_tool/list.php create mode 100755 Mourne-CI/application/views/admin/hero_template_tool/hero.php create mode 100755 Mourne-CI/application/views/admin/hero_template_tool/list.php create mode 100755 Mourne-CI/application/views/admin/image_tool/menu_image.php create mode 100755 Mourne-CI/application/views/admin/image_tool/menu_image_view.php create mode 100755 Mourne-CI/application/views/admin/image_tool/slot_image.php create mode 100755 Mourne-CI/application/views/admin/image_tool/slot_image_view.php create mode 100755 Mourne-CI/application/views/admin/item_tool/item.php create mode 100755 Mourne-CI/application/views/admin/item_tool/list.php create mode 100755 Mourne-CI/application/views/admin/map_tool/list.php create mode 100755 Mourne-CI/application/views/admin/panel.php create mode 100755 Mourne-CI/application/views/admin/spell_tool/list.php create mode 100755 Mourne-CI/application/views/admin/spell_tool/spell.php create mode 100755 Mourne-CI/application/views/admin/sql_tool/list.php create mode 100755 Mourne-CI/application/views/admin/sql_tool/new.php create mode 100755 Mourne-CI/application/views/admin/technology_group_tool/list.php create mode 100755 Mourne-CI/application/views/admin/technology_group_tool/tech_group_desc.php create mode 100755 Mourne-CI/application/views/admin/technology_group_tool/tech_groups.php create mode 100755 Mourne-CI/application/views/admin/technology_requirements_tool/add_to_list.php create mode 100755 Mourne-CI/application/views/admin/technology_requirements_tool/list.php create mode 100755 Mourne-CI/application/views/admin/technology_requirements_tool/remove_conf.php create mode 100755 Mourne-CI/application/views/admin/technology_requirements_tool/tech_req.php create mode 100755 Mourne-CI/application/views/admin/technology_tool/list.php create mode 100755 Mourne-CI/application/views/admin/technology_tool/technology.php create mode 100755 Mourne-CI/application/views/admin/unit_tool/list.php create mode 100755 Mourne-CI/application/views/admin/unit_tool/unit.php create mode 100755 Mourne-CI/application/views/admin/weather_tool/list.php create mode 100755 Mourne-CI/application/views/admin/weather_tool/weather.php create mode 100755 Mourne-CI/application/views/building/al_research.php create mode 100755 Mourne-CI/application/views/building/assignments.php create mode 100755 Mourne-CI/application/views/building/building_create.php create mode 100755 Mourne-CI/application/views/building/events.php create mode 100755 Mourne-CI/application/views/building/header.php create mode 100755 Mourne-CI/application/views/building/list.php create mode 100755 Mourne-CI/application/views/building/menu.php create mode 100755 Mourne-CI/application/views/building/next_event.php create mode 100755 Mourne-CI/application/views/building/research.php create mode 100755 Mourne-CI/application/views/building/spacer.php create mode 100755 Mourne-CI/application/views/building/spells.php create mode 100755 Mourne-CI/application/views/building/stats.php create mode 100755 Mourne-CI/application/views/building/upgrade.php create mode 100755 Mourne-CI/application/views/changelog/changelog.php create mode 100755 Mourne-CI/application/views/changelog/new_commit.php create mode 100755 Mourne-CI/application/views/changelog/new_version.php create mode 100755 Mourne-CI/application/views/forum/notimpl.php create mode 100644 Mourne-CI/application/views/hero/character.php create mode 100644 Mourne-CI/application/views/hero/create.php create mode 100644 Mourne-CI/application/views/hero/delete_confirm.php create mode 100644 Mourne-CI/application/views/hero/hero_menu.php create mode 100644 Mourne-CI/application/views/hero/inventory.php create mode 100644 Mourne-CI/application/views/hero/inventory_view.php create mode 100644 Mourne-CI/application/views/hero/menu.php create mode 100644 Mourne-CI/application/views/hero/select.php create mode 100644 Mourne-CI/application/views/hero/stats.php create mode 100755 Mourne-CI/application/views/index.html create mode 100755 Mourne-CI/application/views/login/login.php create mode 100755 Mourne-CI/application/views/mail/drafts.php create mode 100755 Mourne-CI/application/views/mail/inbox.php create mode 100755 Mourne-CI/application/views/mail/menu.php create mode 100755 Mourne-CI/application/views/mail/new.php create mode 100755 Mourne-CI/application/views/mail/read.php create mode 100755 Mourne-CI/application/views/mail/sent.php create mode 100755 Mourne-CI/application/views/mail/sread.php create mode 100755 Mourne-CI/application/views/menu.php create mode 100755 Mourne-CI/application/views/news/add.php create mode 100755 Mourne-CI/application/views/news/add_success.php create mode 100755 Mourne-CI/application/views/news/news.php create mode 100755 Mourne-CI/application/views/parts/footer.php create mode 100755 Mourne-CI/application/views/parts/header.php create mode 100755 Mourne-CI/application/views/parts/js_res.php create mode 100755 Mourne-CI/application/views/register/register.php create mode 100755 Mourne-CI/application/views/register/register_db_error.php create mode 100755 Mourne-CI/application/views/register/success.php create mode 100755 Mourne-CI/application/views/village/build_in_progress.php create mode 100755 Mourne-CI/application/views/village/events.php create mode 100755 Mourne-CI/application/views/village/grid.php create mode 100755 Mourne-CI/application/views/village/log/combat.php create mode 100755 Mourne-CI/application/views/village/log/list.php create mode 100755 Mourne-CI/application/views/village/map.php create mode 100755 Mourne-CI/application/views/village/menu.php create mode 100755 Mourne-CI/application/views/village/next_event.php create mode 100755 Mourne-CI/application/views/village/resources.php create mode 100755 Mourne-CI/application/views/village/select.php create mode 100755 Mourne-CI/application/views/village/settings.php create mode 100755 Mourne-CI/application/views/village/units.php create mode 100755 Mourne-CI/application/views/village/weather.php create mode 100755 Mourne-CI/css/admin.css create mode 100755 Mourne-CI/css/base.css create mode 100644 Mourne-CI/css/hero.css create mode 100755 Mourne-CI/css/index.html create mode 100755 Mourne-CI/css/mail.css create mode 100755 Mourne-CI/css/menu.css create mode 100755 Mourne-CI/css/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png create mode 100755 Mourne-CI/css/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png create mode 100755 Mourne-CI/css/ui-darkness/images/ui-bg_glass_20_555555_1x400.png create mode 100755 Mourne-CI/css/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png create mode 100755 Mourne-CI/css/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png create mode 100755 Mourne-CI/css/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png create mode 100755 Mourne-CI/css/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png create mode 100755 Mourne-CI/css/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png create mode 100755 Mourne-CI/css/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png create mode 100755 Mourne-CI/css/ui-darkness/images/ui-icons_222222_256x240.png create mode 100755 Mourne-CI/css/ui-darkness/images/ui-icons_4b8e0b_256x240.png create mode 100755 Mourne-CI/css/ui-darkness/images/ui-icons_a83300_256x240.png create mode 100755 Mourne-CI/css/ui-darkness/images/ui-icons_cccccc_256x240.png create mode 100755 Mourne-CI/css/ui-darkness/images/ui-icons_ffffff_256x240.png create mode 100755 Mourne-CI/css/ui-darkness/jquery-ui-1.10.0.custom.css create mode 100755 Mourne-CI/css/ui-darkness/jquery-ui-1.10.0.custom.min.css create mode 100755 Mourne-CI/css/village.css create mode 100644 Mourne-CI/img/buildings/art/cornfield1.png create mode 100644 Mourne-CI/img/buildings/art/empty.png create mode 100755 Mourne-CI/img/buildings/art/index.html create mode 100644 Mourne-CI/img/buildings/art/ironmine1.png create mode 100755 Mourne-CI/img/buildings/bip/bip.png create mode 100755 Mourne-CI/img/buildings/bip/index.html create mode 100755 Mourne-CI/img/buildings/corn_field/index.html create mode 100755 Mourne-CI/img/buildings/corn_field/r1.png create mode 100755 Mourne-CI/img/buildings/corn_field/r2.png create mode 100755 Mourne-CI/img/buildings/empty/empty.png create mode 100755 Mourne-CI/img/buildings/empty/index.html create mode 100755 Mourne-CI/img/buildings/farm/index.html create mode 100755 Mourne-CI/img/buildings/farm/r1.png create mode 100755 Mourne-CI/img/buildings/house/index.html create mode 100755 Mourne-CI/img/buildings/house/r1.png create mode 100755 Mourne-CI/img/buildings/index.html create mode 100755 Mourne-CI/img/buildings/iron_mine/index.html create mode 100755 Mourne-CI/img/buildings/iron_mine/r1.png create mode 100755 Mourne-CI/img/buildings/lumber_mill/index.html create mode 100755 Mourne-CI/img/buildings/lumber_mill/r1.png create mode 100755 Mourne-CI/img/buildings/school/index.html create mode 100755 Mourne-CI/img/buildings/school/r1.png create mode 100755 Mourne-CI/img/buildings/stone_mine/index.html create mode 100755 Mourne-CI/img/buildings/stone_mine/r1.png create mode 100755 Mourne-CI/img/characters/base/female.png create mode 100755 Mourne-CI/img/characters/base/male.png create mode 100755 Mourne-CI/img/generated/settings.txt create mode 100644 Mourne-CI/img/hero/inv_base/ammo.png create mode 100644 Mourne-CI/img/hero/inv_base/back.png create mode 100644 Mourne-CI/img/hero/inv_base/base.png create mode 100644 Mourne-CI/img/hero/inv_base/belt.png create mode 100644 Mourne-CI/img/hero/inv_base/bracers.png create mode 100644 Mourne-CI/img/hero/inv_base/chest.png create mode 100644 Mourne-CI/img/hero/inv_base/foots.png create mode 100644 Mourne-CI/img/hero/inv_base/gloves.png create mode 100644 Mourne-CI/img/hero/inv_base/head.png create mode 100644 Mourne-CI/img/hero/inv_base/legs.png create mode 100644 Mourne-CI/img/hero/inv_base/main_hand.png create mode 100644 Mourne-CI/img/hero/inv_base/neck.png create mode 100644 Mourne-CI/img/hero/inv_base/off_hand.png create mode 100644 Mourne-CI/img/hero/inv_base/ranged.png create mode 100644 Mourne-CI/img/hero/inv_base/ring.png create mode 100644 Mourne-CI/img/hero/inv_base/shirt.png create mode 100644 Mourne-CI/img/hero/inv_base/shoulders.png create mode 100644 Mourne-CI/img/hero/inv_base/tabard.png create mode 100644 Mourne-CI/img/hero/inv_base/trinket.png create mode 100644 Mourne-CI/img/hero/inventory/base.png create mode 100644 Mourne-CI/img/imggen/cornfield1.png create mode 100755 Mourne-CI/img/imggen/index.html create mode 100644 Mourne-CI/img/imggen/ironmine1.png create mode 100755 Mourne-CI/img/imggen/menu.png create mode 100755 Mourne-CI/img/imggen/overlay/menu.png create mode 100755 Mourne-CI/img/imggen/slot.png create mode 100755 Mourne-CI/img/index.html create mode 100755 Mourne-CI/img/map/ai_village.png create mode 100755 Mourne-CI/img/map/bottom.png create mode 100755 Mourne-CI/img/map/empty.png create mode 100755 Mourne-CI/img/map/index.html create mode 100755 Mourne-CI/img/map/left.png create mode 100755 Mourne-CI/img/map/right.png create mode 100755 Mourne-CI/img/map/rocks.png create mode 100755 Mourne-CI/img/map/top.png create mode 100755 Mourne-CI/img/map/village.png create mode 100755 Mourne-CI/img/map/water.png create mode 100755 Mourne-CI/img/menu/index.html create mode 100755 Mourne-CI/img/saves/bip/settings.txt create mode 100755 Mourne-CI/img/saves/corn/gen.png create mode 100755 Mourne-CI/img/saves/corn/settings.txt create mode 100755 Mourne-CI/img/saves/index.html create mode 100755 Mourne-CI/index.php create mode 100755 Mourne-CI/js/index.html create mode 100755 Mourne-CI/js/jquery-ui-1.10.0.custom.js create mode 100755 Mourne-CI/js/jquery-ui-1.10.0.custom.min.js create mode 100755 Mourne-CI/js/jquery.js create mode 100755 Mourne-CI/js/resource.js create mode 100755 Mourne-CI/license.txt create mode 100644 Mourne-CI/sql/db_13_04_23.sql create mode 100755 Mourne-CI/sql/index.html create mode 100755 Mourne-CI/sql/map/index.html diff --git a/Mourne-CI/.gitignore b/Mourne-CI/.gitignore new file mode 100755 index 0000000..9783dcf --- /dev/null +++ b/Mourne-CI/.gitignore @@ -0,0 +1,16 @@ +*~ +4 +*.swp +*.swo +*.swn +*.swl +*.sw* +#*# +*#* +.#* +log-*.php +log_*.txt +log.txt +debug_*.sql +map*.sql +ai_village*.sql diff --git a/Mourne-CI/application/.htaccess b/Mourne-CI/application/.htaccess new file mode 100755 index 0000000..14249c5 --- /dev/null +++ b/Mourne-CI/application/.htaccess @@ -0,0 +1 @@ +Deny from all \ No newline at end of file diff --git a/Mourne-CI/application/controllers/admin.php b/Mourne-CI/application/controllers/admin.php new file mode 100755 index 0000000..c06e3c7 --- /dev/null +++ b/Mourne-CI/application/controllers/admin.php @@ -0,0 +1,1935 @@ +userlevel < 5) show_404(); + + $this->headers('admin'); + $this->load->view('admin/panel.php'); + $this->footer(); + } + + function building_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('building_model'); + + $data['buildings'] = $this->building_model->list_buildings_admin(); + + $this->headers('admin'); + $this->load->view('admin/building_tool/list.php', $data); + $this->footer(); + } + + function building($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('building_model'); + $this->load->model('unit_model'); + $this->load->model('assignment_model'); + $this->load->model('technology_model'); + + $this->form_validation->set_rules('name', 'Name', 'required'); + $this->form_validation->set_rules('description', 'Description', 'alphanumeric'); + $this->form_validation->set_rules('icon', 'Icon', 'required'); + $this->form_validation->set_rules('rank', 'Rank', 'integer'); + $data['nextr'] = $this->input->post('next_rank'); //has to be done like this :( + $data['optnr'] = $this->building_model->get_building_ranks_admin(); + + $this->form_validation->set_rules('time_to_build', 'Time to Build', 'integer'); + + //creates + $data['screate'] = $this->input->post('creates'); + $data['optcre'] = $this->unit_model->get_unit_list_dropdown_admin(); + + $this->form_validation->set_rules('num_creates', 'Num Creates', 'integer'); + + $this->form_validation->set_rules('score', 'Score', 'integer'); + $this->form_validation->set_rules('defense', 'Defense', 'integer'); + + $data['sability'] = $this->input->post('ability'); + + $this->form_validation->set_rules('cost_food', 'cost_food', 'integer'); + $this->form_validation->set_rules('cost_wood', 'cost_wood', 'integer'); + $this->form_validation->set_rules('cost_stone', 'cost_stone', 'integer'); + $this->form_validation->set_rules('cost_iron', 'cost_iron', 'integer'); + $this->form_validation->set_rules('cost_mana', 'cost_mana', 'integer'); + + $this->form_validation->set_rules('mod_max_food', 'Mod Max Food', 'integer'); + $this->form_validation->set_rules('mod_max_wood', 'Mod Max Wood', 'integer'); + $this->form_validation->set_rules('mod_max_stone', 'Mod Max Stone', 'integer'); + $this->form_validation->set_rules('mod_max_iron', 'Mod Max Iron', 'integer'); + $this->form_validation->set_rules('mod_max_mana', 'Mod Max Mana', 'integer'); + + $this->form_validation->set_rules('mod_rate_food', 'Mod Rate Food', 'numeric'); + $this->form_validation->set_rules('mod_rate_wood', 'Mod Rate Wood', 'numeric'); + $this->form_validation->set_rules('mod_rate_stone', 'Mod Rate Stone', 'numeric'); + $this->form_validation->set_rules('mod_rate_iron', 'Mod Rate Iron', 'numeric'); + $this->form_validation->set_rules('mod_rate_mana', 'Mod Rate Mana', 'numeric'); + + $this->form_validation->set_rules('mod_percent_food', 'Mod Percent Food', 'integer'); + $this->form_validation->set_rules('mod_percent_wood', 'Mod Percent Wood', 'integer'); + $this->form_validation->set_rules('mod_percent_stone', 'Mod Percent Stone', 'integer'); + $this->form_validation->set_rules('mod_percent_iron', 'Mod Percent Iron', 'integer'); + $this->form_validation->set_rules('mod_percent_mana', 'Mod Percent Mana', 'integer'); + + //assignments + $data['optass'] = $this->assignment_model->get_assignment_list_drop_admin(); + $data['assign1'] = $this->input->post('assign1'); + $data['assign2'] = $this->input->post('assign2'); + $data['assign3'] = $this->input->post('assign3'); + $data['assign4'] = $this->input->post('assign4'); + $data['assign5'] = $this->input->post('assign5'); + + $data['optreqtech'] = $this->technology_model->get_tech_list_drop_admin(); + $data['selreqtech'] = $this->input->post('req_tech'); + + $data['opttechgroup'] = $this->technology_model->get_tech_group_list_drop_admin(); + + $data['seltechgroup'] = $this->input->post('tech_group'); + $data['seltechsecgroup'] = $this->input->post('tech_secondary_group'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/building_tool/building', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['building'] = $this->building_model->get_building_admin($id); + + $this->load->view('admin/building_tool/building', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['name'] = $this->input->post('name'); + $data['description'] = $this->input->post('description'); + $data['icon'] = $this->input->post('icon'); + $data['rank'] = $this->input->post('rank'); + $data['next_rank'] = $this->input->post('next_rank'); + $data['time_to_build'] = $this->input->post('time_to_build'); + + $data['creates'] = $this->input->post('creates'); + $data['num_creates'] = $this->input->post('num_creates'); + + $data['score'] = $this->input->post('score'); + $data['defense'] = $this->input->post('defense'); + $data['ability'] = $this->input->post('ability'); + + $data['cost_food'] = $this->input->post('cost_food'); + $data['cost_wood'] = $this->input->post('cost_wood'); + $data['cost_stone'] = $this->input->post('cost_stone'); + $data['cost_iron'] = $this->input->post('cost_iron'); + $data['cost_mana'] = $this->input->post('cost_mana'); + + $data['mod_max_food'] = $this->input->post('mod_max_food'); + $data['mod_max_wood'] = $this->input->post('mod_max_wood'); + $data['mod_max_stone'] = $this->input->post('mod_max_stone'); + $data['mod_max_iron'] = $this->input->post('mod_max_iron'); + $data['mod_max_mana'] = $this->input->post('mod_max_mana'); + + $data['mod_rate_food'] = $this->input->post('mod_rate_food'); + $data['mod_rate_wood'] = $this->input->post('mod_rate_wood'); + $data['mod_rate_stone'] = $this->input->post('mod_rate_stone'); + $data['mod_rate_iron'] = $this->input->post('mod_rate_iron'); + $data['mod_rate_mana'] = $this->input->post('mod_rate_mana'); + + $data['mod_percent_food'] = $this->input->post('mod_percent_food'); + $data['mod_percent_wood'] = $this->input->post('mod_percent_wood'); + $data['mod_percent_stone'] = $this->input->post('mod_percent_stone'); + $data['mod_percent_iron'] = $this->input->post('mod_percent_iron'); + $data['mod_percent_mana'] = $this->input->post('mod_percent_mana'); + + $data['assignment1'] = $this->input->post('assign1'); + $data['assignment2'] = $this->input->post('assign2'); + $data['assignment3'] = $this->input->post('assign3'); + $data['assignment4'] = $this->input->post('assign4'); + $data['assignment5'] = $this->input->post('assign5'); + + $data['req_tech'] = $this->input->post('req_tech'); + + $data['tech_group'] = $this->input->post('tech_group'); + $data['tech_secondary_group'] = $this->input->post('tech_secondary_group'); + + $this->load->model('building_model'); + + if ($id == -1) + { + //making new + $this->building_model->add_building_admin($data); + } + else + { + //editing + $this->building_model->edit_building_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/building_tool'); + } + } + +//unit tool + function unit_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('unit_model'); + + $data['units'] = $this->unit_model->list_units_admin(); + + $this->headers('admin'); + $this->load->view('admin/unit_tool/list.php', $data); + $this->footer(); + } + + function unit($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('unit_model'); + $this->load->model('ai_model'); + + $this->form_validation->set_rules('name', 'Name', 'required'); + $this->form_validation->set_rules('icon', 'Icon', 'required'); + $this->form_validation->set_rules('type', 'Type', 'integer'); + + $this->form_validation->set_rules('score', 'Score', 'integer'); + + $data['scd'] = $this->input->post('can_defend'); + + $this->form_validation->set_rules('defense', 'Type', 'numeric'); + $this->form_validation->set_rules('attack', 'Type', 'numeric'); + + $data['sstrong'] = $this->input->post('strong_against'); + $data['sweak'] = $this->input->post('weak_against'); + + $data['optaiu'] = $this->ai_model->get_unit_list_drop_admin(); + + $this->form_validation->set_rules('turn', 'Turn', 'integer'); + $this->form_validation->set_rules('ability', 'Ability', 'integer'); + + $this->form_validation->set_rules('time_to_create', 'Time to Create', 'integer'); + + $data['costu'] = $this->input->post('cost_unit'); //has to be done like this :( + $data['optu'] = $this->unit_model->get_unit_list_dropdown_admin(); + + $this->form_validation->set_rules('cost_num_unit', 'Cost Number of Units', 'integer'); + + $this->form_validation->set_rules('cost_food', 'cost_food', 'integer'); + $this->form_validation->set_rules('cost_wood', 'cost_wood', 'integer'); + $this->form_validation->set_rules('cost_stone', 'cost_stone', 'integer'); + $this->form_validation->set_rules('cost_iron', 'cost_iron', 'integer'); + $this->form_validation->set_rules('cost_mana', 'cost_mana', 'integer'); + + $this->form_validation->set_rules('mod_rate_food', 'Mod Rate Food', 'numeric'); + $this->form_validation->set_rules('mod_rate_wood', 'Mod Rate Wood', 'numeric'); + $this->form_validation->set_rules('mod_rate_stone', 'Mod Rate Stone', 'numeric'); + $this->form_validation->set_rules('mod_rate_iron', 'Mod Rate Iron', 'numeric'); + $this->form_validation->set_rules('mod_rate_mana', 'Mod Rate Mana', 'numeric'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/unit_tool/unit', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['unit'] = $this->unit_model->get_unit_admin($id); + + $this->load->view('admin/unit_tool/unit', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['type'] = $this->input->post('type'); + $data['name'] = $this->input->post('name'); + $data['icon'] = $this->input->post('icon'); + $data['score'] = $this->input->post('score'); + + $data['can_defend'] = $this->input->post('can_defend'); + $data['defense'] = $this->input->post('defense'); + $data['attack'] = $this->input->post('attack'); + $data['weak_against'] = $this->input->post('weak_against'); + $data['strong_against'] = $this->input->post('strong_against'); + $data['turn'] = $this->input->post('turn'); + $data['ability'] = $this->input->post('ability'); + + $data['time_to_create'] = $this->input->post('time_to_create'); + + $data['cost_unit'] = $this->input->post('cost_unit'); + $data['cost_num_unit'] = $this->input->post('cost_num_unit'); + + $data['cost_food'] = $this->input->post('cost_food'); + $data['cost_wood'] = $this->input->post('cost_wood'); + $data['cost_stone'] = $this->input->post('cost_stone'); + $data['cost_iron'] = $this->input->post('cost_iron'); + $data['cost_mana'] = $this->input->post('cost_mana'); + + $data['mod_rate_food'] = $this->input->post('mod_rate_food'); + $data['mod_rate_wood'] = $this->input->post('mod_rate_wood'); + $data['mod_rate_stone'] = $this->input->post('mod_rate_stone'); + $data['mod_rate_iron'] = $this->input->post('mod_rate_iron'); + $data['mod_rate_mana'] = $this->input->post('mod_rate_mana'); + + $this->load->model('unit_model'); + + if ($id == -1) + { + //making new + $this->unit_model->add_unit_admin($data); + } + else + { + //editing + $this->unit_model->edit_unit_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/unit_tool'); + } + } + +//assignment tool + function assignment_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('assignment_model'); + + $data['assignments'] = $this->assignment_model->get_assignments_admin(); + + $this->headers('admin'); + $this->load->view('admin/assignment_tool/list.php', $data); + $this->footer(); + } + + function assignment($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('assignment_model'); + $this->load->model('unit_model'); + $this->load->model('spell_model'); + $this->load->model('technology_model'); + + //assign + $data['sassign'] = $this->input->post('unitid'); + $data['optass'] = $this->unit_model->get_unit_list_dropdown_admin(); + + $this->form_validation->set_rules('max', 'Max Assign', 'is_natural|required'); + $this->form_validation->set_rules('bonus_per_assigned', 'Assigned/bonus', + 'integer'); + + $data['ssp'] = $this->input->post('spellid'); + $data['optsp'] = $this->spell_model->get_spell_list_drop_admin(); + + $data['srtech'] = $this->input->post('req_tech'); + $data['optrtech'] = $this->technology_model->get_tech_list_drop_admin(); + + $this->form_validation->set_rules('mod_max_food', 'Mod Max Food', 'integer'); + $this->form_validation->set_rules('mod_max_wood', 'Mod Max Wood', 'integer'); + $this->form_validation->set_rules('mod_max_stone', 'Mod Max Stone', 'integer'); + $this->form_validation->set_rules('mod_max_iron', 'Mod Max Iron', 'integer'); + $this->form_validation->set_rules('mod_max_mana', 'Mod Max Mana', 'integer'); + + $this->form_validation->set_rules('mod_rate_food', 'Mod Rate Food', 'numeric'); + $this->form_validation->set_rules('mod_rate_wood', 'Mod Rate Wood', 'numeric'); + $this->form_validation->set_rules('mod_rate_stone', 'Mod Rate Stone', 'numeric'); + $this->form_validation->set_rules('mod_rate_iron', 'Mod Rate Iron', 'numeric'); + $this->form_validation->set_rules('mod_rate_mana', 'Mod Rate Mana', 'numeric'); + + $this->form_validation->set_rules('mod_percent_food', 'Mod Percent Food', 'numeric'); + $this->form_validation->set_rules('mod_percent_wood', 'Mod Percent Wood', 'numeric'); + $this->form_validation->set_rules('mod_percent_stone', 'Mod Percent Stone', 'numeric'); + $this->form_validation->set_rules('mod_percent_iron', 'Mod Percent Iron', 'numeric'); + $this->form_validation->set_rules('mod_percent_mana', 'Mod Percent Mana', 'numeric'); + + $this->form_validation->set_rules('description', 'Description', 'alphanumeric'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/assignment_tool/assignment', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['assignment'] = $this->assignment_model->get_assignment_admin($id); + + $this->load->view('admin/assignment_tool/assignment', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['unitid'] = $this->input->post('unitid'); + $data['max'] = $this->input->post('max'); + $data['bonus_per_assigned'] = $this->input->post('bonus_per_assigned'); + $data['spellid'] = $this->input->post('spellid'); + $data['req_tech'] = $this->input->post('req_tech'); + + $data['mod_max_food'] = $this->input->post('mod_max_food'); + $data['mod_max_wood'] = $this->input->post('mod_max_wood'); + $data['mod_max_stone'] = $this->input->post('mod_max_stone'); + $data['mod_max_iron'] = $this->input->post('mod_max_iron'); + $data['mod_max_mana'] = $this->input->post('mod_max_mana'); + + $data['mod_rate_food'] = $this->input->post('mod_rate_food'); + $data['mod_rate_wood'] = $this->input->post('mod_rate_wood'); + $data['mod_rate_stone'] = $this->input->post('mod_rate_stone'); + $data['mod_rate_iron'] = $this->input->post('mod_rate_iron'); + $data['mod_rate_mana'] = $this->input->post('mod_rate_mana'); + + $data['mod_percent_food'] = $this->input->post('mod_percent_food'); + $data['mod_percent_wood'] = $this->input->post('mod_percent_wood'); + $data['mod_percent_stone'] = $this->input->post('mod_percent_stone'); + $data['mod_percent_iron'] = $this->input->post('mod_percent_iron'); + $data['mod_percent_mana'] = $this->input->post('mod_percent_mana'); + + $data['description'] = $this->input->post('description'); + + $this->load->model('assignment_model'); + + if ($id == -1) + { + //making new + $this->assignment_model->add_assignment_admin($data); + } + else + { + //editing + $this->assignment_model->edit_assignment_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/assignment_tool'); + } + } + +//technology tool + function technology_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('technology_model'); + + $data['technologies'] = $this->technology_model->list_technologies_admin(); + + $this->headers('admin'); + $this->load->view('admin/technology_tool/list.php', $data); + $this->footer(); + } + + function technology($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('technology_model'); + $this->load->model('spell_model'); + $this->load->model('unit_model'); + + $this->form_validation->set_rules('description', 'Description', 'required'); + + $this->form_validation->set_rules('time', 'Time', 'integer'); + + $this->form_validation->set_rules('score', 'Score', 'integer'); + + $this->form_validation->set_rules('cost_food', 'cost_food', 'integer'); + $this->form_validation->set_rules('cost_wood', 'cost_wood', 'integer'); + $this->form_validation->set_rules('cost_stone', 'cost_stone', 'integer'); + $this->form_validation->set_rules('cost_iron', 'cost_iron', 'integer'); + $this->form_validation->set_rules('cost_mana', 'cost_mana', 'integer'); + + $this->form_validation->set_rules('mod_max_food', 'Mod Max Food', 'integer'); + $this->form_validation->set_rules('mod_max_wood', 'Mod Max Wood', 'integer'); + $this->form_validation->set_rules('mod_max_stone', 'Mod Max Stone', 'integer'); + $this->form_validation->set_rules('mod_max_iron', 'Mod Max Iron', 'integer'); + $this->form_validation->set_rules('mod_max_mana', 'Mod Max Mana', 'integer'); + + $this->form_validation->set_rules('mod_rate_food', 'Mod Rate Food', 'numeric'); + $this->form_validation->set_rules('mod_rate_wood', 'Mod Rate Wood', 'numeric'); + $this->form_validation->set_rules('mod_rate_stone', 'Mod Rate Stone', 'numeric'); + $this->form_validation->set_rules('mod_rate_iron', 'Mod Rate Iron', 'numeric'); + $this->form_validation->set_rules('mod_rate_mana', 'Mod Rate Mana', 'numeric'); + + $this->form_validation->set_rules('mod_percent_food', 'Mod Percent Food', 'integer'); + $this->form_validation->set_rules('mod_percent_wood', 'Mod Percent Wood', 'integer'); + $this->form_validation->set_rules('mod_percent_stone', 'Mod Percent Stone', 'integer'); + $this->form_validation->set_rules('mod_percent_iron', 'Mod Percent Iron', 'integer'); + $this->form_validation->set_rules('mod_percent_mana', 'Mod Percent Mana', 'integer'); + + + //mod_spell_id dropdown + $data['mspidopt'] = $this->spell_model->get_spell_mod_drop_admin(); + $data['sspid'] = $this->input->post('mod_spell_id'); + + //mod_create_id dropdown + $data['mcidopt'] = $this->unit_model->list_create_mod_drop_admin(); + $data['smcid'] = $this->input->post('mod_create_id'); + + $data['sflai'] = $this->input->post('flag_ai'); + + $data['selissec'] = $this->input->post('is_secondary'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/technology_tool/technology', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['technology'] = $this->technology_model->get_technology_admin( + $id); + + $this->load->view('admin/technology_tool/technology', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['description'] = $this->input->post('description'); + + $data['time'] = $this->input->post('time'); + + $data['score'] = $this->input->post('score'); + + $data['cost_food'] = $this->input->post('cost_food'); + $data['cost_wood'] = $this->input->post('cost_wood'); + $data['cost_stone'] = $this->input->post('cost_stone'); + $data['cost_iron'] = $this->input->post('cost_iron'); + $data['cost_mana'] = $this->input->post('cost_mana'); + + $data['mod_max_food'] = $this->input->post('mod_max_food'); + $data['mod_max_wood'] = $this->input->post('mod_max_wood'); + $data['mod_max_stone'] = $this->input->post('mod_max_stone'); + $data['mod_max_iron'] = $this->input->post('mod_max_iron'); + $data['mod_max_mana'] = $this->input->post('mod_max_mana'); + + $data['mod_rate_food'] = $this->input->post('mod_rate_food'); + $data['mod_rate_wood'] = $this->input->post('mod_rate_wood'); + $data['mod_rate_stone'] = $this->input->post('mod_rate_stone'); + $data['mod_rate_iron'] = $this->input->post('mod_rate_iron'); + $data['mod_rate_mana'] = $this->input->post('mod_rate_mana'); + + $data['mod_percent_food'] = $this->input->post('mod_percent_food'); + $data['mod_percent_wood'] = $this->input->post('mod_percent_wood'); + $data['mod_percent_stone'] = $this->input->post('mod_percent_stone'); + $data['mod_percent_iron'] = $this->input->post('mod_percent_iron'); + $data['mod_percent_mana'] = $this->input->post('mod_percent_mana'); + + $data['mod_create_id'] = $this->input->post('mod_create_id'); + $data['mod_spell_id'] = $this->input->post('mod_spell_id'); + + $data['flag_ai'] = $this->input->post('flag_ai'); + + $data['is_secondary'] = $this->input->post('is_secondary'); + + $this->load->model('building_model'); + + if ($id == -1) + { + //making new + $this->technology_model->add_technology_admin($data); + } + else + { + //editing + $this->technology_model->edit_technology_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/technology_tool'); + } + } + +//technology_group_tool + function technology_group_desc($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('technology_model'); + + $this->form_validation->set_rules('group_name', 'Group Name', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/technology_group_tool/tech_group_desc', + $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['group'] = $this->technology_model->get_tech_group_desc_admin( + $id); + + $this->load->view('admin/technology_group_tool/tech_group_desc', + $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['group_name'] = $this->input->post('group_name'); + + $this->load->model('technology_model'); + + if ($id == -1) + { + //making new + $this->technology_model->add_tech_group_desc_admin($data); + } + else + { + //editing + $this->technology_model->edit_tech_group_desc_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/technology_group_tool'); + } + } + +//technology group tool + function technology_group_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('technology_model'); + + $data['groups'] = $this->technology_model->list_tech_groups_admin(); + + $this->headers('admin'); + $this->load->view('admin/technology_group_tool/list.php', $data); + $this->footer(); + } + + function technology_group($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('technology_model'); + + $this->form_validation->set_rules('action', 'Action', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + $data['id'] = $id; + $data['group'] = $this->technology_model->get_group_admin($id); + $data['opttech'] = $this->technology_model->list_tech_drop_admin(); + $data['seltech'] = $this->input->post('add'); + + $this->load->view('admin/technology_group_tool/tech_groups', $data); + + $this->footer(); + } + else + { + $action = $this->input->post('action'); + + $this->load->model('technology_model'); + + if ($action == 'add') + { + $techid = $this->input->post('add'); + + $this->technology_model->add_tech_to_group_admin($id, $techid); + } + elseif ($action == 'delete') + { + $techid = $this->input->post('id'); + $this->technology_model->remove_tech_from_group_admin($id, $techid); + } + $this->load->helper('url'); + + redirect('admin/technology_group/' . $id); + } + } + +//technology requirements tool + function technology_requirements_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('technology_model'); + + $data['technologies'] = $this->technology_model->list_tech_have_req_admin(); + + $this->headers('admin'); + $this->load->view('admin/technology_requirements_tool/list.php', $data); + $this->footer(); + } + + function have_technology_requirement($id = -1) + { + if ($this->userlevel < 5) show_404(); + + if (!$id) + { + $this->load->helper('url'); + redirect('admin/admin_panel'); + } + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('action', 'Action', 'required'); + + $this->load->model('technology_model'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + $data['opts'] = $this->technology_model->list_tech_drop_admin(); + + $this->load->view('admin/technology_requirements_tool/add_to_list', + $data); + + } + else + { + $data['id'] = $id; + $data['tech'] = $this->technology_model->get_req_list_item_admin( + $id); + + $this->load->view('admin/technology_requirements_tool/remove_conf', + $data); + } + + $this->footer(); + } + else + { + $action = $this->input->post('action'); + + if ($action == 'new') + { + $data['technologyid'] = $this->input->post('technologyid'); + $data['comment'] = $this->input->post('comment'); + + $this->technology_model->add_to_req_list_admin($data); + } + + if ($action == 'delete') + { + $id = $this->input->post('technologyid'); + + $this->technology_model->remove_from_req_list_admin($id); + } + + $this->load->helper('url'); + redirect('admin/technology_requirements_tool'); + } + } + + function technology_requirements($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('technology_model'); + + $this->form_validation->set_rules('action', 'Action', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + $data['id'] = $id; + + + $data['technology'] = $this->technology_model->get_tech_by_req_id_admin( + $id); + $data['required'] = $this->technology_model->get_tech_requirements_admin( + $data['technology']['id']); + + $data['opttech'] = $this->technology_model->list_tech_drop_admin(); + $data['seltech'] = $this->input->post('add'); + + $this->load->view('admin/technology_requirements_tool/tech_req', $data); + + $this->footer(); + } + else + { + $action = $this->input->post('action'); + + if ($action == 'add') + { + $techid = $this->input->post('technologyid'); + $addtechid = $this->input->post('add'); + + $this->technology_model->add_tech_req_admin($techid, $addtechid); + } + elseif ($action == 'delete') + { + $tid = $this->input->post('id'); + $this->technology_model->remove_tech_req_admin($tid); + } + $this->load->helper('url'); + + redirect('admin/technology_requirements/' . $id); + } + } + +//spell_tool + function spell_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('spell_model'); + + $data['spells'] = $this->spell_model->list_spells_admin(); + + $this->headers('admin'); + $this->load->view('admin/spell_tool/list.php', $data); + $this->footer(); + } + + function spell($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('spell_model'); + $this->load->model('weather_model'); + + //spell effects + $data['seff'] = $this->input->post('effect'); + $data['opteff'] = $this->spell_model->get_spell_effects_admin(); + + $this->form_validation->set_rules('duration', 'Duration', 'required|is_natural'); + $this->form_validation->set_rules('cooldown', 'Cooldown', 'required|is_natural'); + $this->form_validation->set_rules('description', 'Description', 'required'); + $this->form_validation->set_rules('description_admin', 'Desc Admin', 'required'); + + $data['sweather'] = $this->input->post('weather_change_to'); + $data['optweather'] = $this->weather_model->get_weathers_drop_admin(); + + $this->form_validation->set_rules('cost_food', 'cost_food', 'integer'); + $this->form_validation->set_rules('cost_wood', 'cost_wood', 'integer'); + $this->form_validation->set_rules('cost_stone', 'cost_stone', 'integer'); + $this->form_validation->set_rules('cost_iron', 'cost_iron', 'integer'); + $this->form_validation->set_rules('cost_mana', 'cost_mana', 'integer'); + + $this->form_validation->set_rules('mod_max_food', 'Mod Max Food', 'integer'); + $this->form_validation->set_rules('mod_max_wood', 'Mod Max Wood', 'integer'); + $this->form_validation->set_rules('mod_max_stone', 'Mod Max Stone', 'integer'); + $this->form_validation->set_rules('mod_max_iron', 'Mod Max Iron', 'integer'); + $this->form_validation->set_rules('mod_max_mana', 'Mod Max Mana', 'integer'); + + $this->form_validation->set_rules('mod_rate_food', 'Mod Rate Food', 'numeric'); + $this->form_validation->set_rules('mod_rate_wood', 'Mod Rate Wood', 'numeric'); + $this->form_validation->set_rules('mod_rate_stone', 'Mod Rate Stone', 'numeric'); + $this->form_validation->set_rules('mod_rate_iron', 'Mod Rate Iron', 'numeric'); + $this->form_validation->set_rules('mod_rate_mana', 'Mod Rate Mana', 'numeric'); + + $this->form_validation->set_rules('mod_percent_food', 'Mod Percent Food', 'integer'); + $this->form_validation->set_rules('mod_percent_wood', 'Mod Percent Wood', 'integer'); + $this->form_validation->set_rules('mod_percent_stone', 'Mod Percent Stone', 'integer'); + $this->form_validation->set_rules('mod_percent_iron', 'Mod Percent Iron', 'integer'); + $this->form_validation->set_rules('mod_percent_mana', 'Mod Percent Mana', 'integer'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/spell_tool/spell', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['spell'] = $this->spell_model->get_spell_admin($id); + + $this->load->view('admin/spell_tool/spell', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['effect'] = $this->input->post('effect'); + $data['duration'] = $this->input->post('duration'); + $data['cooldown'] = $this->input->post('cooldown'); + $data['description'] = $this->input->post('description'); + $data['description_admin'] = $this->input->post('description_admin'); + + $data['weather_change_to'] = $this->input->post('weather_change_to'); + + $data['cost_food'] = $this->input->post('cost_food'); + $data['cost_wood'] = $this->input->post('cost_wood'); + $data['cost_stone'] = $this->input->post('cost_stone'); + $data['cost_iron'] = $this->input->post('cost_iron'); + $data['cost_mana'] = $this->input->post('cost_mana'); + + $data['mod_max_food'] = $this->input->post('mod_max_food'); + $data['mod_max_wood'] = $this->input->post('mod_max_wood'); + $data['mod_max_stone'] = $this->input->post('mod_max_stone'); + $data['mod_max_iron'] = $this->input->post('mod_max_iron'); + $data['mod_max_mana'] = $this->input->post('mod_max_mana'); + + $data['mod_rate_food'] = $this->input->post('mod_rate_food'); + $data['mod_rate_wood'] = $this->input->post('mod_rate_wood'); + $data['mod_rate_stone'] = $this->input->post('mod_rate_stone'); + $data['mod_rate_iron'] = $this->input->post('mod_rate_iron'); + $data['mod_rate_mana'] = $this->input->post('mod_rate_mana'); + + $data['mod_percent_food'] = $this->input->post('mod_percent_food'); + $data['mod_percent_wood'] = $this->input->post('mod_percent_wood'); + $data['mod_percent_stone'] = $this->input->post('mod_percent_stone'); + $data['mod_percent_iron'] = $this->input->post('mod_percent_iron'); + $data['mod_percent_mana'] = $this->input->post('mod_percent_mana'); + + $this->load->model('spell_model'); + + if ($id == -1) + { + //making new + $this->spell_model->add_spell_admin($data); + } + else + { + //editing + $this->spell_model->edit_spell_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/spell_tool'); + } + } + +//weather_tool + function weather_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('weather_model'); + + $data['weathers'] = $this->weather_model->list_weathers_admin(); + + $this->headers('admin'); + $this->load->view('admin/weather_tool/list.php', $data); + $this->footer(); + } + + function weather($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('weather_model'); + + $this->form_validation->set_rules('name', 'Name', 'required'); + $this->form_validation->set_rules('description', 'Description', 'required'); + $this->form_validation->set_rules('art', 'Art', 'required'); + $this->form_validation->set_rules('css', 'CSS', 'required'); + + //spell effects + $data['seff'] = $this->input->post('effect'); + $data['opteff'] = $this->weather_model->get_weather_effects_drop_admin(); + + $this->form_validation->set_rules('mod_max_food', 'Mod Max Food', 'integer'); + $this->form_validation->set_rules('mod_max_wood', 'Mod Max Wood', 'integer'); + $this->form_validation->set_rules('mod_max_stone', 'Mod Max Stone', 'integer'); + $this->form_validation->set_rules('mod_max_iron', 'Mod Max Iron', 'integer'); + $this->form_validation->set_rules('mod_max_mana', 'Mod Max Mana', 'integer'); + + $this->form_validation->set_rules('mod_percent_food', 'Mod Percent Food', 'integer'); + $this->form_validation->set_rules('mod_percent_wood', 'Mod Percent Wood', 'integer'); + $this->form_validation->set_rules('mod_percent_stone', 'Mod Percent Stone', 'integer'); + $this->form_validation->set_rules('mod_percent_iron', 'Mod Percent Iron', 'integer'); + $this->form_validation->set_rules('mod_percent_mana', 'Mod Percent Mana', 'integer'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/weather_tool/weather', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['weather'] = $this->weather_model->get_weather_admin($id); + + $this->load->view('admin/weather_tool/weather', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + + $data['name'] = $this->input->post('name'); + $data['description'] = $this->input->post('description'); + $data['art'] = $this->input->post('art'); + $data['css'] = $this->input->post('css'); + + $data['effect'] = $this->input->post('effect'); + + $data['cost_food'] = $this->input->post('cost_food'); + $data['cost_wood'] = $this->input->post('cost_wood'); + $data['cost_stone'] = $this->input->post('cost_stone'); + $data['cost_iron'] = $this->input->post('cost_iron'); + $data['cost_mana'] = $this->input->post('cost_mana'); + + $data['mod_max_food'] = $this->input->post('mod_max_food'); + $data['mod_max_wood'] = $this->input->post('mod_max_wood'); + $data['mod_max_stone'] = $this->input->post('mod_max_stone'); + $data['mod_max_iron'] = $this->input->post('mod_max_iron'); + $data['mod_max_mana'] = $this->input->post('mod_max_mana'); + + $data['mod_rate_food'] = $this->input->post('mod_rate_food'); + $data['mod_rate_wood'] = $this->input->post('mod_rate_wood'); + $data['mod_rate_stone'] = $this->input->post('mod_rate_stone'); + $data['mod_rate_iron'] = $this->input->post('mod_rate_iron'); + $data['mod_rate_mana'] = $this->input->post('mod_rate_mana'); + + $data['mod_percent_food'] = $this->input->post('mod_percent_food'); + $data['mod_percent_wood'] = $this->input->post('mod_percent_wood'); + $data['mod_percent_stone'] = $this->input->post('mod_percent_stone'); + $data['mod_percent_iron'] = $this->input->post('mod_percent_iron'); + $data['mod_percent_mana'] = $this->input->post('mod_percent_mana'); + + $this->load->model('weather_model'); + + if ($id == -1) + { + //making new + $this->weather_model->add_weather_admin($data); + } + else + { + //editing + $this->weather_model->edit_weather_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/weather_tool'); + } + } + + //HERO TOOLS + + //hero templates + function hero_template_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('hero_model'); + + $data['templates'] = $this->hero_model->all_hero_templates_admin(); + + $this->headers('admin'); + $this->load->view('admin/hero_template_tool/list.php', $data); + $this->footer(); + } + + function hero_templates($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('hero_model'); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('classname', 'Classname', 'required|alpha'); + + $this->form_validation->set_rules('nomod_max_health', 'Nomod Health', 'required|is_natural'); + $this->form_validation->set_rules('nomod_max_mana', 'Nomod Mana', 'required|is_natural'); + + $this->form_validation->set_rules('agility', 'Agility', 'integer'); + $this->form_validation->set_rules('strength', 'Strength', 'integer'); + $this->form_validation->set_rules('stamina', 'Stamina', 'integer'); + $this->form_validation->set_rules('intellect', 'Intellect', 'integer'); + $this->form_validation->set_rules('spirit', 'Spirit', 'integer'); + + $this->form_validation->set_rules('nomod_attackpower', 'Nomod Attackpower', 'integer'); + + $this->form_validation->set_rules('nomod_dodge', 'Nomod Dodge', 'numeric'); + $this->form_validation->set_rules('nomod_parry', 'Nomod Parry', 'numeric'); + $this->form_validation->set_rules('hit', 'Hit', 'numeric'); + $this->form_validation->set_rules('nomod_crit', 'Nomod Crit', 'numeric'); + + $this->form_validation->set_rules('nomod_damage_min', 'Nomod Damage Min', 'integer'); + $this->form_validation->set_rules('nomod_damage_max', 'Nomod Damage Max', 'integer'); + + $this->form_validation->set_rules('nomod_ranged_damage_min', 'Nomod Damage Min', 'integer'); + $this->form_validation->set_rules('nomod_ranged_damage_max', 'Nomod Damage Max', 'integer'); + + $this->form_validation->set_rules('nomod_heal_min', 'Nomod Heal Min', 'integer'); + $this->form_validation->set_rules('nomod_heal_max', 'Nomod Heal Max', 'integer'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/hero_template_tool/hero', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['template'] = $this->hero_model->get_template_admin($id); + + $this->load->view('admin/hero_template_tool/hero', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + + $data['classname'] = $this->input->post('classname'); + + $data['nomod_max_health'] = $this->input->post('nomod_max_health'); + $data['nomod_max_mana'] = $this->input->post('nomod_max_mana'); + + $data['agility'] = $this->input->post('agility'); + $data['strength'] = $this->input->post('strength'); + $data['stamina'] = $this->input->post('stamina'); + $data['intellect'] = $this->input->post('intellect'); + $data['spirit'] = $this->input->post('spirit'); + + $data['nomod_attackpower'] = $this->input->post('nomod_attackpower'); + + $data['nomod_dodge'] = $this->input->post('nomod_dodge'); + $data['nomod_parry'] = $this->input->post('nomod_parry'); + $data['hit'] = $this->input->post('hit'); + $data['nomod_crit'] = $this->input->post('nomod_crit'); + + $data['nomod_damage_min'] = $this->input->post('nomod_damage_min'); + $data['nomod_damage_max'] = $this->input->post('nomod_damage_max'); + + $data['nomod_ranged_damage_min'] = $this->input->post('nomod_ranged_damage_min'); + $data['nomod_ranged_damage_max'] = $this->input->post('nomod_ranged_damage_max'); + + $data['nomod_heal_min'] = $this->input->post('nomod_heal_min'); + $data['nomod_heal_max'] = $this->input->post('nomod_heal_max'); + + if ($id == -1) + { + //making new + $this->hero_model->add_template_admin($data); + } + else + { + //editing + $this->hero_model->edit_template_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/hero_template_tool'); + } + } + +//technology requirements tool + function hero_inventory_template_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('hero_model'); + + $data['classes'] = $this->hero_model->all_hero_templates_admin(); + + $this->headers('admin'); + $this->load->view('admin/hero_inventory_template_tool/list.php', $data); + $this->footer(); + } + + function hero_inventory_templates($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('item_model'); + + $this->form_validation->set_rules('action', 'Action', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + $data['id'] = $id; + + $this->load->model('hero_model'); + + $data['hero'] = $this->hero_model->get_template_admin($id); + $data['items'] = $this->item_model->get_class_item_templates($id); + + $data['optitems'] = $this->item_model->all_items_drop_admin(); + $data['selitems'] = $this->input->post('add'); + + $this->load->view('admin/hero_inventory_template_tool/items', $data); + + $this->footer(); + } + else + { + $action = $this->input->post('action'); + + if ($action == 'add') + { + $classid = $this->input->post('classid'); + $additemid = $this->input->post('add'); + + $this->item_model->add_hero_item_template_admin($classid, $additemid); + } + elseif ($action == 'delete') + { + $iid = $this->input->post('id'); + $this->item_model->remove_hero_item_template_admin($iid); + } + $this->load->helper('url'); + + redirect('admin/hero_inventory_templates/' . $id); + } + } + + //item tool + function item_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('item_model'); + + $data['items'] = $this->item_model->all_items_admin(); + + $this->headers('admin'); + $this->load->view('admin/item_tool/list.php', $data); + $this->footer(); + } + + function items($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('item_model'); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('name', 'Name', 'required'); + $this->form_validation->set_rules('icon', 'Icon', 'required'); + + $data['selquality'] = $this->input->post('quality'); + + $this->form_validation->set_rules('itemlevel', 'Itemlevel', 'integer'); + $this->form_validation->set_rules('stack', 'Stack', 'integer'); + + $data['seltype'] = $this->input->post('type'); + $data['selsubtype'] = $this->input->post('subtype'); + $data['selsubsubtype'] = $this->input->post('subsubtype'); + + $this->form_validation->set_rules('sell_price', 'Sell Price', 'integer'); + $this->form_validation->set_rules('buy_price', 'Buy Price', 'integer'); + + $this->form_validation->set_rules('text', 'Text', 'alphanumeric'); + + $data['selsoulbound'] = $this->input->post('soulbound'); + + $data['optspell'] = array('0' => 'NYI!'); + $data['selspell'] = $this->input->post('spell'); + + $data['optproc'] = array('0' => 'NYI!'); + $data['selproc'] = $this->input->post('proc'); + + $this->form_validation->set_rules('req_level', 'Req Level', 'integer'); + + $data['selreqclass'] = $this->input->post('req_class'); + + $this->form_validation->set_rules('nomod_max_health', 'Nomod Max Health', 'is_natural'); + $this->form_validation->set_rules('nomod_max_mana', 'Nomod Max Mana', 'is_natural'); + + $this->form_validation->set_rules('percent_max_health', 'Percent Max Health', 'is_natural'); + $this->form_validation->set_rules('percent_max_mana', 'Percent Max Mana', 'is_natural'); + + + $this->form_validation->set_rules('nomod_agility', 'Nomod Agility', 'integer'); + $this->form_validation->set_rules('nomod_strength', 'Nomod Strength', 'integer'); + $this->form_validation->set_rules('nomod_stamina', 'Nomod Stamina', 'integer'); + $this->form_validation->set_rules('nomod_intellect', 'Nomod Intellect', 'integer'); + $this->form_validation->set_rules('nomod_spirit', 'Nomod Spirit', 'integer'); + + $this->form_validation->set_rules('percent_agility', 'Percent Agility', 'integer'); + $this->form_validation->set_rules('percent_strength', 'Percent Strength', 'integer'); + $this->form_validation->set_rules('percent_stamina', 'Percent Stamina', 'integer'); + $this->form_validation->set_rules('percent_intellect', 'Percent Intellect', 'integer'); + $this->form_validation->set_rules('percent_spirit', 'Percent Spirit', 'integer'); + + $this->form_validation->set_rules('nomod_attackpower', 'Nomod Attackpower', 'integer'); + $this->form_validation->set_rules('percent_attackpower', 'Percent Attackpower', 'integer'); + + $this->form_validation->set_rules('nomod_armor', 'Nomod Armor', 'integer'); + $this->form_validation->set_rules('percent_armor', 'Percent Armor', 'integer'); + + $this->form_validation->set_rules('nomod_dodge', 'Nomod Dodge', 'numeric'); + $this->form_validation->set_rules('nomod_parry', 'Nomod Parry', 'numeric'); + $this->form_validation->set_rules('hit', 'Hit', 'numeric'); + $this->form_validation->set_rules('nomod_crit', 'Nomod Crit', 'numeric'); + + $this->form_validation->set_rules('nomod_damage_min', 'Nomod Damage Min', 'integer'); + $this->form_validation->set_rules('nomod_damage_max', 'Nomod Damage Max', 'integer'); + $this->form_validation->set_rules('percent_damage_min', 'Percent Damage Min', 'integer'); + $this->form_validation->set_rules('percent_damage_max', 'Percent Damage Max', 'integer'); + + $this->form_validation->set_rules('nomod_ranged_damage_min', 'Nomod Ranged Damage Min', 'integer'); + $this->form_validation->set_rules('nomod_ranged_damage_max', 'Nomod Ranged Damage Max', 'integer'); + $this->form_validation->set_rules('percent_ranged_damage_min', 'Percent Ranged Damage Min', 'integer'); + $this->form_validation->set_rules('percent_ranged_damage_max', 'Percent Ranged Damage Max', 'integer'); + + $this->form_validation->set_rules('nomod_heal_min', 'Nomod Heal Min', 'integer'); + $this->form_validation->set_rules('nomod_heal_max', 'Nomod Heal Max', 'integer'); + $this->form_validation->set_rules('percent_heal_min', 'Percent Heal Min', 'integer'); + $this->form_validation->set_rules('percent_heal_max', 'Percent Heal Max', 'integer'); + + $this->form_validation->set_rules('life_leech', 'Life Leech', 'integer'); + $this->form_validation->set_rules('mana_leech', 'Mana Leech', 'integer'); + + $this->form_validation->set_rules('level_modifier', 'Level Modifier', 'integer'); + $this->form_validation->set_rules('level_modifier_max', 'Level Modifier Max', 'integer'); + + $this->form_validation->set_rules('data1', 'Data1', 'integer'); + $this->form_validation->set_rules('data2', 'Data2', 'integer'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/item_tool/item', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['item'] = $this->item_model->get_item_admin($id); + + $this->load->view('admin/item_tool/item', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + + $data['name'] = $this->input->post('name'); + $data['icon'] = $this->input->post('icon'); + + $data['quality'] = $this->input->post('quality'); + + $data['itemlevel'] = $this->input->post('itemlevel'); + $data['stack'] = $this->input->post('stack'); + + $data['type'] = $this->input->post('type'); + $data['subtype'] = $this->input->post('subtype'); + $data['subsubtype'] = $this->input->post('subsubtype'); + + $data['sell_price'] = $this->input->post('sell_price'); + $data['buy_price'] = $this->input->post('buy_price'); + + $data['text'] = $this->input->post('text'); + + $data['soulbound'] = $this->input->post('soulbound'); + + $data['spell'] = $this->input->post('spell'); + + $data['proc'] = $this->input->post('proc'); + + $data['req_level'] = $this->input->post('req_level'); + + $data['req_class'] = $this->input->post('req_class'); + + $data['nomod_max_health'] = $this->input->post('nomod_max_health'); + $data['nomod_max_mana'] = $this->input->post('nomod_max_mana'); + + $data['percent_max_health'] = $this->input->post('percent_max_health'); + $data['percent_max_mana'] = $this->input->post('percent_max_mana'); + + $data['nomod_agility'] = $this->input->post('nomod_agility'); + $data['nomod_strength'] = $this->input->post('nomod_strength'); + $data['nomod_stamina'] = $this->input->post('nomod_stamina'); + $data['nomod_intellect'] = $this->input->post('nomod_intellect'); + $data['nomod_spirit'] = $this->input->post('nomod_spirit'); + + $data['percent_agility'] = $this->input->post('percent_agility'); + $data['percent_strength'] = $this->input->post('percent_strength'); + $data['percent_stamina'] = $this->input->post('percent_stamina'); + $data['percent_intellect'] = $this->input->post('percent_intellect'); + $data['percent_spirit'] = $this->input->post('percent_spirit'); + + $data['nomod_attackpower'] = $this->input->post('nomod_attackpower'); + $data['percent_attackpower'] = $this->input->post('percent_attackpower'); + + $data['nomod_armor'] = $this->input->post('nomod_armor'); + $data['percent_armor'] = $this->input->post('percent_armor'); + + $data['nomod_dodge'] = $this->input->post('nomod_dodge'); + $data['nomod_parry'] = $this->input->post('nomod_parry'); + $data['hit'] = $this->input->post('hit'); + $data['nomod_crit'] = $this->input->post('nomod_crit'); + + $data['nomod_damage_min'] = $this->input->post('nomod_damage_min'); + $data['nomod_damage_max'] = $this->input->post('nomod_damage_max'); + + $data['percent_damage_min'] = $this->input->post('percent_damage_min'); + $data['percent_damage_max'] = $this->input->post('percent_damage_max'); + + $data['nomod_ranged_damage_min'] = $this->input->post('nomod_ranged_damage_min'); + $data['nomod_ranged_damage_max'] = $this->input->post('nomod_ranged_damage_max'); + + $data['percent_ranged_damage_min'] = $this->input->post('percent_ranged_damage_min'); + $data['percent_ranged_damage_max'] = $this->input->post('percent_ranged_damage_max'); + + $data['nomod_heal_min'] = $this->input->post('nomod_heal_min'); + $data['nomod_heal_max'] = $this->input->post('nomod_heal_max'); + + $data['percent_heal_min'] = $this->input->post('percent_heal_min'); + $data['percent_heal_max'] = $this->input->post('percent_heal_max'); + + $data['life_leech'] = $this->input->post('life_leech'); + $data['mana_leech'] = $this->input->post('mana_leech'); + + $data['level_modifier'] = $this->input->post('level_modifier'); + $data['level_modifier_max'] = $this->input->post('level_modifier_max'); + + $data['data1'] = $this->input->post('data1'); + $data['data2'] = $this->input->post('data2'); + + if ($id == -1) + { + //making new + $this->item_model->add_item_admin($data); + } + else + { + //editing + $this->item_model->edit_item_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/item_tool'); + } + } + + +//AI Units + function ai_unit_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('ai_model'); + + $data['units'] = $this->ai_model->list_units_admin(); + + $this->headers('admin'); + $this->load->view('admin/ai_unit_tool/list.php', $data); + $this->footer(); + } + + function ai_unit($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('unit_model'); + $this->load->model('ai_model'); + + $this->form_validation->set_rules('name', 'Name', 'required'); + $this->form_validation->set_rules('icon', 'Icon', 'required'); + $this->form_validation->set_rules('ability', 'Ability', 'integer'); + $this->form_validation->set_rules('can_carry', 'Can Carry', 'integer'); + $this->form_validation->set_rules('attack', 'Attack', 'numeric'); + $this->form_validation->set_rules('Defense', 'Defense', 'numeric'); + $this->form_validation->set_rules('rate', 'Rate', 'numeric'); + $this->form_validation->set_rules('per_score', 'Per Score', 'integer'); + $this->form_validation->set_rules('turn', 'Turn', 'integer'); + + $data['sstrong'] = $this->input->post('strong_against'); + $data['sweak'] = $this->input->post('weak_against'); + + $data['optu'] = $this->unit_model->get_unit_list_dropdown_admin(); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/ai_unit_tool/unit', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['unit'] = $this->ai_model->get_unit_admin($id); + + $this->load->view('admin/ai_unit_tool/unit', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['name'] = $this->input->post('name'); + $data['icon'] = $this->input->post('icon'); + $data['ability'] = $this->input->post('ability'); + + $data['can_carry'] = $this->input->post('can_carry'); + $data['attack'] = $this->input->post('attack'); + $data['defense'] = $this->input->post('defense'); + + $data['rate'] = $this->input->post('rate'); + $data['per_score'] = $this->input->post('per_score'); + $data['turn'] = $this->input->post('turn'); + $data['strong_against'] = $this->input->post('strong_against'); + $data['weak_against'] = $this->input->post('weak_against'); + + $this->load->model('ai_model'); + + if ($id == -1) + { + //making new + $this->ai_model->add_unit_admin($data); + } + else + { + //editing + $this->ai_model->edit_unit_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/ai_unit_tool'); + } + } + + +//AI Settings + function ai_settings_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('ai_model'); + + $data['settings'] = $this->ai_model->get_settings_list_admin(); + + $this->headers('admin'); + $this->load->view('admin/ai_settings_tool/list.php', $data); + $this->footer(); + } + + + function ai_settings($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('ai_model'); + + $this->form_validation->set_rules('setting', 'Setting', 'required'); + $this->form_validation->set_rules('value', 'Value', 'required'); + $this->form_validation->set_rules('description', 'Description', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/ai_settings_tool/settings', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['setting'] = $this->ai_model->get_setting_admin($id); + + $this->load->view('admin/ai_settings_tool/settings', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['setting'] = $this->input->post('setting'); + $data['value'] = $this->input->post('value'); + $data['description'] = $this->input->post('description'); + + $this->load->model('ai_model'); + + if ($id == -1) + { + //making new + $this->ai_model->add_setting_admin($data); + } + else + { + //editing + $this->ai_model->edit_setting_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/ai_settings_tool'); + } + } + + +//map tools + function map_tool() + { + if ($this->userlevel < 5) show_404(); + $this->load->model('map_model'); + $this->load->library('form_validation'); + + $this->form_validation->set_rules('action', 'Action', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + $data['files'] = $this->map_model->get_map_list_admin(); + $this->load->view('admin/map_tool/list', $data); + + $this->footer(); + } + else + { + $action = $this->input->post('action'); + + if ($action == 'apply') + { + $file = $this->input->post('filename'); + + $this->map_model->apply_map_admin($file); + } + + + $this->load->helper('url'); + redirect('admin/map_tool'); + } + } + + function map_generator() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('map_model'); + $this->map_model->generate_map_admin(); + + $this->load->helper('url'); + redirect('admin/map_tool'); + + } + +//image tool + function menu_image() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('image_model'); + $this->load->library('form_validation'); + + $this->form_validation->set_rules('submit', 'Submit', 'required'); + + $data['optimg'] = $this->image_model->get_file_list_drop(); + $data['optfont'] = $this->image_model->get_font_list_drop(); + $data['optvalign'] = $this->image_model->get_v_align_drop(); + $data['opthalign'] = $this->image_model->get_h_align_drop(); + $data['optgroup'] = $this->image_model->get_menu_group_list_drop(); + + $this->headers('admin'); + + if (!$this->form_validation->run()) + { + $this->load->view('admin/image_tool/menu_image', $data); + } + else + { + $data['wm_type'] = 'text'; + $data['quality'] = '100%'; + + $data['file'] = $this->input->post('file'); + + $data['padding'] = $this->input->post('padding'); + $data['wm_vrt_alignment'] = $this->input->post('v_align'); + $data['wm_hor_alignment'] = $this->input->post('h_align'); + $data['wm_hor_offset'] = $this->input->post('h_offset'); + $data['wm_vrt_offset'] = $this->input->post('v_offset'); + + $data['wm_text'] = $this->input->post('text'); + $data['wm_font_path'] = './system/fonts/' . $this->input->post('font'); + $data['wm_font_size'] = $this->input->post('font_size'); + $data['wm_font_color'] = $this->input->post('font_color'); + $data['wm_shadow_color'] = $this->input->post('shadow_color'); + $data['wm_shadow_distance'] = $this->input->post('shadow_distance'); + + $data['apply_all'] = $this->input->post('apply_all'); + $data['menu_group'] = $this->input->post('menu_group'); + + $this->image_model->apply_menu_images($data); + + $this->image_model->save_menu_data($data); + + $view['applyall'] = $data['apply_all']; + $view['list'] = $this->image_model->get_menu_file_list($data['menu_group']); + $view['text'] = $data['wm_text']; + + $this->load->view('admin/image_tool/menu_image_view', $view); + } + + $this->footer(); + } + + function slot_image() + { + if ($this->userlevel < 5) show_404(); + + + $this->load->model('image_model'); + $this->load->library('form_validation'); + + $this->form_validation->set_rules('submit', 'Submit', 'required'); + + $data['optimg'] = $this->image_model->get_file_list_drop(); + $data['optfont'] = $this->image_model->get_font_list_drop(); + $data['optvalign'] = $this->image_model->get_v_align_drop(); + $data['opthalign'] = $this->image_model->get_h_align_drop(); + $data['optgroup'] = $this->image_model->get_menu_group_list_drop(); + $data['optoverlay'] = $this->image_model->get_overlay_list_drop(); + + $this->headers('admin'); + + if (!$this->form_validation->run()) + { + $this->load->view('admin/image_tool/slot_image', $data); + } + else + { + $path = './img/imggen/overlay/'; + + $data['wm_type'] = $this->input->post('wm_type'); + $data['quality'] = '100%'; + + $data['file'] = $this->input->post('file'); + + $data['padding'] = $this->input->post('padding'); + $data['wm_vrt_alignment'] = $this->input->post('v_align'); + $data['wm_hor_alignment'] = $this->input->post('h_align'); + $data['wm_hor_offset'] = $this->input->post('h_offset'); + $data['wm_vrt_offset'] = $this->input->post('v_offset'); + + $data['wm_text'] = $this->input->post('text'); + $data['wm_font_path'] = './system/fonts/' . $this->input->post('font'); + $data['wm_font_size'] = $this->input->post('font_size'); + $data['wm_font_color'] = $this->input->post('font_color'); + $data['wm_shadow_color'] = $this->input->post('shadow_color'); + $data['wm_shadow_distance'] = $this->input->post('shadow_distance'); + + $data['wm_overlay_path'] = $path . $this->input->post('wm_overlay_path'); + $data['wm_opacity'] = $this->input->post('wm_opacity'); + $data['wm_x_transp'] = $this->input->post('wm_x_transp'); + $data['wm_y_transp'] = $this->input->post('wm_y_transp'); + + $data['rank_text'] = $this->input->post('rank_text'); + $data['rank_font_size'] = $this->input->post('rank_font_size'); + $data['rank_v_align'] = $this->input->post('rank_v_align'); + $data['rank_h_align'] = $this->input->post('rank_h_align'); + $data['rank_h_offset'] = $this->input->post('rank_h_offset'); + $data['rank_v_offset'] = $this->input->post('rank_v_offset'); + $data['rank_padding'] = $this->input->post('rank_padding'); + + $this->image_model->apply_slot_images($data); + + $this->image_model->save_slot_data($data); + + $this->load->view('admin/image_tool/slot_image_view'); + } + + $this->footer(); + } + +//sql_tool begin + function sql_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('sql_model'); + + $data['list'] = $this->sql_model->get_appliable_files(); + + $this->headers('admin'); + $this->load->view('admin/sql_tool/list', $data); + $this->footer(); + + } + +//sql_tool + function sql_new() + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('sql', 'SQL', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + $this->load->view('admin/sql_tool/new'); + $this->footer(); + } + else + { + $sql = $this->input->post('sql'); + + $this->load->model('sql_model'); + + $this->sql_model->create_sql($sql); + + $this->load->helper('url'); + + redirect('admin/sql_tool'); + } + + } +//sql_tool + + function sql_apply_all() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('sql_model'); + + $this->sql_model->apply_all_sql(); + + $this->load->helper('url'); + + redirect('admin/sql_tool'); + } +//sql_tool end + +} +//nowhitesp diff --git a/Mourne-CI/application/controllers/alliance.php b/Mourne-CI/application/controllers/alliance.php new file mode 100755 index 0000000..91fe712 --- /dev/null +++ b/Mourne-CI/application/controllers/alliance.php @@ -0,0 +1,22 @@ +headers('alliance'); + + $this->footer(); + } + +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/controllers/building.php b/Mourne-CI/application/controllers/building.php new file mode 100755 index 0000000..bbac00c --- /dev/null +++ b/Mourne-CI/application/controllers/building.php @@ -0,0 +1,702 @@ +load->helper('url'); + redirect('building/stats/' .$id); + } + + function stats($slotid = 0) + { + if (!$slotid) + { + $this->load->helper($url); + redirect('village/selected'); + } + + $this->headers('do', $slotid); + + if ($this->building['id'] == 1) + { + $this->load->helper('url'); + redirect('building/build'); + } + + if ($this->building['id'] == 2) + { + //build_in_progress + + $this->headers('build_in_progress'); + + $event = $this->_filter_events('type', 'slotid', $slotid, 0, TRUE); + + $data['event'] = $event; + $data['building'] = $this->building_model->get_building($event['data1']); + + $this->load->view('building/header', $data); + $this->load->view('building/spacer'); + $this->load->view('building/next_event', $data); + $this->load->view('building/stats', $data); + + $this->footer(); + + return; + } + + $this->headers('building', $slotid); + + $data['slotid'] = $slotid; + + $this->load->view('building/stats', $data); + + $this->footer(); + } + + function upgrade($slotid = 0) + { + if (!$slotid) + { + $this->load->helper('url'); + redirect('village/selected'); + } + + $this->headers('building', $slotid); + + $event = $this->_filter_events('type', 'slot', $slotid, 1); + + $up['slotid'] = $slotid; + + if ($this->building['next_rank']) + { + $up['slotid'] = $slotid; + + $up['nextrank'] = $this->building_model->get_building( + $this->building['next_rank']); + + $up['upgrade'] = $this->building_model->can_be_upgraded( + $event, + $this->resources, + $up['nextrank'], + $this->villageid); + } + + $this->load->view('building/upgrade', $up); + $this->footer(); + } + + function create($slotid = 0) + { + if (!$slotid) + { + $this->load->helper($url); + redirect('village/selected'); + } + + $this->headers('building', $slotid); + + //can create something + if ($this->building['creates']) + { + $events = $this->_filter_events('type', 'all', $slotid, 2); + + $this->load->model('unit_model'); + + $data['unit'] = $this->unit_model->get_unit($this->building['creates']); + + if ($data['unit']['cost_unit']) + $data['costu'] = $this->unit_model->get_unit( + $data['unit']['cost_unit']); + else + $data['costu'] = FALSE; + + $this->load->model('resource_model'); + + //This should be one function + $data['maxunit'] = $this->resource_model->calc_max_unit($data['unit'], + $this->building['num_creates'], + $this->resources); + + $data['maxunit'] = $this->unit_model->calc_max_unit_ev( + $this->building['num_creates'], + $data['maxunit'], + $events); + + if ($events) + { + $d['event'] = $events; + $this->load->view('building/events', $d); + } + + } + + $data['building'] = $this->building; + $this->load->view('building/building_create', $data); + + $this->footer(); + } + + function assign($slotid) + { + if (!$slotid) + { + $this->load->helper($url); + redirect('village/selected'); + } + + $this->headers('building', $slotid); + + //have assignments + $this->load->model('assignment_model'); + + $assign = $this->assignment_model->get_assignments($slotid, + $this->villageid, + $this->userid); + + $assign['slotid'] = $slotid; + + $this->load->view('building/assignments', $assign); + + $this->footer(); + } + + function spells($slotid) + { + if (!$slotid) + { + $this->load->helper($url); + redirect('village/selected'); + } + + $this->headers('building', $slotid); + + $this->load->model('spell_model'); + + $spell['spells'] = $this->spell_model->get_spells($slotid, + $this->villageid); + + $spell['slotid'] = $slotid; + + $this->load->view('building/spells', $spell); + $this->footer(); + } + + function events($slotid = 0) + { + if (!$slotid) + { + $this->load->helper($url); + redirect('village/selected'); + } + + $this->headers('building', $slotid); + + //$this->load->model('event_model'); + //$data['event'] = $this->event_model->get_events($slotid, +// $this->villageid); + + $data['event'] = $this->_filter_events('all', 'slot', $slotid); + + $this->load->view('building/events', $data); + + $this->footer(); + } + + function research($slotid = 0) + { + if (!$slotid) + { + $this->load->helper('url'); + redirect('village/selected'); + } + + $this->headers('building', $slotid); + + $events = $this->_filter_events('type', 'slot', $slotid, 4); + + if (!$events) + { + $this->load->model('technology_model'); + + $data = $this->technology_model->get_researchable($slotid, + $this->villageid); + + $data['slotid'] = $slotid; + + + $this->load->view('building/research', $data); + } + else + { + $this->load->model('technology_model'); + + $data['technology'] = $this->technology_model->get_technology($events[0]['data1']); + + $this->load->view('building/al_research', $data); + } + + $this->footer(); + + } + + function build($slotid = 0) + { + if (!$slotid) + { + $this->load->helper('url'); + redirect('village/selected'); + } + + $this->load->model('building_model'); + + $this->_get_slot_building($slotid); + + $this->headers('build'); + + if ($this->building['id'] == 1) + { + //empty space + + $data['buildings'] = $this->building_model->building_list( + $this->villageid); + + $data['slotid'] = $slotid; + $this->load->view('building/list', $data); + } + else + { + //slot has some building + $this->load->helper('url'); + redirect('building/stats/' . $slotid); + } + + $this->footer(); + } + + function dobuild() + { + $this->load->helper('url'); + + $slotid = $this->input->post('slotid'); + $buildingid = $this->input->post('id'); + + if (!$slotid || !$buildingid) + redirect('village/selected'); + + $this->headers('do'); + + $this->load->model('building_model'); + //$this->load->model('event_model'); + $this->load->model('resource_model'); + + //check if building exists + if (!$this->building_model->is_valid_slot($slotid, $this->villageid)) + { + //display error page + echo "is_valid_slot returned FALSE"; + return; + } + + $building = $this->building_model->get_building($buildingid); + + if (!$this->building_model->check_resources($this->resources, $building)) + { + //display error page + echo "You don't have enough resources"; + return; + } + +/* + //do this matters? maybe it should be removed. + if ($this->event_model->has_event($slotid, $this->villageid)) + { + //display error page + echo "has_event returned TRUE"; + return; + } +*/ +/* this probably aren't needed + if (!$this->building_model->can_build($this->villageid, $buildingid)) + { + //display an error page + echo "can_build returned FALSE"; + return; + } +*/ + + //can be built + if (!$this->building_model->has_req_tech($building['req_tech'], $this->villageid)) + { + echo "Technology requirements not met."; + return; + } + + //add_event + $this->load->helper('event'); + + $ev['type'] = ev_type('build'); + $ev['villageid'] = $this->villageid; + $ev['slotid'] = $slotid; + $ev['time'] = $building['time_to_build']; + $ev['data1'] = $buildingid; + + $this->event_model->add_event($ev); + + //resource substract + $this->resource_model->set_resources($this->resources); + $this->resource_model->substract_resources($building, + $this->villageid); + $this->resource_model->write_resources(); + + //change tile to build in progress + $this->building_model->set_build_in_progress($slotid, $this->villageid); + + $url = 'building/stats/' . $slotid; + redirect($url); + + } + + function docreate($slotid) + { + $this->load->library('form_validation'); + + $this->form_validation->set_rules('create_num', 'Number to create', + 'is_natural_no_zero'); + + $this->load->helper('url'); + $url = 'building/create/' . $slotid; + + $this->headers('do', $slotid); + + if ($this->form_validation->run()) + { + $num_create = $this->input->post('create_num'); + + if (!$num_create) + redirect($url); + + $this->load->model('building_model'); + + $building = $this->building; + + $this->headers('do'); + + if ($building['id'] == 1 || $building['id'] == 2) + { + //TODO show proper error + echo "There isn't any building in that slot"; + return; + } + + if (!$building['creates']) + { + //TODO show proper error + echo "that building can't create units"; + return; + } + + $event = $this->_filter_events('type', 'slot', $slotid, 2); + + $this->load->model('resource_model'); + $res = $this->resources; + + $this->load->model('unit_model'); + $unit = $this->unit_model->get_unit($building['creates']); + + $max = $this->resource_model->calc_max_unit($unit, + $building['num_creates'], + $res); + + $max = $this->unit_model->calc_max_unit_ev($building['num_creates'], + $max, + $event); + + if (!$max) + { + //TODO proper error + echo "You can't make any"; + return; + } + + if ($num_create > $max) + { + //TODO proper error + echo "You can't make that many"; + return; + } + + //add event + $this->load->helper('event'); + + $ev['type'] = ev_type('create'); + $ev['villageid'] = $this->villageid; + $ev['slotid'] = $slotid; + $ev['time'] = ($unit['time_to_create'] * $num_create); + $ev['data1'] = $unit['id']; + $ev['data2'] = $num_create; + + $this->event_model->add_event($ev); + + $this->resource_model->set_resources($this->resources); + $this->resource_model->substract_resources($unit, + $this->villageid, + $num_create); + + $this->resource_model->write_resources(); + + redirect($url); + } + else + { + redirect($url); + } + } + + function doupgrade() + { + $this->headers('do'); + + $this->load->helper('url'); + $this->load->library('form_validation'); + + $this->form_validation->set_rules('slotid', 'Slotid', 'is_natural'); + + if ($this->form_validation->run()) + { + $this->load->model('event_model'); + $this->load->model('resource_model'); + $this->load->model('building_model'); + + $slotid = $this->input->post('slotid'); + + $this->headers('do', $slotid); + + $building = $this->building; + + if (!$building['next_rank']) + { + echo "Building doesn't have next rank."; + return; + } + + $next_rank = $this->building_model->get_building($building['next_rank']); + $res = $this->resources; + + + $event = $this->_filter_events('type', 'slot', $slotid, 1); + + $can = $this->building_model->can_be_upgraded($event, $res, $next_rank, + $this->villageid); + + if ($can == 3) + { + //can be upgraded + + $this->load->helper('event'); + + $ev['type'] = ev_type('upgrade'); + $ev['villageid'] = $this->villageid; + $ev['slotid'] = $slotid; + $ev['time'] = $next_rank['time_to_build']; + $ev['data1'] = $next_rank['id']; + $ev['data2'] = $building['id']; + + $this->event_model->add_event($ev); + + $this->resource_model->set_resources($this->resources); + $this->resource_model->substract_resources($next_rank, + $this->villageid); + + $this->resource_model->write_resources(); + + $url = 'building/upgrade/' . $slotid; + redirect($url); + + } + elseif ($can == 1) + { + echo "Village doesn't have the required technology."; + return; + } + elseif ($can == 2) + { + //not enough resources + echo "Not enough resources"; + return; + } + else + { + //upgrading in progress + echo "Upgrade already in progress."; + return; + } + } + else + { + redirect('village/selected'); + } + } + + function doassign() + { + $this->headers('do'); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('num_assign', 'Assigned number', 'is_natural'); + $this->form_validation->set_rules('slotid', 'slotid', 'required|is_natural'); + $this->form_validation->set_rules('assignmentid', 'Assignmentid', + 'required|is_natural'); + + if ($this->form_validation->run()) + { + $assid = $this->input->post('assignmentid'); + $slotid = $this->input->post('slotid'); + $num_assign = $this->input->post('num_assign'); + + $this->load->model('assignment_model'); + + $a = $this->assignment_model->assign_unit($assid, $num_assign, $slotid, $this->resources, + $this->villageid, $this->userid); + + //error handling with return value + if ($a == 1) + { + //no building in that slot + echo "No building in that slot"; + return; + } + + if ($a == 2) + { + //no such assignmentid + echo "No such assignmentid"; + return; + } + + if ($a == 3) + { + //building soesn't have that assignment + echo "Building doesn't have that assignment"; + return; + } + + if ($a == 4) + { + echo "You don't have any units that can be assigned in that slot"; + return; + } + + + $this->load->helper('url'); + redirect('building/assign/' . $slotid); + } + else + { + $this->load->helper('url'); + redirect('village/selected'); + } + } + + function dospell() + { + $this->headers('do'); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('spellid', 'spellid', 'required|is_natural'); + $this->form_validation->set_rules('slotid', 'slotid', 'required|is_natural'); + + if ($this->form_validation->run()) + { + $spellid = $this->input->post('spellid'); + $slotid = $this->input->post('slotid'); + + $this->load->model('spell_model'); + + $a = $this->spell_model->use_spell($spellid, $slotid, $this->resources, + $this->villageid); + + //error handling with return value + if ($a == 1) + { + echo "Building doesn't have that spell"; + return; + } + + if ($a == 2) + { + echo "spell is on cooldown"; + return; + } + + if ($a == 3) + { + echo "Not enough resources"; + return; + } + + + + $this->load->helper('url'); + redirect('building/spells/' . $slotid); + } + else + { + $this->load->helper('url'); + redirect('village/selected'); + } + + } + + function doresearch() + { + $this->load->helper('url'); + + $slotid = $this->input->post('slotid'); + $techid = $this->input->post('id'); + + if (!($slotid || $techid)) + redirect('village/selected'); + + $this->headers('do'); + + $event = $this->_filter_events('type', 'slot', $slotid, 4); + + if ($event) + echo "Already researching."; + + $this->load->model('technology_model'); + + $a = $this->technology_model->do_research($techid, $this->resources, $slotid, + $this->villageid); + + if ($a == 1) + { + echo "Technology ID doesn't exist"; + return; + } + + if ($a == 2) + { + echo "Not enough resources"; + return; + } + + if ($a == 3) + { + echo "Building doesn't have that technology, or you already have it"; + return; + } + + redirect('building/research/' . $slotid); + + } +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/controllers/changelog.php b/Mourne-CI/application/controllers/changelog.php new file mode 100755 index 0000000..616223c --- /dev/null +++ b/Mourne-CI/application/controllers/changelog.php @@ -0,0 +1,78 @@ +load->model('changelog_model'); + + $data['versions'] = $this->changelog_model->get_versions(); + $data['commits'] = $this->changelog_model->get_commits(); + $data['userlevel'] = $this->userlevel; + $data['required_userlevel'] = 4; + + $this->headers(); + $this->load->view('changelog/changelog', $data); + $this->footer(); + } + + function add_new_version() + { + if (!$this->userlevel > 4) + show404(); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('text', 'Text', 'required'); + + if (!$this->form_validation->run()) + { + $this->load->view('changelog/new_version'); + } + else + { + $this->load->model('changelog_model'); + + $text = $this->input->post('text'); + $this->changelog_model->new_version($text); + + $this->load->helper('url'); + redirect('changelog/show'); + } + + } + + function add_new_commit() + { + if (!$this->userlevel > 4) + show404(); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('text', 'Text', 'required'); + + if (!$this->form_validation->run()) + { + $this->load->view('changelog/new_commit'); + } + else + { + $this->load->model('changelog_model'); + + $text = $this->input->post('text'); + $this->changelog_model->new_commit($text); + + $this->load->helper('url'); + redirect('changelog/show'); + } + + } +} + +//nowhitesp diff --git a/Mourne-CI/application/controllers/cron.php b/Mourne-CI/application/controllers/cron.php new file mode 100755 index 0000000..80ed01e --- /dev/null +++ b/Mourne-CI/application/controllers/cron.php @@ -0,0 +1,23 @@ +load->model('ai_model'); + + $a = $this->ai_model->attack(); + + echo $a; + } + +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/controllers/forum.php b/Mourne-CI/application/controllers/forum.php new file mode 100755 index 0000000..8ea6a81 --- /dev/null +++ b/Mourne-CI/application/controllers/forum.php @@ -0,0 +1,20 @@ +headers('forum'); + + $this->load->view('forum/notimpl'); + + $this->footer(); + } + +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/controllers/gm.php b/Mourne-CI/application/controllers/gm.php new file mode 100755 index 0000000..a53e2b8 --- /dev/null +++ b/Mourne-CI/application/controllers/gm.php @@ -0,0 +1,17 @@ +headers('gm'); + + $this->footer(); + } +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/controllers/hero.php b/Mourne-CI/application/controllers/hero.php new file mode 100755 index 0000000..043e285 --- /dev/null +++ b/Mourne-CI/application/controllers/hero.php @@ -0,0 +1,213 @@ +load->helper('url'); + redirect('hero/selected'); + } + + function selected($page = 'stats', $d1 = FALSE, $d2 = FALSE, $d3 = FALSE, $d4 = FALSE) + { + $this->headers('hero'); + + if ($page != 'stats' && $page != 'inventory' && $page != 'talents' && $page != 'spells' && + $page != 'actionbars') + { + $page = 'stats'; + } + + $this->load->view('hero/hero_menu'); + + if ($page == 'stats') + { + $data['hero'] = $this->hero; + + $data['hpp'] = floor(($this->hero['health'] / $this->hero['max_health']) * 100); + $data['mpp'] = floor(($this->hero['mana'] / $this->hero['max_mana']) * 100); + $data['exp'] = floor(($this->hero['experience'] /1000) * 100); + + //STUB! + $data['experience'] = 10000; + + $this->load->view('hero/stats', $data); + } + elseif ($page == 'inventory') + { + $this->load->model('item_model'); + + if ($d1 !== FALSE && $d2 !== FALSE && $d3 !== FALSE && $d4 !== FALSE) + { + $this->item_model->set_hero($this->hero); + + $res['message'] = $this->item_model->swap($d1, $d2, $d3, $d4); + + if ($res['message'] === TRUE) + $this->hero = $this->item_model->get_hero(); + + $d1 = FALSE; + $d2 = FALSE; + //we doesn't care about d3,d4 that isn't used in views + } + + + $data = $this->item_model->get_inventory($this->hero['id']); + + $data['hero'] = $this->hero; + + $data['d1'] = $d1; + $data['d2'] = $d2; + + $res['inventory'] = $this->load->view('hero/inventory', $data, TRUE); + $res['equipment'] = $this->load->view('hero/character', $data, TRUE); + + $this->load->view('hero/inventory_view', $res); + } + elseif ($page == 'talents') + { + } + elseif ($page == 'spells') + { + } + elseif ($page == 'actionbars') + { + } + + $this->footer(); + } + + function create() + { + $this->load->library('form_validation'); + + $this->form_validation->set_rules('name', 'Name', 'required|alpha|callback_chhn'); + $this->form_validation->set_rules('gender', 'Gender', 'required|greater_than[0]|less_than[3]|integer'); + //less than! + $this->form_validation->set_rules('class', 'Class', 'required|integer|greater_than[0]|less_than[10]'); + + if (!$this->form_validation->run()) + { + $this->headers('hero', 1); + + $this->load->view('hero/create'); + + $this->footer(); + } + else + { + $this->load->model('hero_model'); + + $data['name'] = $this->input->post('name'); + $data['gender'] = $this->input->post('gender'); + $data['class'] = $this->input->post('class'); + + $this->hero_model->create($data, $this->userid); + + $this->load->helper('url'); + redirect('hero/selected'); + } + } + + function select() + { + $this->load->model('hero_model'); + $this->load->library('form_validation'); + + $this->form_validation->set_rules('heroid', 'Heroid', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('hero'); + + $data['heroes'] = $this->hero_model->get_heroes($this->userid); + + $this->load->view('hero/select', $data); + + $this->footer(); + } + else + { + $heroid = $this->input->post('heroid'); + + $this->hero_model->select_hero($heroid, $this->userid); + + $this->load->helper('url'); + redirect('hero/selected'); + } + } + + function delete($id = FALSE) + { + $this->load->helper('url'); + + if (!$id || !is_numeric($id)) + redirect('hero/select'); + + $this->load->model('hero_model'); + $this->load->library('form_validation'); + + $this->form_validation->set_rules('confirm', 'Confirm', 'required|callback_delete_check'); + + if (!$this->form_validation->run()) + { + $data['id'] = $id; + $data['hero'] = $this->hero_model->get_hero($id, $this->userid); + + if (!$data['hero']) + redirect('hero/select'); + + $this->headers('hero'); + + $this->load->view('hero/delete_confirm', $data); + + $this->footer(); + } + else + { + $this->hero_model->delete_hero($id, $this->userid); + + redirect('hero/select'); + } + } + + function addstat() + { + //hero's stat view calls this with a form the hidden field's name is attrid + //1 agi, 2 str, 3 stam, 4 int, 5 spirit + } + + function chhn($name) + { + $this->load->model('hero_model'); + + $a = $this->hero_model->hero_name_is_unique($name); + + if (!$a) + { + $this->form_validation->set_message('chhn', 'Name already taken.'); + return FALSE; + } + else + { + return TRUE; + } + } + + function delete_check($chk) + { + if ($chk == "DELETE") + return TRUE; + + $this->form_validation->set_message('delete_check', 'You have to spell DELETE, exactly, and uppercase.'); + + return FALSE; + } + +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/controllers/index.html b/Mourne-CI/application/controllers/index.html new file mode 100755 index 0000000..c942a79 --- /dev/null +++ b/Mourne-CI/application/controllers/index.html @@ -0,0 +1,10 @@ + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + + \ No newline at end of file diff --git a/Mourne-CI/application/controllers/mail.php b/Mourne-CI/application/controllers/mail.php new file mode 100755 index 0000000..8512a6b --- /dev/null +++ b/Mourne-CI/application/controllers/mail.php @@ -0,0 +1,164 @@ +load->helper('url'); + redirect('mail/inbox'); + } + + function inbox() + { + $this->headers('mail'); + + $this->load->model('mail_model'); + + $data['mails'] = $this->mail_model->get_inbox($this->userid, $this->new_mail); + + $this->load->view('mail/inbox', $data); + + $this->footer(); + } + + function compose($id = 0) + { + $this->headers('mail'); + $this->load->model('mail_model'); + $this->load->library('form_validation'); + + $d['draft'] = FALSE; + + if ($id && is_numeric($id)) + { + $d['draft'] = $this->mail_model->get_draft($id, $this->userid); + } + + $this->form_validation->set_rules('name', 'Username', 'required'); + $this->form_validation->set_rules('subject', 'Subject', 'required'); + $this->form_validation->set_rules('message', 'Message', 'required'); + + if (!$this->form_validation->run()) + { + $this->load->view('mail/new', $d); + } + else + { + $send = $this->input->post('send'); + $draft = $this->input->post('draft'); + + $data['name'] = $this->input->post('name'); + $data['subject'] = $this->input->post('subject'); + $data['message'] = $this->input->post('message'); + + if ($send) + { + $this->mail_model->send_message($data, $this->userid); + } + else + { + $this->mail_model->save_draft($data, $this->userid); + } + } + + $this->footer(); + } + + function del_draft($id = 0) + { + if ($id && is_numeric($id)) + { + $this->load->model("mail_model"); + $this->mail_model->delete_draft($id, $this->userid); + } + + $this->load->helper('url'); + redirect('mail/drafts'); + } + + function drafts() + { + $this->load->model('mail_model'); + + $this->headers('mail'); + + $data['mails'] = $this->mail_model->get_drafts($this->userid); + + $this->load->view('mail/drafts', $data); + + $this->footer(); + } + + function read($id = 0) + { + if (!$id || !is_numeric($id)) + { + $this->load->helper('url'); + redirect('mail/inbox'); + } + + $this->load->model('mail_model'); + + $this->headers('mail'); + + $data['mail'] = $this->mail_model->get_mail($id, $this->userid); + + $this->load->view('mail/read', $data); + + $this->footer(); + + } + + function sent() + { + $this->headers('mail'); + + $this->load->model('mail_model'); + + $data['mails'] = $this->mail_model->get_all_sent($this->userid); + + $this->load->view('mail/sent', $data); + + $this->footer(); + } + + function sread($id = 0) + { + if (!$id || !is_numeric($id)) + { + $this->load->helper('url'); + redirect('mail/inbox'); + } + + $this->load->model('mail_model'); + + $this->headers('mail'); + + $data['mail'] = $this->mail_model->get_sent($id, $this->userid); + + $this->load->view('mail/sread', $data); + + $this->footer(); + + } + + function friends() + { + $this->headers('mail'); + + $this->footer(); + } +} +//nowhitesp + + + + + + + diff --git a/Mourne-CI/application/controllers/news.php b/Mourne-CI/application/controllers/news.php new file mode 100755 index 0000000..fc1c9c8 --- /dev/null +++ b/Mourne-CI/application/controllers/news.php @@ -0,0 +1,68 @@ +check_login()) return; + + $this->load->model('news_model'); + + $data['admin'] = FALSE; + + if ($this->userlevel > 3) + { + $data['admin'] = TRUE; + } + + $data['news'] = $this->news_model->get_news($page); + + $this->headers(); + $this->load->view('news/news', $data); + $this->footer(); + } + + public function add() + { + if ($this->userlevel < 3) show_404(); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('text', 'Text', 'required'); + + if (!$this->form_validation->run()) + { + + $this->load->helper(array('form', 'url')); + + $this->headers(); + $this->load->view('news/add'); + $this->footer(); + } + else + { + $this->load->model('news_model'); + + if ($this->news_model->add_news($this->input->post('text'), $this->username)) + { + $this->load->view('news/add_success'); + } + else + { + $this->load->view('db_error'); + } + } + + } + + public function delete($nid) + { + if (!$this->userlevel < 3) show_404(); + + + + } + +} + +//nowhitesp diff --git a/Mourne-CI/application/controllers/user.php b/Mourne-CI/application/controllers/user.php new file mode 100755 index 0000000..e8b6159 --- /dev/null +++ b/Mourne-CI/application/controllers/user.php @@ -0,0 +1,139 @@ +load->helper(array('form', 'url')); + $this->load->library('form_validation'); + + //is_unique[users.username] + + //xss_validation + + //TODO figure rules out + $this->form_validation->set_rules('username', 'Username', + 'required'); + + //password callback -> $this->input->post('username'), after xss filter + $this->form_validation->set_rules('password', 'Password', + 'required|callback_login_check'); + + if ($this->form_validation->run() == FALSE) + { + $this->load->view('login/login'); + } + else + { + $this->load->helper('url'); + redirect('news/index'); + //$this->load->view('login/success'); + } + } + + function register() + { + $this->load->helper(array('form', 'url')); + $this->load->library('form_validation'); + + //is_unique[users.username] + //xss_clean + $this->form_validation->set_rules('username', 'Username', + 'required|min_length[4]|max_length[32]|callback_register_username_check'); + + $this->form_validation->set_rules('password', 'Password', + 'required|min_length[5]|matches[password_check]'); + + $this->form_validation->set_rules('password_check', 'Password check', 'required'); + $this->form_validation->set_rules('email', 'Email', 'required|valid_email|matches[email_check]'); + $this->form_validation->set_rules('email_check', 'Email_check', 'required'); + //$this->form_validation->set_rules('license', 'License', 'required'); + + if ($this->form_validation->run() == FALSE) + { + $this->load->view('register/register'); + } + else + { + if ($this->register_write()) + { + $this->load->view('register/success'); + } + } + } + + function logout() + { + $this->session->unset_userdata('userid'); + + $this->load->helper('url'); + redirect('user/login'); + + //TODO make it look cool + //$this->load->view('redirect_to_login'); + } + + function register_username_check($attr) + { + $this->load->model('user_model'); + + if ($this->user_model->reg_username_check($attr)) + { + return TRUE; + } + else + { + $this->form_validation->set_message('register_username_check', 'Username already exists!'); + return FALSE; + } + } + + function register_write() + { + $data['username'] = $this->input->post('username'); + $data['password'] = md5($this->input->post('password')); + $data['email'] = $this->input->post('email'); + + $this->load->model('user_model'); + + return $this->user_model->reg_write($data); + } + + function login_check($attr) + { + $data['username'] = $this->input->post('username'); + $data['password'] = md5($attr); + + $this->load->model('user_model'); + + if ($this->user_model->login_check($data)) + { + $this->session->set_userdata('userid', + $this->user_model->get_userid($data['username'])); + + return TRUE; + } + else + { + return FALSE; + } + } + + function settings() + { + $this->headers('settings'); + + + + $this->footer(); + } + +}//login class + +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/controllers/village.php b/Mourne-CI/application/controllers/village.php new file mode 100755 index 0000000..f89fee9 --- /dev/null +++ b/Mourne-CI/application/controllers/village.php @@ -0,0 +1,262 @@ +load->helper('url'); + redirect('village/selected'); + } + + //function for testing, this will be handled when registering, and with npcs + function create_village() + { + $this->load->model('village_model'); + + $this->village_model->create_village($this->userid, $this->username); + } + + function selected() + { + $this->load->model('village_model'); + + $this->headers('village'); + + $build['buildings'] = $this->village_model->get_buildings($this->villageid); + + $event['event'] = $this->_filter_events('next', 'all'); + + $this->load->view('village/next_event', $event); + $this->load->view('village/grid', $build); + $this->footer(); + } + + function map($x = FALSE, $y = FALSE) + { + $this->load->model('map_model'); + $action = $this->input->post('action'); + + if ($action == 'xy') + { + $px = $this->input->post('x'); + $py = $this->input->post('y'); + + if (is_numeric($px) && is_numeric($py)) + { + $x = $px; + $y = $py; + } + + } + elseif ($action == 'name') + { + $name = $this->input->post('name'); + + $rep = array(';', "\"", "'", ',', '(', ')'); + + $name = str_replace($rep, ' ', $name); + + if ($name) + { + $co = $this->map_model->get_village_by_name($name); + + if ($co) + { + $x = $co['X']; + $y = $co['Y']; + } + } + } + + $this->load->model('map_model'); + + if (!$x && !$y) + { + $coords = $this->map_model->get_village_coords($this->villageid); + $x = $coords['X']; + $y = $coords['Y']; + } + else + { + if ($x < 7) + $x = 7; + + if ($y < 7) + $y = 7; + + if ($x > 235) + $x = 235; + + if ($y > 235) + $y = 235; + } + + $data['x'] = $x; + $data['y'] = $y; + $data['map'] = $this->map_model->get_map($x, $y); + + $this->headers('village'); + + $this->load->view('village/map', $data); + + $this->footer(); + } + + function units() + { + $this->load->model('unit_model'); + + $data['units'] = $this->unit_model->get_village_units($this->villageid); + + $this->headers('village'); + + $this->load->view('village/units', $data); + + $this->footer(); + } + + function log($action = 'list', $id = 0) + { + if ($action != 'list' && $action != 'view' && $action != 'delete') + $action = 'list'; + + if (!is_numeric($id)) + { + $action = 'list'; + $id = 0; + } + + $this->load->model('log_model'); + + if ($action == 'list') + { + $this->headers('village'); + + $data['logs'] = $this->log_model->get_combat_logs($this->villageid); + $this->load->view('village/log/list', $data); + + $this->footer(); + } + + if ($action == 'view') + { + $this->headers('village'); + + $data['log'] = $this->log_model->get_combat_log($id, $this->villageid); + $this->load->view('village/log/combat', $data); + + $this->footer(); + } + + if ($action == 'delete') + { + $this->log_model->delete_combat_log($id, $this->villageid); + + $this->load->helper('url'); + redirect('village/log'); + } + } + + function select() + { + $this->load->model('village_model'); + $this->load->library('form_validation'); + + $this->form_validation->set_rules('id', 'ID', 'is_natural|required'); + + if (!$this->form_validation->run()) + { + $this->headers('village'); + + $data['villages'] = $this->village_model->get_villages($this->userid); + + $this->load->view('village/select', $data); + + $this->footer(); + } + else + { + $id = $this->input->post('id'); + + $this->village_model->select_village($id, $this->userid); + + $this->load->helper('url'); + redirect('village/selected'); + } + } + + function events() + { + $this->headers('village'); + + $data['event'] = $this->_filter_events('all', 'all'); + + $this->load->view('village/events', $data); + + $this->footer(); + } + + function settings($id = 0) + { + $this->load->model('village_model'); + + if (!is_numeric($id) || !$id) + { + $this->load->heper('url'); + redirect('village/selected'); + } + + $village = $this->village_model->get_village($id); + + if ($village['userid'] != $this->userid) + { + $this->load->heper('url'); + redirect('village/selected'); + } + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('name', 'Name', + 'required|alpha|is_unique[ai_villages.name]'); + + if (!$this->form_validation->run()) + { + $this->headers('village'); + + $data['id'] = $id; + $data['village'] = $village; + + $this->load->view('village/settings', $data); + $this->footer(); + } + else + { + $data['id'] = $id; + $name = $this->input->post('name'); + $data['ai'] = $this->input->post('ai'); + + $data['name'] = ucfirst(strtolower($name)); + + $this->village_model->apply_settings($data); + + $this->load->helper('url'); + redirect('village/select'); + } + } + + function event_update() + { + //TODO for ajax, but maybe it will be solved with APE + } + + function list_all() + { + } + +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/core/MO_Controller.php b/Mourne-CI/application/core/MO_Controller.php new file mode 100755 index 0000000..90d453a --- /dev/null +++ b/Mourne-CI/application/core/MO_Controller.php @@ -0,0 +1,430 @@ +weather = FALSE; + $this->resources = FALSE; + $this->hero = FALSE; + + $this->_manage_session($page); + } + + public function _manage_session($page) + { + $this->userid = 0; + + //this should be solved with db! +// if (!$this->session->userdata('language')) +// $this->session->set_userdata('language', 'english'); + +// $this->language = $this->session->userdata('language'); + + $this->language = 'english'; + + if ($this->session->userdata('userid')) + $this->userid = $this->session->userdata('userid'); + + $this->load->model('mo_common_model'); + + if ($this->userid) + { + $data = $this->mo_common_model->get_userdata($this->userid); + + $this->userlevel = $data['userlevel']; + $this->username = $data['username']; + $this->new_mail = $data['new_mail']; + + if ($page == 'village') + { + $mdata = $this->mo_common_model->get_village_data($this->userid); + + $this->villageid = $mdata['id']; + $this->villagename = $mdata['name']; + $this->new_log = $mdata['new_log']; + + $this->village_data = $mdata; + } + + if ($page == 'hero') + { + $this->hero = $this->mo_common_model->get_hero_data($this->userid); + } + } + } + + public function check_login() + { + if ($this->userid == 0) + { + $this->load->helper('url'); + redirect('user/login'); + } + + return TRUE; + } + + public function headers($page = 'village', $slotid = 0) + { + $data['username'] = $this->username; + $data['userid'] = $this->userid; + $data['userlevel'] = $this->userlevel; + $data['newmail'] = $this->new_mail; + $data['page'] = $page; + + if ($page != 'hero') + { + $data['villagename'] = $this->villagename; + $data['newlog'] = $this->new_log; + + if ($page == 'building' || $page == 'village' || $page == 'build' || $page == 'build_in_progress' || + $page == 'mail') + { + $this->_update(); + } + + //this has to be done like this, since this function will redirect if nothing in the slot + if ($page == 'building') + $this->_get_slot_building($slotid); + + if ($page != 'do') + { + $data['weather'] = $this->weather; + $data['resources'] = $this->_prep_res_js(); + $this->load->view('parts/header', $data); + $this->load->view('menu', $data); + $this->load->view('parts/js_res', $data); + } + + if ($page == 'building' || $page == 'village' || $page == 'build' || $page == 'build_in_progress' || + $page == 'mail') + { + $res['res'] = $this->resources; + $this->load->view('village/resources', $res); + } + + if ($page == 'mail') + { + $this->load->view('mail/menu'); + } + + if ($page == 'village') + { + $this->load->view('village/menu'); + } + + if ($page == 'building') + { + $data['building'] = $this->building; + $data['slotid'] = $slotid; + + $this->load->view('building/header', $data); + $this->load->view('building/menu', $data); + } + + if ($page == 'do') + { + $this->_update(); + + if ($slotid) + $this->_get_slot_building($slotid); + } + } + elseif ($page == 'hero') + { + if (!$this->hero && !$slotid) + { + $this->load->helper('url'); + redirect('hero/create'); + return; + } + + $data['hero'] = $this->hero; + $data['weather'] = FALSE; + $data['resources'] = FALSE; + $this->load->view('parts/header', $data); + $this->load->view('menu', $data); + $this->load->view('hero/menu', $data); + } + } + + public function _get_slot_building($slotid = 0) + { + if (!$slotid) + return; + + if ($this->building) + return; + + $this->load->model('building_model'); + $this->building = $this->building_model->get_slot_building($slotid, $this->villageid); + + //this is commented out, because get_slot_building cannot return FALSE lol + // if (!$this->building) + // { + // $this->load->helper('url'); + // redirect('village/selected'); + //} + } + + public function _get_resources() + { + if ($this->resources) + return; + + $this->load->model('resource_model'); + $this->resources = $this->resource_model->get_resources($this->villageid); + } + + public function _update() + { + $this->load->model('event_model'); + + if ($this->resources || $this->events || $this->weather) + return; + + //event model returns resources, and events, and weather + $data = $this->event_model->update($this->village_data, TRUE); + + $this->resources = $data['resources']; + $this->events = $data['events']; + $this->weather = $data['weather']; + } + + public function footer() + { + $this->load->view('parts/footer'); + } + + /* + filter events, based on type and filter, and order it ASC + type -> 'next', 'type', 'all' + if type == 'type' you have to provide an event type + filter -> 'all', 'slot' + if filter == 'slot' you have to provide slotid + next -> TRUE/FALSE + only return the next event, this is here, so every type can be asked to return the next one + this is primarily here, so when events like EVENT_BUILD needed, since there aren't going to be 2 + */ + + public function _filter_events($type, $filter, $slotid = 0, $ev_type = 0, $next = FALSE) + { + //means no events + if (!$this->events) + return FALSE; + + $data = FALSE; + + if ($type == 'all') + { + if ($filter == 'slot') + { + foreach ($this->events as $row) + { + if ($row['slotid'] == $slotid) + { + $data[] = $row; + } + } + } + else + { + $data = $this->events; + } + } + + if ($type == 'type') + { + if ($filter == 'all') + { + foreach ($this->events as $row) + { + if ($row['type'] == $ev_type) + { + $data[] = $row; + } + } + } + else + { + foreach ($this->events as $row) + { + if ($row['type'] == $ev_type && $row['slotid'] == $slotid) + { + $data[] = $row; + } + } + } + } + + if ($type == 'next') + { + if ($filter == 'all') + { + $last_end = 99999999999; + $smallest = FALSE; + foreach ($this->events as $row) + { + if ($row['end'] < $last_end) + { + $last_end = $row['end']; + $smallest = $row; + } + } + + return $smallest; + } + else + { + $last_end = 99999999999; + $smallest = FALSE; + foreach ($this->events as $row) + { + if ($row['end'] < $last_end && $row['slotid'] == $slotid) + { + $last_end = $row['end']; + $smallest = $row; + } + } + + return $smallest; + } + } + + //order it + if ($data) + { + $last_end = 99999999999; + $last['id'] = FALSE; + $smallest = FALSE; + + for ($i = 0; $i < sizeof($data); $i++) + { + foreach ($data as $row) + { + //accounting for events ending at the same time + if ($row['end'] <= $last_end && $last['id'] != $row['id']) + { + $smallest = $row; + } + } + + $ret[] = $smallest; + $last_end = $smallest['end']; + $last = $smallest; + } + + if (!$next) + return $ret; + else + return $ret[0]; + } + + return FALSE; + } + + function _prep_res_js() + { + if (!$this->resources) + return FALSE; + + $res = $this->resources; + + //determining which have the lowest rate + $a[] = $res['food']; + $a[] = $res['wood']; + $a[] = $res['stone']; + $a[] = $res['iron']; + $a[] = $res['mana']; + + $last = $a[0]; + $index = 0; + + for ($i = 0; $i < 5; $i++) + { + if ($a[$i] < $last) + { + $last = $a[$i]; + $index = $i; + } + } + + //comberting back numerical index + switch ($index) + { + case 0: + $s_index = 'food'; + break; + case 1: + $s_index = 'wood'; + break; + case 2: + $s_index = 'stone'; + break; + case 3: + $s_index = 'iron'; + break; + case 4: + $s_index = 'mana'; + break; + default: + $s_index = 'food'; + break; + } + + //calculating the rate it brings 1 resource + $num_tick = 0.1; + $rate = 'rate_' . $s_index; + + while (TRUE) + { + if (($res[$rate] * $num_tick) > 1) + break; + + $num_tick += 0.1; + } + + $res['rate_food'] *= $num_tick; + $res['rate_wood'] *= $num_tick; + $res['rate_stone'] *= $num_tick; + $res['rate_iron'] *= $num_tick; + $res['rate_mana'] *= $num_tick; + + $res['timer_tick'] = (1000 * $num_tick); + + return $res; + } + +}//MO_Controller +//nowhitesp + + + + + + + + + + diff --git a/Mourne-CI/application/core/MO_Model.php b/Mourne-CI/application/core/MO_Model.php new file mode 100755 index 0000000..da7ff99 --- /dev/null +++ b/Mourne-CI/application/core/MO_Model.php @@ -0,0 +1,1523 @@ +resources = FALSE; + $this->resources_changed = FALSE; + $this->modifiers_changed = FALSE; + $this->score = 0; + + $this->unitq_initialized = FALSE; + $this->unitq_village_units = FALSE; + $this->unitq_changes = FALSE; + $this->unitq_units = FALSE; + + $this->villageid = FALSE; + $this->userid = FALSE; + + $this->hero = FALSE; + $this->hero_stat_changed = FALSE; + $this->hero_exp_changed = FALSE; + $this->hero_hpmp_changed = FALSE; + } + +/* + This doesn't work with codeigniter, gives a bunch of errors. + function __destruct() + { + $this->write_resources(); + } +*/ + //event + function add_event($data) + { + if (!isset($data['data1'])) + $data['data1'] = 0; + if (!isset($data['data2'])) + $data['data2'] = 0; + + $end = (time() + $data['time']); + + $sql = "INSERT INTO events + VALUES(default, + '" . $data['villageid'] . "', + '" . $data['slotid'] . "', + '" . $data['type'] . "', + '$end', + '" . $data['data1'] . "', + '" . $data['data2'] . "')"; + + $this->db->query($sql); + } + + //event end + + //resources + function check_resources($res, $data) + { + if ($res['food'] >= $data['cost_food'] && + $res['wood'] >= $data['cost_wood'] && + $res['stone'] >= $data['cost_stone'] && + $res['iron'] >= $data['cost_iron'] && + $res['mana'] >= $data['cost_mana']) + return TRUE; + + return FALSE; + } + + function set_resources($res) + { + $this->resources = $res; + } + + //adds modifiers from the building + function add_modifiers($id, $villageid, $type = 'building', $num = 1, $noquery = FALSE) + { + if (!$this->resources) + $this->get_resources($villageid); + + if (!$noquery) + { + if ($type == 'building') + $sql = "SELECT * FROM buildings WHERE id='$id'"; + + if ($type == 'unit') + $sql = "SELECT * FROM units WHERE id='$id'"; + + if ($type == 'assignment') + $sql = "SELECT * FROM assignments WHERE id='$id'"; + + if ($type == 'spell') + $sql = "SELECT * FROM spells WHERE id='$id'"; + + if ($type == 'technology') + $sql = "SELECT * FROM technologies WHERE id='$id'"; + + if ($type == 'weather') + $sql = "SELECT * FROM weathers WHERE id='$id'"; + + $q = $this->db->query($sql); + $data = $q->row_array(); + } + else + { + $data = $id; + } + + //if everything is 0 don't do anything + if ($type == 'building' || $type == 'assignment' || $type == 'spell' || + $type == 'technology') + if (!($data['mod_max_food'] || $data['mod_max_wood'] || $data['mod_max_stone'] || + $data['mod_max_iron'] || $data['mod_max_mana'] || $data['mod_rate_food'] || + $data['mod_rate_wood'] || $data['mod_rate_stone'] || $data['mod_rate_iron'] || + $data['mod_rate_mana'] || $data['mod_percent_food'] || $data['mod_percent_wood'] || + $data['mod_percent_stone'] || $data['mod_percent_iron'] || $data['mod_percent_mana'])) + return; + + if ($type == 'weather') + if (!($data['mod_max_food'] || $data['mod_max_wood'] || $data['mod_max_stone'] || + $data['mod_max_iron'] || $data['mod_max_mana'] || $data['mod_percent_food'] || + $data['mod_percent_wood'] || $data['mod_percent_stone'] || $data['mod_percent_iron'] || + $data['mod_percent_mana'])) + return; + + if ($type == 'unit') + if (!($data['mod_rate_food'] || $data['mod_rate_wood'] || + $data['mod_rate_stone'] || $data['mod_rate_iron'] || + $data['mod_rate_mana'])) + return; + + //this is sure at this point + $this->modifiers_changed = TRUE; + $res = $this->resources; + + + if ($type == 'building' || $type == 'assignment' || $type == 'spell' || $type == 'technology') + { + $res['max_food'] += ($data['mod_max_food'] * $num); + $res['max_wood'] += ($data['mod_max_wood'] * $num); + $res['max_stone'] += ($data['mod_max_stone'] * $num); + $res['max_iron'] += ($data['mod_max_iron'] * $num); + $res['max_mana'] += ($data['mod_max_mana'] * $num); + + $res['rate_nm_food'] += ($data['mod_rate_food'] * $num); + $res['rate_nm_wood'] += ($data['mod_rate_wood'] * $num); + $res['rate_nm_stone'] += ($data['mod_rate_stone'] * $num); + $res['rate_nm_iron'] += ($data['mod_rate_iron'] * $num); + $res['rate_nm_mana'] += ($data['mod_rate_mana'] * $num); + + $res['percent_food'] += ($data['mod_percent_food'] * $num); + $res['percent_wood'] += ($data['mod_percent_wood'] * $num); + $res['percent_stone'] += ($data['mod_percent_stone'] * $num); + $res['percent_iron'] += ($data['mod_percent_iron'] * $num); + $res['percent_mana'] += ($data['mod_percent_mana'] * $num); + } + + if ($type == 'unit') + { + $res['rate_nm_food'] += ($data['mod_rate_food'] * $num); + $res['rate_nm_wood'] += ($data['mod_rate_wood'] * $num); + $res['rate_nm_stone'] += ($data['mod_rate_stone'] * $num); + $res['rate_nm_iron'] += ($data['mod_rate_iron'] * $num); + $res['rate_nm_mana'] += ($data['mod_rate_mana'] * $num); + } + + //has to be done this way, because this doesn't have flat rate modifiers + //so adding it to spells (etc) above could error out + if ($type == 'weather') + { + $res['max_food'] += ($data['mod_max_food'] * $num); + $res['max_wood'] += ($data['mod_max_wood'] * $num); + $res['max_stone'] += ($data['mod_max_stone'] * $num); + $res['max_iron'] += ($data['mod_max_iron'] * $num); + $res['max_mana'] += ($data['mod_max_mana'] * $num); + + $res['percent_food'] += ($data['mod_percent_food'] * $num); + $res['percent_wood'] += ($data['mod_percent_wood'] * $num); + $res['percent_stone'] += ($data['mod_percent_stone'] * $num); + $res['percent_iron'] += ($data['mod_percent_iron'] * $num); + $res['percent_mana'] += ($data['mod_percent_mana'] * $num); + } + + $res['rate_food'] = ($res['rate_nm_food'] * ($res['percent_food'] / 100)); + $res['rate_wood'] = ($res['rate_nm_wood'] * ($res['percent_wood'] / 100)); + $res['rate_stone'] = ($res['rate_nm_stone'] * ($res['percent_stone'] / 100)); + $res['rate_iron'] = ($res['rate_nm_iron'] * ($res['percent_iron'] / 100)); + $res['rate_mana'] = ($res['rate_nm_mana'] * ($res['percent_mana'] / 100)); + + $this->resources = $res; + + //add score + if ($type == 'building' || $type == 'unit' || $type == 'technology') + { + $this->score += ($data['score'] * $num); + } + } + + function substract_modifiers($id, $villageid, $type = 'building', $num = 1, $noquery = FALSE) + { + if (!$this->resources) + $this->get_resources($villageid); + + if (!$noquery) + { + if ($type == 'building') + $sql = "SELECT * FROM buildings WHERE id='$id'"; + + if ($type == 'unit') + $sql = "SELECT * FROM units WHERE id='$id'"; + + if ($type == 'assignment') + $sql = "SELECT * FROM assignments WHERE id='$id'"; + + if ($type == 'spell') + $sql = "SELECT * FROM spells WHERE id='$id'"; + + if ($type == 'technology') + $sql = "SELECT * FROM technologies WHERE id='$id'"; + + if ($type == 'weather') + $sql = "SELECT * FROM weathers WHERE id='$id'"; + + $q = $this->db->query($sql); + $data = $q->row_array(); + } + else + { + $data = $id; + } + + //if everything is 0 don't do anything + if ($type == 'building' || $type == 'assignment' || $type == 'spell' || + $type == 'technology') + if (!($data['mod_max_food'] || $data['mod_max_wood'] || $data['mod_max_stone'] || + $data['mod_max_iron'] || $data['mod_max_mana'] || $data['mod_rate_food'] || + $data['mod_rate_wood'] || $data['mod_rate_stone'] || $data['mod_rate_iron'] || + $data['mod_rate_mana'] || $data['mod_percent_food'] || $data['mod_percent_wood'] || + $data['mod_percent_stone'] || $data['mod_percent_iron'] || $data['mod_percent_mana'])) + return; + + if ($type == 'weather') + if (!($data['mod_max_food'] || $data['mod_max_wood'] || $data['mod_max_stone'] || + $data['mod_max_iron'] || $data['mod_max_mana'] || $data['mod_percent_food'] || + $data['mod_percent_wood'] || $data['mod_percent_stone'] || $data['mod_percent_iron'] || + $data['mod_percent_mana'])) + return; + + if ($type == 'unit') + if (!($data['mod_rate_food'] || $data['mod_rate_wood'] || + $data['mod_rate_stone'] || $data['mod_rate_iron'] || + $data['mod_rate_mana'])) + return; + + //this is sure at this point + $this->modifiers_changed = TRUE; + $res = $this->resources; + + if ($type == 'building' || $type == 'assignment' || $type == 'spell' || $type == 'technology') + { + $res['max_food'] -= ($data['mod_max_food'] * $num); + $res['max_wood'] -= ($data['mod_max_wood'] * $num); + $res['max_stone'] -= ($data['mod_max_stone'] * $num); + $res['max_iron'] -= ($data['mod_max_iron'] * $num); + $res['max_mana'] -= ($data['mod_max_mana'] * $num); + + $res['rate_nm_food'] -= ($data['mod_rate_food'] * $num); + $res['rate_nm_wood'] -= ($data['mod_rate_wood'] * $num); + $res['rate_nm_stone'] -= ($data['mod_rate_stone'] * $num); + $res['rate_nm_iron'] -= ($data['mod_rate_iron'] * $num); + $res['rate_nm_mana'] -= ($data['mod_rate_mana'] * $num); + + $res['percent_food'] -= ($data['mod_percent_food'] * $num); + $res['percent_wood'] -= ($data['mod_percent_wood'] * $num); + $res['percent_stone'] -= ($data['mod_percent_stone'] * $num); + $res['percent_iron'] -= ($data['mod_percent_iron'] * $num); + $res['percent_mana'] -= ($data['mod_percent_mana'] * $num); + } + + if ($type == 'unit') + { + $res['rate_nm_food'] -= ($data['mod_rate_food'] * $num); + $res['rate_nm_wood'] -= ($data['mod_rate_wood'] * $num); + $res['rate_nm_stone'] -= ($data['mod_rate_stone'] * $num); + $res['rate_nm_iron'] -= ($data['mod_rate_iron'] * $num); + $res['rate_nm_mana'] -= ($data['mod_rate_mana'] * $num); + } + + //has to be done this way, because this doesn't have flat rate modifiers + //so adding it to spells (etc) above could error out + if ($type == 'weather') + { + $res['max_food'] -= ($data['mod_max_food'] * $num); + $res['max_wood'] -= ($data['mod_max_wood'] * $num); + $res['max_stone'] -= ($data['mod_max_stone'] * $num); + $res['max_iron'] -= ($data['mod_max_iron'] * $num); + $res['max_mana'] -= ($data['mod_max_mana'] * $num); + + $res['percent_food'] -= ($data['mod_percent_food'] * $num); + $res['percent_wood'] -= ($data['mod_percent_wood'] * $num); + $res['percent_stone'] -= ($data['mod_percent_stone'] * $num); + $res['percent_iron'] -= ($data['mod_percent_iron'] * $num); + $res['percent_mana'] -= ($data['mod_percent_mana'] * $num); + } + + $res['rate_food'] = ($res['rate_nm_food'] * ($res['percent_food'] / 100)); + $res['rate_wood'] = ($res['rate_nm_wood'] * ($res['percent_wood'] / 100)); + $res['rate_stone'] = ($res['rate_nm_stone'] * ($res['percent_stone'] / 100)); + $res['rate_iron'] = ($res['rate_nm_iron'] * ($res['percent_iron'] / 100)); + $res['rate_mana'] = ($res['rate_nm_mana'] * ($res['percent_mana'] / 100)); + + $this->resources = $res; + + //add score + if ($type == 'building' || $type == 'unit' || $type == 'technology') + { + $this->score -= ($data['score'] * $num); + } + } + + //substractes resources, $data has to have cost_* fields! + function substract_resources($data, $villageid = 0, $num = 1) + { + //can only happen if not called from events, but shouldn't + if (!$this->resources) + { + $this->get_resources($villageid); + $this->update_resources(); + //$this->_create_sql_debug('sub_resources got called wo $this->resources!'); + } + + $res = $this->resources; + + $res['food'] -= ($data['cost_food'] * $num); + $res['wood'] -= ($data['cost_wood'] * $num); + $res['stone'] -= ($data['cost_stone'] * $num); + $res['iron'] -= ($data['cost_iron'] * $num); + $res['mana'] -= ($data['cost_mana'] * $num); + + if ($res['food'] < 0 || $res['wood'] < 0 || $res['stone'] < 0 || + $res['iron'] < 0 || $res['mana'] < 0) + return FALSE; + + $this->resources = $res; + $this->resources_changed = TRUE; + + return TRUE; + } + +/* + //probably nothing uses it TODO remove + function set_resources($data, $villageid) + { + $sql = "UPDATE resources + SET food='" . $data['food'] . "', + wood='" . $data['wood'] . "', + stone='" . $data['stone'] . "', + iron='" . $data['iron'] . "', + mana='" . $data['mana'] . "' + WHERE villageid='$villageid'"; + + $this->db->query($sql); + } +*/ + //despite the name it updates the resources first, then returns them. + function get_resources($vid) + { + //to not break existing functionality TODO remove returning + if ($this->resources) + return $this->resources; + + //getting resources + $sql = "SELECT * FROM resources WHERE villageid='$vid'"; + $q = $this->db->query($sql); + + $this->resources = $q->row_array(); + + //to not break existing functions, should be removed + return $this->resources; + } + + function update_resources($time = FALSE) + { + if ($time === FALSE) + $time = time(); + + $res = $this->resources; + + //if already at maximum + //we still have to update last_time, because it will screw up things. + if (($res['food'] == $res['max_food']) && + ($res['wood'] == $res['max_wood']) && + ($res['stone'] == $res['max_stone']) && + ($res['iron'] == $res['max_iron']) && + ($res['mana'] == $res['max_mana'])) + { + //do not set $this->resources_changed here, so write only updates the time in the db + $this->resources['last_updated'] = $time; + return; + } + + $ticks = ($time - $res['last_updated']); + + //if more than one event end at the same time this could happen + if (!$ticks) + return; + + $res['food'] += ($res['rate_food'] * $ticks); + $res['wood'] += ($res['rate_wood'] * $ticks); + $res['stone'] += ($res['rate_stone'] * $ticks); + $res['iron'] += ($res['rate_iron'] * $ticks); + $res['mana'] += ($res['rate_mana'] * $ticks); + + //check if over the limit + if ($res['food'] > $res['max_food']) + $res['food'] = $res['max_food']; + if ($res['wood'] > $res['max_wood']) + $res['wood'] = $res['max_wood']; + if ($res['stone'] > $res['max_stone']) + $res['stone'] = $res['max_stone']; + if ($res['iron'] > $res['max_iron']) + $res['iron'] = $res['max_iron']; + if ($res['mana'] > $res['max_mana']) + $res['mana'] = $res['max_mana']; + + $res['last_updated'] = $time; + + //update the db + $this->resources_changed = TRUE; + $this->resources = $res; + } + + function write_resources() + { + //we only have to update last_time + if (!$this->resources_changed && !$this->modifiers_changed) + { + $time = time(); + $sql = "UPDATE resources + SET last_updated='" . $this->resources['last_updated'] . "' + WHERE villageid='" . $this->resources['villageid'] . "'"; + + $this->db->query($sql); + + return; + } + + $res = $this->resources; + + if ($this->modifiers_changed) + { + $sql = "UPDATE resources + SET food='" . $res['food'] . "', + wood='" . $res['wood'] . "', + stone='" . $res['stone'] . "', + iron='" . $res['iron'] . "', + mana='" . $res['mana'] . "', + last_updated='" . $res['last_updated'] . "', + max_food = '" . $res['max_food'] . "', + max_wood = '" . $res['max_wood'] . "', + max_stone = '" . $res['max_stone'] . "', + max_iron = '" . $res['max_iron'] . "', + max_mana = '" . $res['max_mana'] . "', + rate_nm_food = '" . $res['rate_nm_food'] . "', + rate_nm_wood = '" . $res['rate_nm_wood'] . "', + rate_nm_stone = '" . $res['rate_nm_stone'] . "', + rate_nm_iron = '" . $res['rate_nm_iron'] . "', + rate_nm_mana = '" . $res['rate_nm_mana'] . "', + rate_food = '" . $res['rate_food'] . "', + rate_wood = '" . $res['rate_wood'] . "', + rate_stone = '" . $res['rate_stone'] . "', + rate_iron = '" . $res['rate_iron'] . "', + rate_mana = '" . $res['rate_mana'] . "', + percent_food = '" . $res['percent_food'] . "', + percent_wood = '" . $res['percent_wood'] . "', + percent_stone = '" . $res['percent_stone'] . "', + percent_iron = '" . $res['percent_iron'] . "', + percent_mana = '" . $res['percent_mana'] . "' + WHERE villageid='" . $res['villageid'] . "'"; + + $this->db->query($sql); + } + + if ($this->resources_changed && !$this->modifiers_changed) + { + //update the db + $sql = "UPDATE resources + SET food='" . $res['food'] . "', + wood='" . $res['wood'] . "', + stone='" . $res['stone'] . "', + iron='" . $res['iron'] . "', + mana='" . $res['mana'] . "', + last_updated='" . $res['last_updated'] . "' + WHERE villageid='" . $res['villageid'] . "'"; + + $this->db->query($sql); + } + + if ($this->score) + { + $sql = "UPDATE villages + SET score = score + '" . $this->score . "' + WHERE id='" . $this->resources['villageid'] . "'"; + + $this->db->query($sql); + } + } + + //resources end + + //unit functions + + //Resource system have to be initialized! + + function unitq_initialize($villageid, $userid = FALSE, $data = FALSE) + { + if ($this->unitq_initialized) + return; + + $this->villageid = $villageid; + + //if we don't know it query it + if (!$userid) + { + $sql = "SELECT userid FROM villages WHERE id='$villageid'"; + + $q = $this->db->query($sql); + + $res = $q->row_array(); + + $this->userid = $res['userid']; + } + else + $this->userid = $userid; + + //if we had to query units for some reason don't query it again + if (!$data) + { + $sql = "SELECT * FROM village_units WHERE villageid='$villageid'"; + + $q = $this->db->query($sql); + + $this->unitq_village_units = $q->result_array(); + } + else + $this->unitq_village_units = $q->result_array(); + + //getting unitdata + $sql = "SELECT * FROM units"; + + $q = $this->db->query($sql); + + $this->unitq_units = $q->result_array(); + + $this->unitq_initialized = TRUE; + } + + function unitq_change($action, $unitid, $num, $nomod = FALSE) + { + if (!$this->unitq_initialized) + return; + + //getting unitdata + foreach ($this->unitq_units as $row) + { + if ($row['id'] == $unitid) + { + $unitd = $row; + break; + } + } + + //error + if (!$unitd) + return; + + $index = FALSE; + + //finding if that type of unit is in the village + if ($this->unitq_village_units) + { + for ($i = 0; $i < sizeof($this->unitq_village_units); $i++) + { + if ($this->unitq_village_units[$i]['unitid'] == $unitid) + { + $index = $i; + break; + } + } + } + + $data['id'] = $unitid; + + if ($action == '+') + { + if ($index !== FALSE) + $data['unitcount'] = ($this->unitq_village_units[$index]['unitcount'] + $num); + else + $data['unitcount'] = $num; + + if (!$nomod) + $this->substract_modifiers($unitd, $this->villageid, 'unit', $num, TRUE); + } + + if ($action == '-') + { + //this expression doesn't have any mean if we don't have that type of unit + if ($index !== FALSE) + { + $data['unitcount'] = ($this->unitq_village_units[$index]['unitcount'] - $num); + + if ($data['unitcount'] < 0) + { + //adding -1 means substracting it + $num += $data['unitcount']; + $data['unitcount'] = 0; + } + + if (!$nomod) + $this->add_modifiers($unitd, $this->villageid, 'unit', $num, TRUE); + } + } + + if ($action == '+-') + { + if ($index !== FALSE) + $data['unitcount'] = ($this->unitq_village_units[$index]['unitcount'] + $num); + else + $data['unitcount'] = $num; + + if ($num > 0) + { + if (!$nomod) + $this->substract_modifiers($unitd, $this->villageid, 'unit', $num, TRUE); + } + else + { + if (!$nomod) + $this->add_modifiers($unitd, $this->villageid, 'unit', $num, TRUE); + } + } + + if ($action == '=') + { + if ($index !== FALSE) + $data['unitcount'] = $num; + + $number = $this->unitq_village_units[$index]['unitcount'] - $num; + + if ($num > 0) + { + if (!$nomod) + $this->add_modifiers($unitd, $this->villageid, 'unit', $num, TRUE); + } + else + { + if (!$nomod) + $this->substract_modifiers($unitd, $this->villageid, 'unit', $num, TRUE); + } + } + + //error + if (!isset($data['unitcount'])) + return; + + $indexc = FALSE; + + //finding the index which contains our unit + if ($this->unitq_changes) + { + for ($i = 0; $i < sizeof($this->unitq_changes); $i++) + { + if ($this->unitq_changes[$i]['id'] == $unitid) + { + $indexc = $i; + break; + } + } + } + + if ($indexc !== FALSE) + $this->unitq_changes[$indexc]['unitcount'] = $data['unitcount']; + else + $this->unitq_changes[] = array('id' => $data['id'], 'unitcount' => $data['unitcount']); + + } + + function unitq_get_units() + { + return $this->unitq_units; + } + + function unitq_get_village_units() + { + $data = $this->unitq_village_units; + + if ($this->unitq_changes) + { + foreach ($this->unitq_changes as $row) + { + for ($i = 0; $i < sizeof($data); $i++) + { + if ($row['id'] == $data[$i]['unitid']) + $data[$i]['unitcount'] = $row['unitcount']; + } + } + } + + return $data; + } + + //write changes to db + function unitq_write() + { + if (!$this->unitq_initialized) + return; + + if (!$this->unitq_changes) + return; + + foreach ($this->unitq_changes as $row) + { + $vu = FALSE; + + //searching for village_units's row + foreach ($this->unitq_village_units as $vurow) + { + if ($row['id'] == $vurow['unitid']) + { + $vu = $vurow; + break; + } + } + + //its <= just in case + //nothing to do here + if (!$vu && $row['unitcount'] <= 0) + continue; + + //nothing to do here + if ($vu) + if ($row['unitcount'] == $vu['unitcount']) + continue; + + //DELETING row + if ($vu && $row['unitcount'] <= 0) + { + $sql = "DELETE FROM village_units WHERE id='" . $vu['id'] . "'"; + $this->db->query($sql); + continue; + } + + //other cases handled at this point, we only need to check for vu + if ($vu) + { + $sql = "UPDATE village_units + SET unitcount='" . $row['unitcount'] . "' + WHERE id='" . $vu['id'] . "'"; + } + else + { + $sql = "INSERT INTO village_units + VALUES(default, '" . $this->userid . "', '" . $this->villageid . "', + '" . $row['id'] . "', '" . $row['unitcount'] . "')"; + } + + $this->db->query($sql); + } + } + + //unit functions end + + //building + function get_slot_building($slotid, $villageid) + { + $sql = "SELECT buildings.* FROM village_buildings + INNER JOIN buildings ON village_buildings.buildingid=buildings.id + WHERE village_buildings.villageid='$villageid' + AND village_buildings.slotid='$slotid'"; + $q = $this->db->query($sql); + + if ($q->num_rows()) + return $q->row_array(); + + $sql = "SELECT * FROM buildings WHERE id='1'"; + $q = $this->db->query($sql); + + return $q->row_array(); + } + //building end + + //technologies + function add_technology($techid, $group, $tech, $slotid, $villageid) + { + //group == 0 primary, group == 1 secondary + if (!$group) + { + $sql = "INSERT INTO village_technologies + VALUES(default, '$villageid', '0', '$techid')"; + } + else + { + $sql = "INSERT INTO village_technologies + VALUES(default, '$villageid', '$slotid', '$techid')"; + } + + $this->db->query($sql); + + if ($tech['flag_ai']) + { + $sql = "UPDATE villages SET ai_flagged='1' WHERE id='$villageid'"; + + $this->db->query($sql); + } + } + + function get_village_technologies($villageid, $slotid = 0) + { + if ($slotid) + { + $sql = "SELECT * FROM village_technologies + WHERE villageid='$villageid' + AND (slotid='0' OR slotid='$slotid')"; + } + else + { + $sql = "SELECT * FROM village_technologies + WHERE villageid='$villageid' + AND slotid='0'"; + } + + $q = $this->db->query($sql); + + return $q->result_array(); + } + + //data is tecnology data + function have_technology($data, $techid) + { + if (!$techid) + return TRUE; + + foreach ($data as $row) + { + if ($row['technologyid'] == $techid) + return TRUE; + } + + return FALSE; + } + + function has_req_tech($techid, $villageid, $slotid = 0) + { + if (!$techid) + return TRUE; + + $tech = $this->get_village_technologies($villageid, $slotid); + + foreach ($tech as $row) + { + if ($row['technologyid'] == $techid) + return TRUE; + } + + return FALSE; + } + + //technologies end + + //combat log + function add_combat_log($log, $villageid) + { + $sql = "INSERT INTO combat_logs + VALUES(default, '$villageid', '" . time() . "', '1', '$log')"; + + $this->db->query($sql); + + $sql = "UPDATE villages SET new_log='1' WHERE id='$villageid'"; + + $this->db->query($sql); + } + + //combat log end + + //Hero Functions + + //set hero + function set_hero($data) + { + $this->hero = $data; + } + + //to be used with controllers after like equipping, and stat recalculations, combat etc + function get_hero() + { + return $this->hero; + } + + //Hero db update function + function hero_write() + { + //if more than on flag set unset the not needed ones + if ($this->hero_stat_changed) + { + $this->hero_hpmp_changed = FALSE; + $this->hero_exp_changed = FALSE; + } + elseif ($this->hero_exp_changed) + { + $this->hero_hpmp_changed = FALSE; + } + + if ($this->hero_stat_changed) + { + $d = $this->hero; + + $sql = "UPDATE heroes + SET level = '" . $d['level'] . "', + experience = '" . $d['experience'] . "', + health = '" . $d['health'] . "', + mana = '" . $d['mana'] . "', + max_health = '" . $d['max_health'] . "', + max_mana = '" . $d['max_mana'] . "', + percent_max_health = '" . $d['percent_max_health'] . "', + percent_max_mana = '" . $d['percent_max_mana'] . "', + nomod_max_health = '" . $d['nomod_max_health'] . "', + nomod_max_mana = '" . $d['nomod_max_mana'] . "', + points = '" . $d['points'] . "', + agility = '" . $d['agility'] . "', + strength = '" . $d['strength'] . "', + stamina = '" . $d['stamina'] . "', + intellect = '" . $d['intellect'] . "', + spirit = '" . $d['spirit'] . "', + percent_agility = '" . $d['percent_agility'] . "', + percent_strength = '" . $d['percent_strength'] . "', + percent_stamina = '" . $d['percent_stamina'] . "', + percent_intellect = '" . $d['percent_intellect'] . "', + percent_spirit = '" . $d['percent_spirit'] . "', + nomod_agility = '" . $d['nomod_agility'] . "', + nomod_strength = '" . $d['nomod_strength'] . "', + nomod_stamina = '" . $d['nomod_stamina'] . "', + nomod_intellect = '" . $d['nomod_intellect'] . "', + nomod_spirit = '" . $d['nomod_spirit'] . "', + points_agility = '" . $d['points_agility'] . "', + points_strength = '" . $d['points_strength'] . "', + points_stamina = '" . $d['points_stamina'] . "', + points_intellect = '" . $d['points_intellect'] . "', + points_spirit = '" . $d['points_spirit'] . "', + attackpower = '" . $d['attackpower'] . "', + percent_attackpower = '" . $d['percent_attackpower'] . "', + nomod_attackpower = '" . $d['nomod_attackpower'] . "', + armor = '" . $d['armor'] . "', + percent_armor = '" . $d['percent_armor'] . "', + nomod_armor = '" . $d['nomod_armor'] . "', + dodge = '" . $d['dodge'] . "', + nomod_dodge = '" . $d['nomod_dodge'] . "', + parry = '" . $d['parry'] . "', + nomod_parry = '" . $d['nomod_parry'] . "', + hit = '" . $d['hit'] . "', + crit = '" . $d['crit'] . "', + nomod_crit = '" . $d['nomod_crit'] . "', + damage_min = '" . $d['damage_min'] . "', + damage_max = '" . $d['damage_max'] . "', + percent_damage_min = '" . $d['percent_damage_min'] . "', + percent_damage_max = '" . $d['percent_damage_max'] . "', + nomod_damage_min = '" . $d['nomod_damage_min'] . "', + nomod_damage_max = '" . $d['nomod_damage_max'] . "', + ranged_damage_min = '" . $d['ranged_damage_min'] . "', + ranged_damage_max = '" . $d['ranged_damage_max'] . "', + percent_ranged_damage_min = '" . $d['percent_ranged_damage_min'] . "', + percent_ranged_damage_max = '" . $d['percent_ranged_damage_max'] . "', + nomod_ranged_damage_min = '" . $d['nomod_ranged_damage_min'] . "', + nomod_ranged_damage_max = '" . $d['nomod_ranged_damage_max'] . "', + heal_min = '" . $d['heal_min'] . "', + heal_max = '" . $d['heal_max'] . "', + percent_heal_min = '" . $d['percent_heal_min'] . "', + percent_heal_max = '" . $d['percent_heal_max'] . "', + nomod_heal_min = '" . $d['nomod_heal_min'] . "', + nomod_heal_max = '" . $d['nomod_heal_max'] . "', + life_leech = '" . $d['life_leech'] . "', + mana_leech = '" . $d['mana_leech'] . "' + WHERE id = '" . $d['id'] . "'"; + + $this->db->query($sql); + + return TRUE; + } + + //exp, hp, mp + if ($this->hero_exp_changed) + { + $d = $this->hero; + + $sql = "UPDATE heroes + SET health='" . $d['health'] . "', + mana='" . $d['mana'] . "', + experience='" . $d['experience'] . "' + WHERE id = '" . $d['id'] . "'"; + + $this->db->query($sql); + + return TRUE; + } + + if ($this->hero_hpmp_changed) + { + $d = $this->hero; + + $sql = "UPDATE heroes + SET health='" . $d['health'] . "', + mana='" . $d['mana'] . "', + WHERE id = '" . $d['id'] . "'"; + + $this->db->query($sql); + + return TRUE; + } + + return FALSE; + } + + //Hero stat calc functions + + //thins calculates every char stats (like when equipping) + function calc_hero_stats() + { + $d = $this->hero; + $c = $this->hero['class']; + + //base stats + $d['agility'] = floor(($d['nomod_agility'] / 100) * $d['percent_agility']); + $d['strength'] = floor(($d['nomod_strength'] / 100) * $d['percent_strength']); + $d['stamina'] = floor(($d['nomod_stamina'] / 100) * $d['percent_stamina']); + $d['intellect'] = floor(($d['nomod_intellect'] / 100) * $d['percent_intellect']); + $d['spirit'] = floor(($d['nomod_spirit'] / 100) * $d['percent_spirit']); + + //health, mana + $d['max_health'] = $this->hero_stat($c, 'max_health', $d); + $d['max_mana'] = $this->hero_stat($c, 'max_mana', $d); + + $d['max_health'] = floor(($d['max_health'] / 100) * $d['percent_max_health']); + $d['max_mana'] = floor(($d['max_mana'] / 100) * $d['percent_max_mana']); + + $d['health'] = $d['max_health']; + $d['mana'] = $d['max_mana']; + + //ap + $d['attackpower'] = $this->hero_stat($c, 'attackpower', $d); + $d['attackpower'] = floor(($d['attackpower'] / 100) * $d['percent_attackpower']); + + //% stats + $d['dodge'] = $this->hero_stat($c, 'dodge', $d); + $d['parry'] = $this->hero_stat($c, 'parry', $d); + $d['crit'] = $this->hero_stat($c, 'crit', $d); + + //damage + $d['damage_min'] = $this->hero_stat($c, 'damage_min', $d); + $d['damage_min'] = floor(($d['damage_min'] / 100) * $d['percent_damage_min']); + $d['damage_max'] = $this->hero_stat($c, 'damage_max', $d); + $d['damage_max'] = floor(($d['damage_max'] / 100) * $d['percent_damage_max']); + + //ranged damage + $d['ranged_damage_min'] = $this->hero_stat($c, 'ranged_damage_min', $d); + $d['ranged_damage_min'] = floor(($d['ranged_damage_min'] / 100) * $d['percent_ranged_damage_min']); + $d['ranged_damage_max'] = $this->hero_stat($c, 'ranged_damage_max', $d); + $d['ranged_damage_max'] = floor(($d['ranged_damage_max'] / 100) * $d['percent_ranged_damage_max']); + + //heal + $d['heal_min'] = $this->hero_stat($c, 'heal_min', $d); + $d['heal_min'] = floor(($d['heal_min'] / 100) * $d['percent_heal_min']); + $d['heal_max'] = $this->hero_stat($c, 'heal_max', $d); + $d['heal_max'] = floor(($d['heal_max'] / 100) * $d['percent_heal_max']); + + //armor + $d['armor'] = floor(($d['nomod_armor'] / 100) * $d['percent_armor']); + + $this->hero = $d; + $this->hero_stat_changed = TRUE; + + $this->hero_write(); + } + + //the function which has all the class formulas + //class can be string or id + function hero_stat($class, $type, $data = FALSE) + { + if (!$data) + $data = $this->hero; + + if ($class == 1 || $class == 'Warrior') + { + if ($type == 'attackpower') + { + $ATTACKPOWER_BASE = 0; + $ATTACKPOWER_FACTOR_STR = 20; + $ATTACKPOWER_FACTOR_AGI = 10; + + $c = $ATTACKPOWER_BASE; + $c += ($data['strength'] * $ATTACKPOWER_FACTOR_STR); + $c += ($data['agility'] * $ATTACKPOWER_FACTOR_AGI); + $c += $data['nomod_attackpower']; + } + elseif ($type == 'crit') + { + $CRIT_BASE = 0; + //how much of these stats give 1% crit + $CRIT_FACTOR_AGI = 40; + $CRIT_FACTOR_STR = 30; + $CRIT_FACTOR_INT = 60; + + $c = $CRIT_BASE; + $c += ($data['agility'] / $CRIT_FACTOR_AGI); + $c += ($data['strength'] / $CRIT_FACTOR_STR); + $c += ($data['intellect'] / $CRIT_FACTOR_INT); + $c += $data['nomod_crit']; + } + } + elseif ($class == 2 || $class == 'Rogue') + { + if ($type == 'attackpower') + { + $ATTACKPOWER_BASE = 0; + $ATTACKPOWER_FACTOR_STR = 5; + $ATTACKPOWER_FACTOR_AGI = 25; + + $c = $ATTACKPOWER_BASE; + $c += ($data['strength'] * $ATTACKPOWER_FACTOR_STR); + $c += ($data['agility'] * $ATTACKPOWER_FACTOR_AGI); + $c += $data['nomod_attackpower']; + } + elseif ($type == 'crit') + { + $CRIT_BASE = 0; + //how much of these stats give 1% crit + $CRIT_FACTOR_AGI = 25; + $CRIT_FACTOR_STR = 50; + $CRIT_FACTOR_INT = 60; + + $c = $CRIT_BASE; + $c += ($data['agility'] / $CRIT_FACTOR_AGI); + $c += ($data['strength'] / $CRIT_FACTOR_STR); + $c += ($data['intellect'] / $CRIT_FACTOR_INT); + $c += $data['nomod_crit']; + } + } + elseif ($class == 3 || $class == 'Archer') + { + if ($type == 'attackpower') + { + $ATTACKPOWER_BASE = 0; + $ATTACKPOWER_FACTOR_STR = 10; + $ATTACKPOWER_FACTOR_AGI = 20; + + $c = $ATTACKPOWER_BASE; + $c += ($data['strength'] * $ATTACKPOWER_FACTOR_STR); + $c += ($data['agility'] * $ATTACKPOWER_FACTOR_AGI); + $c += $data['nomod_attackpower']; + } + elseif ($type == 'crit') + { + $CRIT_BASE = 0; + //how much of these stats give 1% crit + $CRIT_FACTOR_AGI = 30; + $CRIT_FACTOR_STR = 60; + $CRIT_FACTOR_INT = 40; + + $c = $CRIT_BASE; + $c += ($data['agility'] / $CRIT_FACTOR_AGI); + $c += ($data['strength'] / $CRIT_FACTOR_STR); + $c += ($data['intellect'] / $CRIT_FACTOR_INT); + $c += $data['nomod_crit']; + } + } + + if ($type == 'max_health') + { + $HEALTH_FACTOR = 10; + + $c = $data['stamina'] * $HEALTH_FACTOR; + $c += $data['nomod_max_health']; + } + elseif ($type == 'max_mana') + { + $MANA_FACTOR = 10; + + $c = $data['intellect'] * $MANA_FACTOR; + $c += $data['nomod_max_mana']; + } + elseif ($type == 'dodge') + { + $DODGE_BASE = 0; + //how much agi gives 1% dodge + $DODGE_FACTOR_AGI = 30; + + $c = $DODGE_BASE; + $c += ($data['agility'] / $DODGE_FACTOR_AGI); + $c += $data['nomod_dodge']; + } + elseif ($type == 'parry') + { + $PARRY_BASE = 0; + //how much str gives 1% parry + $PARRY_FACTOR_STR = 30; + + $c = $PARRY_BASE; + $c += ($data['strength'] / $PARRY_FACTOR_STR); + $c += $data['nomod_parry']; + } + elseif ($type == 'damage_min') + { + $DAMAGE_BASE = 0; + //how much ap gives 1 dmg increase + $DAMAGE_FACTOR = 100; + + $c = $DAMAGE_BASE; + $c += floor($data['attackpower'] / $DAMAGE_FACTOR); + $c += $data['nomod_damage_min']; + } + elseif ($type == 'damage_max') + { + $DAMAGE_BASE = 0; + //how much ap gives 1 dmg increase + $DAMAGE_FACTOR = 100; + + $c = $DAMAGE_BASE; + $c += floor($data['attackpower'] / $DAMAGE_FACTOR); + $c += $data['nomod_damage_max']; + } + elseif ($type == 'ranged_damage_min') + { + $DAMAGE_BASE = 0; + //how much ap gives 1 dmg increase + $DAMAGE_FACTOR = 100; + + $c = $DAMAGE_BASE; + $c += floor($data['attackpower'] / $DAMAGE_FACTOR); + $c += $data['nomod_ranged_damage_min']; + } + elseif ($type == 'ranged_damage_max') + { + $DAMAGE_BASE = 0; + //how much ap gives 1 dmg increase + $DAMAGE_FACTOR = 100; + + $c = $DAMAGE_BASE; + $c += floor($data['attackpower'] / $DAMAGE_FACTOR); + $c += $data['nomod_ranged_damage_max']; + } + elseif ($type == 'heal_min') + { + $c = 0; + } + elseif ($type == 'heal_max') + { + $c = 0; + } + + if (isset($c)) + return $c; + + return FALSE; + } + + function hero_add_stats($data) + { + $d = $this->hero; + + if (isset($data['level_modifier'])) + { + $lvlmax = $data['level_modifier_max']; + + //this means no limit + if (!$lvlmax) + $lvlmax = $this->hero['level']; + + if ($lvlmax < $this->hero['level']) + $lvlmod = $lvlmax; + else + $lvlmod = $this->hero['level']; + + $lvlmod *= $data['level_modifier']; + } + else + { + $lvlmod = 0; + } + + $d['percent_max_health'] += $data['percent_max_health']; + $d['percent_max_mana'] += $data['percent_max_mana']; + + $d['nomod_max_health'] += $data['nomod_max_health']; + $d['nomod_max_mana'] += $data['nomod_max_mana']; + + $d['percent_agility'] += $data['percent_agility']; + $d['percent_strength'] += $data['percent_strength']; + $d['percent_stamina'] += $data['percent_stamina']; + $d['percent_intellect'] += $data['percent_intellect']; + $d['percent_spirit'] += $data['percent_spirit']; + + $d['nomod_agility'] += $data['nomod_agility'] + $lvlmod; + $d['nomod_strength'] += $data['nomod_strength'] + $lvlmod; + $d['nomod_stamina'] += $data['nomod_stamina'] + $lvlmod; + $d['nomod_intellect'] += $data['nomod_intellect'] + $lvlmod; + $d['nomod_spirit'] += $data['nomod_spirit'] + $lvlmod; + + $d['percent_attackpower'] += $data['percent_attackpower']; + $d['nomod_attackpower'] += $data['nomod_attackpower']; + + $d['percent_armor'] += $data['percent_armor']; + $d['nomod_armor'] += $data['nomod_armor']; + + $d['nomod_dodge'] += $data['nomod_dodge']; + $d['nomod_parry'] += $data['nomod_parry']; + $d['hit'] += $data['hit']; + $d['nomod_crit'] += $data['nomod_crit']; + + $d['percent_damage_min'] += $data['percent_damage_min']; + $d['percent_damage_max'] += $data['percent_damage_max']; + $d['nomod_damage_min'] += $data['nomod_damage_min']; + $d['nomod_damage_max'] += $data['nomod_damage_max']; + + $d['percent_ranged_damage_min'] += $data['percent_ranged_damage_min']; + $d['percent_ranged_damage_max'] += $data['percent_ranged_damage_max']; + $d['nomod_ranged_damage_min'] += $data['nomod_ranged_damage_min']; + $d['nomod_ranged_damage_max'] += $data['nomod_ranged_damage_max']; + + $d['percent_heal_min'] += $data['percent_heal_min']; + $d['percent_heal_max'] += $data['percent_heal_max']; + + $d['nomod_heal_min'] += $data['nomod_heal_min']; + $d['nomod_heal_max'] += $data['nomod_heal_max']; + + $d['life_leech'] += $data['life_leech']; + $d['mana_leech'] += $data['mana_leech']; + + $this->hero = $d; + } + + function hero_remove_stats($data) + { + $d = $this->hero; + + if (isset($data['level_modifier'])) + { + $lvlmax = $data['level_modifier_max']; + + //this means no limit + if (!$lvlmax) + $lvlmax = $this->hero['level']; + + if ($lvlmax < $this->hero['level']) + $lvlmod = $lvlmax; + else + $lvlmod = $this->hero['level']; + + $lvlmod *= $data['level_modifier']; + } + else + { + $lvlmod = 0; + } + + $d['percent_max_health'] -= $data['percent_max_health']; + $d['percent_max_mana'] -= $data['percent_max_mana']; + + $d['nomod_max_health'] -= $data['nomod_max_health']; + $d['nomod_max_mana'] -= $data['nomod_max_mana']; + + $d['percent_agility'] -= $data['percent_agility']; + $d['percent_strength'] -= $data['percent_strength']; + $d['percent_stamina'] -= $data['percent_stamina']; + $d['percent_intellect'] -= $data['percent_intellect']; + $d['percent_spirit'] -= $data['percent_spirit']; + + $d['nomod_agility'] -= $data['nomod_agility'] + $lvlmod; + $d['nomod_strength'] -= $data['nomod_strength'] + $lvlmod; + $d['nomod_stamina'] -= $data['nomod_stamina'] + $lvlmod; + $d['nomod_intellect'] -= $data['nomod_intellect'] + $lvlmod; + $d['nomod_spirit'] -= $data['nomod_spirit'] + $lvlmod; + + $d['percent_attackpower'] -= $data['percent_attackpower']; + $d['nomod_attackpower'] -= $data['nomod_attackpower']; + + $d['percent_armor'] -= $data['percent_armor']; + $d['nomod_armor'] -= $data['nomod_armor']; + + $d['nomod_dodge'] -= $data['nomod_dodge']; + $d['nomod_parry'] -= $data['nomod_parry']; + $d['hit'] -= $data['hit']; + $d['nomod_crit'] -= $data['nomod_crit']; + + $d['percent_damage_min'] -= $data['percent_damage_min']; + $d['percent_damage_max'] -= $data['percent_damage_max']; + $d['nomod_damage_min'] -= $data['nomod_damage_min']; + $d['nomod_damage_max'] -= $data['nomod_damage_max']; + + $d['percent_ranged_damage_min'] -= $data['percent_ranged_damage_min']; + $d['percent_ranged_damage_max'] -= $data['percent_ranged_damage_max']; + $d['nomod_ranged_damage_min'] -= $data['nomod_ranged_damage_min']; + $d['nomod_ranged_damage_max'] -= $data['nomod_ranged_damage_max']; + + $d['percent_heal_min'] -= $data['percent_heal_min']; + $d['percent_heal_max'] -= $data['percent_heal_max']; + $d['nomod_heal_min'] -= $data['nomod_heal_min']; + $d['nomod_heal_max'] -= $data['nomod_heal_max']; + + $d['life_leech'] -= $data['life_leech']; + $d['mana_leech'] -= $data['mana_leech']; + + $this->hero = $d; + } + + //Hero stat calc functions end + + function hero_find_empty_bagspace($data, $key = 'id') + { + if (!$data) + return 0; + + $found = FALSE; + for ($i = 0; $i < self::INVENTORY_MAX; $i++) + { + foreach ($data as $row) + { + if ($row[$key] == $i) + { + $found = TRUE; + break; + } + } + + if ($found) + { + $found = FALSE; + } + else + { + return $i; + } + } + + return FALSE; + } + + //Hero Functions end + + //admin sql functions + function _create_sql($sql) + { + $this->load->helper('file'); + + $time = time(); + + $file = './sql/' .$time . '.sql'; + + write_file($file, $sql); + + $this->_update_db_version($time); + } + + function _update_db_version($time) + { + $sql = "UPDATE db_version SET version='$time' WHERE id='1'"; + + $this->db->query($sql); + } + + function _create_sql_debug($sql) + { + $this->load->helper('file'); + + $time = time(); + + $file = './sql/debug_' .$time . '.sql'; + + write_file($file, $sql); + } + + //admin sql functions end + +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/core/index.html b/Mourne-CI/application/core/index.html new file mode 100755 index 0000000..c942a79 --- /dev/null +++ b/Mourne-CI/application/core/index.html @@ -0,0 +1,10 @@ + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + + \ No newline at end of file diff --git a/Mourne-CI/application/helpers/class_helper.php b/Mourne-CI/application/helpers/class_helper.php new file mode 100755 index 0000000..e425091 --- /dev/null +++ b/Mourne-CI/application/helpers/class_helper.php @@ -0,0 +1,30 @@ + $hero['level']) + { + $data['message'] = 'Your level is too low to use that item.'; + return $data; + } + + if ($item['subtype'] == 6) + { + $data['can'] = TRUE; + $data['allowed_slot1'] = 6; + return $data; + } + elseif ($item['subtype'] == 12) + { + $data['can'] = TRUE; + $data['allowed_slot1'] = 12; + $data['allowed_slot2'] = 13; + return $data; + } + elseif ($item['subtype'] == 14) + { + $data['can'] = TRUE; + $data['allowed_slot1'] = 14; + $data['allowed_slot2'] = 15; + return $data; + } + elseif ($item['subtype'] == 19) + { + if ($hero['class'] == 2) + { + $data['can'] = TRUE; + $data['allowed_slot1'] = 19; + return $data; + } + } + + $datatype = array( + //warrior + '1' => array(0, 1, 2, 3, 4), + //rogue + '2' => array(0, 1, 2, FALSE, FALSE), + //archer + '3' => array(0, 1, 2, 3, FALSE)); + + $dataeqslots = array( + //head + '0' => array(0, FALSE), + //neck + '1' => array(1, FALSE), + //shoulder + '2' => array(2, FALSE), + //back + '3' => array(3, FALSE), + //chest + '4' => array(4, FALSE), + //shirt + '5' => array(5, FALSE), + //bracer + '7' => array(7, FALSE), + //gloves + '8' => array(8, FALSE), + //belt + '9' => array(9, FALSE), + //legs + '10' => array(10, FALSE), + //foots + '11' => array(11, FALSE), + ); + + //this means every item, whose subsubtype means the type (like cloth) + if ($item['subtype'] >= 0 && $item['subtype'] < 6 || $item['subtype'] > 6 && $item['subtype'] < 12) + { + if ($datatype[$hero['class']][$item['subsubtype']] !== FALSE) + { + $data['can'] = TRUE; + $data['allowed_slot1'] = $dataeqslots[$item['subtype']][0]; + $data['allowed_slot2'] = $dataeqslots[$item['subtype']][1]; + return $data; + } + else + { + $data['can'] = FALSE; + $data['message'] = "You don't have the required proficiency to use that item."; + return $data; + } + } + + $dataclasswep = array( + //warrior + '1' => array(FALSE, FALSE, FALSE, FALSE, 5, 6, 7, 8, 9, 10, + 11, 12, 13, 14, 15, 16, FALSE, FALSE, FALSE, 20, FALSE), + //rogue + '2' => array(FALSE, 2, 3, 4, 5, 6, 7, FALSE, 9, 10, + 11, FALSE, 13, 14, 15, FALSE, FALSE, FALSE, FALSE, FALSE, 21), + //archer + '3' => array(FALSE, 2, 3, 4, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, + FALSE, FALSE, 13, 14, 15, 16, 17, 18, 19, FALSE, FALSE) + ); + + //array(first slot, second slot, two Handed) + $datawep = array( + //staff + '1' => array(16, FALSE, TRUE), + //dagger one, main, off + '2' => array(16, 17, FALSE), + '3' => array(16, FALSE, FALSE), + '4' => array(17, FALSE, FALSE), + //mace one main, off, 2h + '5' => array(16, 17, FALSE), + '6' => array(16, FALSE, FALSE), + '7' => array(17, FALSE, FALSE), + '8' => array(16, FALSE, TRUE), + //axe one, main, off, 2h + '9' => array(16, 17, FALSE), + '10' => array(16, FALSE, FALSE), + '11' => array(17, FALSE, FALSE), + '12' => array(16, FALSE, TRUE), + //sword one, main, off, 2h + '13' => array(16, 17, FALSE), + '14' => array(16, FALSE, FALSE), + '15' => array(17, FALSE, FALSE), + '16' => array(16, FALSE, TRUE), + //bow, crossbow, gun + '17' => array(18, 17, FALSE), + '18' => array(18, FALSE, FALSE), + '19' => array(18, FALSE, FALSE), + //?? warri, rogue ranged + '20' => array(18, FALSE, FALSE), + '21' => array(18, FALSE, FALSE) + ); + + if ($item['subtype'] == 16) + { + if ($dataclasswep[$hero['class']][$item['subsubtype']] !== FALSE) + { + $data['can'] = TRUE; + $data['allowed_slot1'] = $datawep[$item['subsubtype']][0]; + $data['allowed_slot2'] = $datawep[$item['subsubtype']][1]; + $data['two_handed'] = $datawep[$item['subsubtype']][2]; + return $data; + } + } + + $data['can'] = FALSE; + $data['message'] = 'You cannot use that item.'; + return $data; + } +} \ No newline at end of file diff --git a/Mourne-CI/application/helpers/event_helper.php b/Mourne-CI/application/helpers/event_helper.php new file mode 100755 index 0000000..55e80f0 --- /dev/null +++ b/Mourne-CI/application/helpers/event_helper.php @@ -0,0 +1,16 @@ + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + + \ No newline at end of file diff --git a/Mourne-CI/application/helpers/murl_helper.php b/Mourne-CI/application/helpers/murl_helper.php new file mode 100755 index 0000000..749f08b --- /dev/null +++ b/Mourne-CI/application/helpers/murl_helper.php @@ -0,0 +1,24 @@ +config->site_url($uri); + } +} + +//addign img/prefix, so I don't have to in every call + +if ( ! function_exists('ibase_url')) +{ + function ibase_url($uri = '') + { + $muri = 'img/' . $uri; + $CI =& get_instance(); + return $CI->config->base_url($muri); + } +} \ No newline at end of file diff --git a/Mourne-CI/application/index.html b/Mourne-CI/application/index.html new file mode 100755 index 0000000..c942a79 --- /dev/null +++ b/Mourne-CI/application/index.html @@ -0,0 +1,10 @@ + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + + \ No newline at end of file diff --git a/Mourne-CI/application/models/ai_model.php b/Mourne-CI/application/models/ai_model.php new file mode 100755 index 0000000..d1542de --- /dev/null +++ b/Mourne-CI/application/models/ai_model.php @@ -0,0 +1,389 @@ +parse_settings(); + + if (!$this->settings['on']) + return 'AI is off'; + + $sql = "SELECT * FROM ai_villages WHERE attacked='0'"; + + $q = $this->db->query($sql); + + $ai_village_not_attacked = $q->num_rows(); + + $log = "ai_villages query returned " . $ai_village_not_attacked . " rows. \n"; + + $ai_villages = $q->result_array(); + + $attacking_num = $this->settings['max_attack_village_limit']; + + //determining how much will attack + if ($this->settings['attack_village_rand']) + { + $a = rand(0, $this->settings['attack_village_rand']); + + $attacking_num -= $a; + } + + $log .= $attacking_num . " villages attacking. \n"; + + $reset = FALSE; + + //resetting ai_villages's attack field if everything will be set to attacked + if ($ai_village_not_attacked < $attacking_num) + { + $attacking_num = $ai_village_not_attacked; + + $reset = TRUE; + } + + //determining which villages are going to attack + for ($i = 0; $i < $attacking_num; $i++) + { + $found = FALSE; + + while (!$found) + { + foreach ($ai_villages as $row) + { + $r = rand(1, 100); + + if ($r > 50 && !isset($s[$row['id']])) + { + $s[$row['id']] = TRUE; + $data[] = $row; + $found = TRUE; + break; + } + } + } + } + + //saving to the db that they are attacked + if (!$reset) + { + $sql = "UPDATE ai_villages SET attacked='1' WHERE "; + + $first = TRUE; + foreach ($data as $row) + { + if ($first) + $first = FALSE; + else + $sql .= " OR "; + + $sql .= "id='" . $row['id'] . "'"; + } + + $this->db->query($sql); + } + else + { + $sql = "UPDATE ai_villages SET attacked='0'"; + $this->db->query($sql); + $log .= "ai_villages's attacked field reseted.\n"; + } + + //getting ai_units + $sql = "SELECT * FROM ai_units"; + $q = $this->db->query($sql); + $num_ai_units = $q->num_rows(); + $res = $q->result_array(); + + if ($this->settings['ai_unit_max_diff'] < $num_ai_units) + { + $num = 0; + $d = FALSE; + + while ($num != $this->settings['ai_unit_max_diff']) + { + foreach ($res as $row) + { + if (!isset($d[$row['id']])) + { + $r = rand(1,50); + if ($r > 50) + { + $ai_units[] = $row; + $d[$row['id']] = TRUE; + $num++; + break; + } + } + } + } + + } + else + { + $ai_units = $res; + } + + //adding villages to log + $log .= "Attacking villages: \n"; + foreach ($data as $row) + { + $log .= $row['name'] . "(" .$row['X'] . " " . $row['Y'] . ") \n"; + } + + //sending attackers + foreach ($data as $row) + { + $sql = "SELECT map.X,map.Y,villages.* + FROM map + LEFT JOIN villages ON (map.villageid=villages.id AND map.type='3') + WHERE (map.type = 3 AND + map.X > '" . ($row['X'] - 24) . "' + AND map.X < '" . ($row['X'] + 24) . "' + AND map.Y > '" . ($row['Y'] - 24) . "' + AND map.Y < '" . ($row['Y'] + 24) . "')"; + + $q = $this->db->query($sql); + + //no villages in range + if (!$q->num_rows()) + continue; + + $log .= $row['name'] . " is attacking: \n"; + + $res = $q->result_array(); + + //sending attackers + foreach ($res as $rrow) + { + if ($rrow['ai_on'] || $rrow['ai_flagged']) + { + $log .= "Sending attackers to: " . $rrow['name'] . "[" . $rrow['id'] . "]"; + $log .= " (S: " . $rrow['score'] . ")\n"; + $log .= "Sent: \n"; + + foreach ($ai_units as $unit) + { + $a = ($rrow['score'] / $unit['rate']) / $unit['per_score']; + $num = floor($a); + + $log .= $unit['name'] . "->" . $num . "\n"; + + $send[] = array('unitid' => $unit['id'], + 'num' => $num); + } + + $this->send_attack($send, $row, $rrow); + } + } + } + + $this->load->helper('file'); + + $f = './logs/ai_log/log_' . time() . '.txt'; + + write_file($f, $log); + + return $log; + + } + + function send_attack($send, $ai_village, $village) + { + $villageid = $village['id']; + + $sql = "SELECT max(attackid) AS attackid FROM attacks WHERE villageid='$villageid'"; + $q = $this->db->query($sql); + + $res = $q->row_array(); + + if ($res['attackid']) + { + $atkid = ($res['attackid'] + 1); + } + else + $atkid = 1; + + $first = TRUE; + $sql = "INSERT INTO attacks VALUES"; + foreach ($send as $row) + { + if ($first) + $first = FALSE; + else + $sql .= ','; + + $sql .= "(default, '$villageid', '$atkid', '" . $row['unitid'] . "', '" . $row['num']. "')"; + } + + $sql .= ";"; + + $this->db->query($sql); + + //calculate distance + $dist = sqrt(pow($ai_village['X'] - $village['X'], 2) + pow($ai_village['Y'] - $village['Y'], 2)); + + //15 min 1 square + $time = $dist * 900; + $r = rand(3600, 10800); + $end = $time + $r; + + //todo remove + $end = 20; + + //attack random sides + $dir = rand(1, 4); + + $ev['villageid'] = $villageid; + $ev['slotid'] = 0; + $ev['type'] = parent::EVENT_ATTACK; + $ev['time'] = $end; + $ev['data1'] = $atkid; + $ev['data2'] = $dir; + + $this->add_event($ev); + + } + + function parse_settings() + { + $sql = "SELECT * FROM ai_settings"; + + $q = $this->db->query($sql); + + $res = $q->result_array(); + + foreach ($res as $row) + { + $data[$row['setting']] = $row['value']; + } + + $this->settings = $data; + } + + function get_unit_list_drop_admin() + { + $sql = "SELECT * FROM ai_units"; + + $q = $this->db->query($sql); + + $res = $q->result_array(); + + $data[0] = 'Nothing'; + + foreach ($res as $row) + { + $data[$row['id']] = $row['name']; + } + + return $data; + } + + function list_units_admin() + { + $sql = "SELECT * FROM ai_units"; + + $q = $this->db->query($sql); + + return $q->result_array(); + } + + function get_unit_admin($id) + { + $sql = "SELECT * FROM ai_units WHERE id='$id'"; + $q = $this->db->query($sql); + + return $q->row_array(); + } + + function add_unit_admin($data) + { + $sql = "INSERT INTO ai_units + VALUES(default, + '" . $data['name'] . "', + '" . $data['icon'] . "', + '" . $data['ability'] . "', + '" . $data['can_carry'] . "', + '" . $data['attack'] . "', + '" . $data['defense'] . "', + '" . $data['rate'] . "', + '" . $data['per_score'] . "', + '" . $data['turn'] . "', + '" . $data['strong_against'] . "', + '" . $data['weak_against'] . "')"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function edit_unit_admin($data) + { + $sql = "UPDATE ai_units + SET name='" . $data['name'] . "', + icon='" . $data['icon'] . "', + ability='" . $data['ability'] . "', + can_carry='" . $data['can_carry'] . "', + attack='" . $data['attack'] . "', + defense='" . $data['defense'] . "', + rate='" . $data['rate'] . "', + per_score='" . $data['per_score'] . "', + turn='" . $data['turn'] . "', + strong_against='" . $data['strong_against'] . "', + weak_against='" . $data['weak_against'] . "' + WHERE id='" . $data['id'] . "'"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function get_settings_list_admin() + { + $sql = "SELECT * FROM ai_settings"; + + $q = $this->db->query($sql); + + return $q->result_array(); + } + + function get_setting_admin($id) + { + $sql = "SELECT * FROM ai_settings WHERE id='$id'"; + $q = $this->db->query($sql); + + return $q->row_array(); + } + + function edit_setting_admin($data) + { + $sql = "UPDATE ai_settings + SET setting='" . $data['setting'] . "', + value='" . $data['value'] . "', + description='" . $data['description'] . "' + WHERE id='" . $data['id'] . "'"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function add_setting_admin($data) + { + $sql = "INSERT INTO ai_settings + VALUES(default, + '" . $data['setting'] . "', + '" . $data['value'] . "' , + '" . $data['description'] . "')"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/models/assignment_model.php b/Mourne-CI/application/models/assignment_model.php new file mode 100755 index 0000000..11c41df --- /dev/null +++ b/Mourne-CI/application/models/assignment_model.php @@ -0,0 +1,396 @@ +set_resources($res); + + //check if there is building in that slot + $sql = "SELECT buildings.* FROM village_buildings + INNER JOIN buildings ON village_buildings.buildingid=buildings.id + WHERE slotid='$slotid' AND villageid='$villageid'"; + + $q = $this->db->query($sql); + + if (!$q->num_rows()) + return 1; + + $building = $q->row_array(); + + //check if there is already an assignment in which case we just deassign + //in this case num will be 0 unless they play with the form, + //but we shouldn't care about that since the user can write 0 into the form + $sql = "SELECT * FROM building_assignments + WHERE assignmentid='$assid' + AND slotid='$slotid' + AND villageid='$villageid'"; + $q = $this->db->query($sql); + + if ($q->num_rows()) + { + //the user wants to just deassign + $ass = $q->row_array(); + + //delete assignment + $sql = "DELETE FROM building_assignments WHERE id='" . $ass['id'] . "'"; + $this->db->query($sql); + + //giving back units + + //getting units + $sql = "SELECT * FROM village_units + WHERE villageid='$villageid' + AND userid='$userid'"; + $q = $this->db->query($sql); + + if ($q->num_rows()) + { + $units = $q->result_array(); + } + else + { + $units = FALSE; + } + + $found = FALSE; + + if ($units) + { + foreach ($units as $row) + { + if ($row['unitid'] == $ass['unitid']) + { + $found = TRUE; + $fdata = $row['id']; + } + } + } + + if ($found) + { + $sql = "UPDATE village_units + SET unitcount = unitcount + '". $ass['num_unit'] . "' + WHERE id='$fdata'"; + } + else + { + $sql = "INSERT INTO village_units + VALUES(default, '$userid', '$villageid', + '" . $ass['unitid'] . "', '" . $ass['num_unit'] . "')"; + } + + $this->db->query($sql); + + //substract the bonuses + $this->substract_modifiers($assid, $villageid, 'assignment', + $ass['num_bonus']); + + $this->write_resources(); + + //taking away spells + $sql = "DELETE FROM building_spells + WHERE assignmentid='$assid' + AND slotid='$slotid' + AND villageid='$villageid'"; + + $this->db->query($sql); + + return 0; + } + + //check if assignment exists + $sql = "SELECT * FROM assignments WHERE id='$assid'"; + $q = $this->db->query($sql); + + if (!$q->num_rows()) + return 2; + + $ass = $q->row_array(); + + //checking technology + if ($ass['req_tech']) + if (!$this->has_req_tech($ass['req_tech'], $villageid, $slotid)) + return 3; + + //check if building has that assignment + if (!($building['assignment1'] == $ass['id'] || + $building['assignment2'] == $ass['id'] || + $building['assignment3'] == $ass['id'] || + $building['assignment4'] == $ass['id'] || + $building['assignment5'] == $ass['id'])) + return 3; + + //getting unit + $sql = "SELECT * FROM village_units + WHERE unitid='" . $ass['unitid'] . "' + AND userid='$userid'"; + $q = $this->db->query($sql); + + if (!$q->num_rows()) + return 4; + + $unit = $q->row_array(); + + //it probably shouldn't happen but who knows + if (!$unit['unitcount']) + return 5; + + //if the user just clicks on the assign we should assign max + if (!$num) + $num = $ass['max']; + + //we shouldn't assign more than allowed + if ($ass['max'] < $num) + $num = $ass['max']; + + //determining how much can be assigned + if ($unit['unitcount'] < $num) + $num = $unit['unitcount']; + + //determining number of bonuses granted + $num_bonus = floor(($num / $ass['bonus_per_assigned'])); + + $count = ($unit['unitcount'] - $num); + + //updating unit field in db + if ($count <= 0) + { + $sql = "DELETE FROM village_units WHERE id='" . $unit['id'] . "'"; + } + else + { + $sql = "UPDATE village_units + SET unitcount=unitcount - '$num' + WHERE id='" . $unit['id'] . "'"; + } + + $this->db->query($sql); + + //adding assignment + $sql = "INSERT INTO building_assignments + VALUES(default, '$villageid', '$slotid', '" . $unit['unitid'] . "', + '$num', '" . $assid . "', '$num_bonus')"; + + $this->db->query($sql); + + //grant resource bonus + $this->add_modifiers($assid, $villageid, 'assignment', $num_bonus); + $this->write_resources(); + + //assignment has spell + if (!$ass['spellid']) + return 0; + + /* + //only give spells if bonus is granted + if (!$num_bonus) + return 0; + */ + + //only give spell if max unit assigned + if (!($ass['max'] == $num)) + return 0; + + //granting spell + $sql = "INSERT INTO building_spells + VALUES(default, '$villageid', '$slotid', '$assid', + '" . $ass['spellid'] . "')"; + + $this->db->query($sql); + + return 0; + } + + function get_assignments($slotid, $villageid, $userid) + { + if ($slotid > parent::TOTAL_BUILDINGS) + return 1; //that shouldn't happen + + $sql = "SELECT buildings.* FROM village_buildings + INNER JOIN buildings ON village_buildings.buildingid = buildings.id + WHERE village_buildings.slotid='$slotid' + AND village_buildings.villageid='$villageid'"; + + $q = $this->db->query($sql); + + if (!$q->num_rows()) + return 2; //nothing in that slot + + $res = $q->row_array(); + + //getting assignment data + $sql = "SELECT assignments.*,units.name + FROM assignments + INNER JOIN units ON assignments.unitid=units.id + WHERE assignments.id='" . $res['assignment1'] . "' + OR assignments.id='" . $res['assignment2'] . "' + OR assignments.id='" . $res['assignment3'] . "' + OR assignments.id='" . $res['assignment4'] . "' + OR assignments.id='" . $res['assignment5'] . "'"; + + $q = $this->db->query($sql); + + + if (!$q->num_rows()) + { + $data['assigndata'] = FALSE; //building doesn't have assignments + return $data; + } + + $adata = $q->result_array(); + + $tech = $this->get_village_technologies($villageid, $slotid); + + foreach ($adata as $row) + { + if ($this->have_technology($tech, $row['req_tech'])) + $data['assigndata'][] = $row; + } + + if (!isset($data['assigndata'])) + { + $data['assigndata'] = FALSE; + return $data; + } + + //getting assigned data + $sql = "SELECT * FROM building_assignments + WHERE slotid='$slotid' + AND villageid='$villageid'"; + + $q = $this->db->query($sql); + + if (!$q->num_rows()) + { + $data['assigned'] = FALSE; + } + else + { + $data['assigned'] = $q->result_array(); + } + + $data['building'] = $res; + + //getting units + $sql = "SELECT * FROM village_units + WHERE villageid='$villageid' + AND userid='$userid'"; + $q = $this->db->query($sql); + + if ($q->num_rows) + { + $data['units'] = $q->result_array(); + } + else + { + $data['units'] = FALSE; + } + + return $data; + + } + + function get_assignment_list_drop_admin() + { + $sql = "SELECT * FROM assignments"; + $q = $this->db->query($sql); + + $res = $q->result_array(); + + $data[0] = 'Nothing'; + + foreach ($res as $row) + { + $data[$row['id']] = $row['description']; + } + + return $data; + } + + function get_assignments_admin() + { + $sql = "SELECT * FROM assignments"; + + $q = $this->db->query($sql); + + return $q->result_array(); + } + + function add_assignment_admin($data) + { + $sql = "INSERT INTO assignments + VALUES (default, + '" . $data['unitid'] . "', + '" . $data['max'] . "', + '" . $data['bonus_per_assigned'] . "', + '" . $data['spellid'] . "', + '" . $data['req_tech'] . "', + '" . $data['mod_max_food'] . "', + '" . $data['mod_max_wood'] . "', + '" . $data['mod_max_stone'] . "', + '" . $data['mod_max_iron'] . "', + '" . $data['mod_max_mana'] . "', + '" . $data['mod_rate_food'] . "', + '" . $data['mod_rate_wood'] . "', + '" . $data['mod_rate_stone'] . "', + '" . $data['mod_rate_iron'] . "', + '" . $data['mod_rate_mana'] . "', + '" . $data['mod_percent_food'] . "', + '" . $data['mod_percent_wood'] . "', + '" . $data['mod_percent_stone'] . "', + '" . $data['mod_percent_iron'] . "', + '" . $data['mod_percent_mana'] . "', + '" . $data['description'] . "')"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function edit_assignment_admin($data) + { + $sql = "UPDATE assignments + SET unitid='" . $data['unitid'] . "', + max='" . $data['max'] . "', + bonus_per_assigned='" . $data['bonus_per_assigned'] . "', + spellid='" . $data['spellid'] . "', + req_tech='" . $data['req_tech'] . "', + mod_max_food='" . $data['mod_max_food'] . "', + mod_max_wood='" . $data['mod_max_wood'] . "', + mod_max_stone='" . $data['mod_max_stone'] . "', + mod_max_iron='" . $data['mod_max_iron'] . "', + mod_max_mana='" . $data['mod_max_mana'] . "', + mod_rate_food='" . $data['mod_rate_food'] . "', + mod_rate_wood='" . $data['mod_rate_wood'] . "', + mod_rate_stone='" . $data['mod_rate_stone'] . "', + mod_rate_iron='" . $data['mod_rate_iron'] . "', + mod_rate_mana='" . $data['mod_rate_mana'] . "', + mod_percent_food='" . $data['mod_percent_food'] . "', + mod_percent_wood='" . $data['mod_percent_wood'] . "', + mod_percent_stone='" . $data['mod_percent_stone'] . "', + mod_percent_iron='" . $data['mod_percent_iron'] . "', + mod_percent_mana='" . $data['mod_percent_mana'] . "', + description='" . $data['description'] . "' + WHERE id='" . $data['id'] . "'"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function get_assignment_admin($id) + { + $sql = "SELECT * FROM assignments WHERE id='$id'"; + + $q = $this->db->query($sql); + + return $q->row_array(); + } +} +//nowhitesp diff --git a/Mourne-CI/application/models/building_model.php b/Mourne-CI/application/models/building_model.php new file mode 100755 index 0000000..ff60f1a --- /dev/null +++ b/Mourne-CI/application/models/building_model.php @@ -0,0 +1,265 @@ +db->query($sql); + + if ($q->num_rows()) + return $q->row_array(); + + return FALSE; + } + + function set_build_in_progress($slotid, $villageid) + { + $sql = "INSERT INTO village_buildings + VALUES(default, '$villageid', '$slotid', '2')"; + $this->db->query($sql); + } + + function building_list($villageid) + { + $sql = "SELECT * FROM buildings + WHERE rank='1'"; + + $q = $this->db->query($sql); + $res = $q->result_array(); + + $sql = "SELECT * FROM village_buildings WHERE villageid='$villageid'"; + $q = $this->db->query($sql); + $vb = $q->result_array(); + + //checking requirements + foreach ($res as $row) + { + if ($this->can_build($villageid, $row, $vb, FALSE)) + { + $build[] = $row; + } + } + + //requirements are met + $tech = $this->get_village_technologies($villageid); + + foreach ($build as $row) + { + if ($row['req_tech']) + { + foreach ($tech as $trow) + { + if ($row['req_tech'] == $trow['technologyid']) + { + $data[] = $row; + break; + } + } + } + else + { + $data[] = $row; + } + } + + return $data; + } + + //returns 0 if upgrade in progress + //returns 1 if technology requirement not met + //returns 2 if not enough resources + //returns 3 if can be built + function can_be_upgraded($event, $res, $building, $villageid, $query = FALSE) + { + if ($query) + { + //this means we have to get building from the db, + //and $building is only the id + } + + //check if upgrade in progress + //we can just do this, since event is filtered to update events + if ($event) + { + return 0; + } + + if (!$this->has_req_tech($building['req_tech'], $villageid)) + return 1; + + if ($res['food'] < $building['cost_food'] || + $res['wood'] < $building['cost_wood'] || + $res['stone'] < $building['cost_stone'] || + $res['iron'] < $building['cost_iron'] || + $res['mana'] < $building['cost_mana']) + { + return 2; + } + + //can be built + return 3; + } + + function can_build($villageid, $buildingid, $data = 0, $is_buildingid = TRUE) + { + //STUB requirements aren't implemented + return TRUE; + } + + function is_valid_slot($slotid, $villageid) + { + if ($slotid > parent::TOTAL_BUILDINGS) + return FALSE; + + $sql = "SELECT id FROM village_buildings + WHERE villageid='$villageid' AND slotid='$slotid'"; + $q = $this->db->query($sql); + + if ($q->num_rows()) + return FALSE; + + return TRUE; + } + + function get_building_ranks_admin() + { + $sql = "SELECT * FROM buildings WHERE id > 2"; + $q = $this->db->query($sql); + + $res = $q->result_array(); + + $data[0] = 'Nothing'; + + foreach ($res as $row) + { + if (!$row['next_rank']) + { + $name = $row['name'] . ' R: ' . $row['rank']; + $data[$row['id']] = $name; + } + + } + + return $data; + } + + function list_buildings_admin() + { + $sql = "SELECT * FROM buildings"; + $q = $this->db->query($sql); + + return $q->result_array(); + } + + function get_building_admin($id) + { + $sql = "SELECT * FROM buildings WHERE id='$id'"; + $q = $this->db->query($sql); + + return $q->row_array(); + } + + function edit_building_admin($data) + { + + $sql = "UPDATE buildings + SET name='" . $data['name'] . "', + description='" . $data['description'] . "', + icon='" . $data['icon'] . "', + rank='" . $data['rank'] . "', + next_rank='" . $data['next_rank'] . "', + time_to_build='" . $data['time_to_build'] . "', + creates='" . $data['creates'] . "', + num_creates='" . $data['num_creates'] . "', + score='" . $data['score'] . "', + defense='" . $data['defense'] . "', + ability='" . $data['ability'] . "', + cost_food='" . $data['cost_food'] . "', + cost_wood='" . $data['cost_wood'] . "', + cost_stone='" . $data['cost_stone'] . "', + cost_iron='" . $data['cost_iron'] . "', + cost_mana='" . $data['cost_mana'] . "', + mod_max_food='" . $data['mod_max_food'] . "', + mod_max_wood='" . $data['mod_max_wood'] . "', + mod_max_stone='" . $data['mod_max_stone'] . "', + mod_max_iron='" . $data['mod_max_iron'] . "', + mod_max_mana='" . $data['mod_max_mana'] . "', + mod_rate_food='" . $data['mod_rate_food'] . "', + mod_rate_wood='" . $data['mod_rate_wood'] . "', + mod_rate_stone='" . $data['mod_rate_stone'] . "', + mod_rate_iron='" . $data['mod_rate_iron'] . "', + mod_rate_mana='" . $data['mod_rate_mana'] . "', + mod_percent_food='" . $data['mod_percent_food'] . "', + mod_percent_wood='" . $data['mod_percent_wood'] . "', + mod_percent_stone='" . $data['mod_percent_stone'] . "', + mod_percent_iron='" . $data['mod_percent_iron'] . "', + mod_percent_mana='" . $data['mod_percent_mana'] . "', + assignment1='" . $data['assignment1'] . "', + assignment2='" . $data['assignment2'] . "', + assignment3='" . $data['assignment3'] . "', + assignment4='" . $data['assignment4'] . "', + assignment5='" . $data['assignment5'] . "', + req_tech='" . $data['req_tech'] . "', + tech_group='" . $data['tech_group'] . "', + tech_secondary_group='" . $data['tech_secondary_group'] . "' + WHERE id='" . $data['id'] . "'"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function add_building_admin($data) + { + $sql = "INSERT INTO buildings VALUES(default, + '" . $data['name'] . "', + '" . $data['description'] . "', + '" . $data['icon'] . "', + '" . $data['rank'] . "', + '" . $data['next_rank'] . "', + '" . $data['time_to_build'] . "', + '" . $data['creates'] . "', + '" . $data['num_creates'] . "', + '" . $data['score'] . "', + '" . $data['defense'] . "', + '" . $data['ability'] . "', + '" . $data['cost_food'] . "', + '" . $data['cost_wood'] . "', + '" . $data['cost_stone'] . "', + '" . $data['cost_iron'] . "', + '" . $data['cost_mana'] . "', + '" . $data['mod_max_food'] . "', + '" . $data['mod_max_wood'] . "', + '" . $data['mod_max_stone'] . "', + '" . $data['mod_max_iron'] . "', + '" . $data['mod_max_mana'] . "', + '" . $data['mod_rate_food'] . "', + '" . $data['mod_rate_wood'] . "', + '" . $data['mod_rate_stone'] . "', + '" . $data['mod_rate_iron'] . "', + '" . $data['mod_rate_mana'] . "', + '" . $data['mod_percent_food'] . "', + '" . $data['mod_percent_wood'] . "', + '" . $data['mod_percent_stone'] . "', + '" . $data['mod_percent_iron'] . "', + '" . $data['mod_percent_mana'] . "', + '" . $data['assignment1'] . "', + '" . $data['assignment2'] . "', + '" . $data['assignment3'] . "', + '" . $data['assignment4'] . "', + '" . $data['assignment5'] . "', + '" . $data['req_tech'] . "', + '" . $data['tech_group'] . "', + '" . $data['tech_secondary_group'] . "')"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/models/changelog_model.php b/Mourne-CI/application/models/changelog_model.php new file mode 100755 index 0000000..7bb94ca --- /dev/null +++ b/Mourne-CI/application/models/changelog_model.php @@ -0,0 +1,55 @@ +db->query($sql); + $this->_create_sql($sql); + } + + function new_commit($text) + { + $time = time(); + + $sql = "SELECT id FROM changelog_versions ORDER BY id DESC LIMIT 1"; + $q = $this->db->query($sql); + $res = $q->row_array(); + $versionid = $res['id']; + + $sql = "INSERT INTO changelog_commits VALUES(default, '$versionid', '$text', '$time')"; + $this->db->query($sql); + $this->_create_sql($sql); + } + + function get_versions() + { + $sql = "SELECT * FROM changelog_versions ORDER BY timestamp DESC"; + $q = $this->db->query($sql); + + + return $q->result_array(); + } + + function get_commits() + { + $sql = "SELECT * FROM changelog_commits ORDER BY timestamp DESC"; + $q = $this->db->query($sql); + + + return $q->result_array(); + + } + +} + +//nowhitesp diff --git a/Mourne-CI/application/models/cron_model.php b/Mourne-CI/application/models/cron_model.php new file mode 100755 index 0000000..cdf0bcd --- /dev/null +++ b/Mourne-CI/application/models/cron_model.php @@ -0,0 +1,10 @@ +weather = FALSE; + $this->weathers = FALSE; + $this->weather_change = FALSE; + + $this->village_data = FALSE; + } + + function update($vdata, $d = FALSE) + { + //TODO make helpers for get_next_event and alike functions and remove this if + if ($d) + { + $villageid = $vdata['id']; + $this->village_data = $vdata; + } + else + { + $villageid = $vdata; + $sql = "SELECT * FROM villages WHERE id='$villageid'"; + $q = $this->db->query($sql); + $this->village_data = $q->row_array(); + } + + $this->get_resources($villageid); + + $this->get_weathers(); + + $sql = "SELECT * FROM events WHERE villageid='$villageid' ORDER BY end ASC"; + $q = $this->db->query($sql); + + if (!$q->num_rows()) + { + $this->update_resources(time()); + $this->update_weather(time()); + $this->write_weather(); + $this->write_resources(); + $data['resources'] = $this->resources; + $data['events'] = FALSE; + $data['weather'] = $this->weather; + return $data; + } + + $events = $q->result_array(); + + $time = time(); + $log = ""; + $i = 0; + foreach ($events as $row) + { + if ($row['end'] < $time) + { + switch ($row['type']) + { + case (parent::EVENT_BUILD): + $this->update_resources($row['end']); + $this->update_weather($row['end']); + $this->_build_finished($row); + $this->delete_event($row['id']); + unset($events[$i]); + break; + case (parent::EVENT_UPGRADE): + $this->update_resources($row['end']); + $this->update_weather($row['end']); + $this->_upgrade_finished($row); + $this->delete_event($row['id']); + unset($events[$i]); + break; + case (parent::EVENT_CREATE): + $this->update_resources($row['end']); + $this->update_weather($row['end']); + $this->_create_finished($row); + $this->delete_event($row['id']); + unset($events[$i]); + break; + case (parent::EVENT_SPELL_END): + $this->update_resources($row['end']); + $this->update_weather($row['end']); + $this->_spell_end($row); + $this->delete_event($row['id']); + unset($events[$i]); + break; + case (parent::EVENT_RESEARCH_END): + $this->update_resources($row['end']); + $this->update_weather($row['end']); + $this->_research_end($row); + $this->delete_event($row['id']); + unset($events[$i]); + break; + case (parent::EVENT_ATTACK): + $this->update_resources($row['end']); + $this->update_weather($row['end']); + $this->_attack($row); + $this->delete_event($row['id']); + unset($events[$i]); + break; + default: + $this->update_resources($row['end']); + $this->update_weather($row['end']); + $this->delete_event($row['id']); + unset($events[$i]); + break; + } + } + + $i++; + } + + $this->update_resources(time()); + $this->update_weather(time()); + + $this->unitq_write(); + $this->write_resources(); + $this->write_weather(); + + //TODO this can probably simplified, need some research if the array will be unsetted when all of its + //content is unsetted + if (isset($events)) + { + if ($events) + { + //this is to start at index 0 + foreach ($events as $row) + { + $fevents[] = $row; + } + + $data['events'] = $fevents; + } + else + { + $data['events'] = FALSE; + } + } + else + { + $data['events'] = FALSE; + } + + $data['resources'] = $this->resources; + $data['weather'] = $this->weather; + + return $data; + } + + function get_weathers() + { + $sql = "SELECT * FROM weathers ORDER BY id ASC"; + $q = $this->db->query($sql); + + $this->weathers = $q->result_array(); + + foreach ($this->weathers as $row) + { + if ($this->village_data['weather'] == $row['id']) + { + $this->weather = $row; + break; + } + } + } + + function update_weather($time = FALSE) + { + if (!$time) + $time = time(); + + //first time weather calculation + if (!$this->village_data['last_weather_change'] && !$this->village_data['weather']) + { + $r = rand(0, (sizeof($this->weathers) - 1)); + + $this->weather = $this->weathers[$r]; + + $this->add_modifiers($this->weather, $this->village_data['id'], 'weather', 1, TRUE); + + $this->village_data['last_weather_change'] = $time; + $this->village_data['weather'] = $this->weather['id']; + + $this->weather_change = TRUE; + } + + //if this happens its a spell, which means we have to only set this + if ($this->village_data['weather_change_to'] && ($time == time() || ($time + 1) == time() + || ($time + 2) == time())) + { + //just making sure 1-2 sec delay can happen + $w = $this->village_data['weather_change_to']; + + $this->substract_modifiers($this->weather, $this->village_data['id'], 'weather', 1, TRUE); + + foreach ($this->weathers as $row) + { + if ($row['id'] == $w) + { + $this->weather = $row; + break; + } + } + + $this->add_modifiers($this->weather, $this->village_data['id'], 'weather', 1, TRUE); + + $this->village_data['last_weather_change'] = $time; + $this->village_data['weather'] = $this->weather['id']; + $this->village_data['weather_change_to'] = 0; + + $this->weather_change = TRUE; + } + + //changing weather every hour + $nc = $this->village_data['last_weather_change'] + 3600; + + //if more than a hour + if ($nc < $time) + { + $r = rand(0, (sizeof($this->weathers) - 1)); + + $this->substract_modifiers($this->weather, $this->village_data['id'], 'weather', 1, TRUE); + + $this->weather = $this->weathers[$r]; + + $this->add_modifiers($this->weather, $this->village_data['id'], 'weather', 1, TRUE); + + $this->village_data['last_weather_change'] = $time; + $this->village_data['weather'] = $this->weather['id']; + + $this->weather_change = TRUE; + + if ($time == time() || ($time + 1) == time() || ($time + 2) == time()) + { + //process abilities here like fires + } + } + } + + function write_weather() + { + if (!$this->weather_change) + return; + + $sql = "UPDATE villages + SET weather='" . $this->weather['id'] . "', + last_weather_change='" . $this->village_data['last_weather_change'] . "', + weather_change_to='" . $this->village_data['weather_change_to'] . "' + WHERE id='" . $this->village_data['id'] . "'"; + + $this->db->query($sql); + } + + function delete_event($evid) + { + $sql = "DELETE FROM events WHERE id='$evid'"; + $this->db->query($sql); + } + + //gets events by slotid + function get_events($slotid, $villageid) + { + $this->update($villageid); + + $sql = "SELECT * FROM events WHERE villageid='$villageid' AND slotid='$slotid'"; + $q = $this->db->query($sql); + + if ($q->num_rows()) + return $q->result_array(); + + return FALSE; + } + + function has_event($slotid, $villageid) + { + $this->update($villageid); + + $sql = "SELECT id FROM events WHERE villageid='$villageid' AND slotid='$slotid'"; + $q = $this->db->query($sql); + + if ($q->num_rows()) + return TRUE; + + return FALSE; + } + + //gets the next event for display + function get_next_event($villageid) + { + $this->update($villageid); + + $sql = "SELECT * FROM events WHERE villageid='$villageid'"; + $q = $this->db->query($sql); + + if (!$q->num_rows()) + return FALSE; + + $res = $q->result_array(); + + $min = 0; + + foreach ($res as $row) + { + if (!$min) + $min = $row; + + if ($row['end'] < $min['end']) + $min = $row; + } + + return $min; + + } + + function check_event($event, $type) + { + if (!$event) + return FALSE; + + if ($type == 'build') + $type = parent::EVENT_BUILD; + elseif ($type == 'upgrade') + $type = parent::EVENT_UPGRADE; + elseif ($type == 'create') + $type = parent::EVENT_CREATE; + + foreach ($event as $row) + { + if ($row['type'] == $type) + return TRUE; + } + + return FALSE; + } + + function _build_finished($data) + { + //delete build_in progress tile + $sql = "DELETE FROM village_buildings + WHERE villageid='" . $data['villageid'] . "' + AND slotid='" . $data['slotid'] . "'"; + $this->db->query($sql); + + //data1 should contain the buildingid + $sql = "INSERT INTO village_buildings + VALUES(default, + '" . $data['villageid'] . "', + '" . $data['slotid'] . "', + '" . $data['data1'] . "')"; + + $this->db->query($sql); + + $this->add_modifiers($data['data1'], $data['villageid']); + } + + function _upgrade_finished($data) + { + //initialize unitq + $this->unitq_initialize($data['villageid']); + + //deassign everything + $this->_deassign_all($data); + + //remove prev rank's modifier + $this->substract_modifiers($data['data2'], $data['villageid']); + + //update entry + $sql = "UPDATE village_buildings + SET buildingid='" . $data['data1'] . "' + WHERE villageid='" . $data['villageid'] . "' + AND slotid='" . $data['slotid'] . "'"; + + $this->db->query($sql); + + //add new modifiers + $this->add_modifiers($data['data1'], $data['villageid']); + } + + function _create_finished($data) + { + $this->unitq_initialize($data['villageid']); + + $this->unitq_change('+', $data['data1'], $data['data2']); + } + + function _deassign_all($data) + { + $sql = "SELECT * FROM building_assignments + LEFT JOIN assignments ON building_assignments.assignmentid=assignments.id + WHERE slotid='" . $data['slotid'] . "' + AND villageid='" . $data['villageid'] . "'"; + + $q = $this->db->query($sql); + + if (!$q->num_rows()) + return; + + $ass = $q->result_array(); + + //deleting assignments + $sql = "DELETE FROM building_assignments + WHERE slotid='" . $data['slotid'] . "' + AND villageid='" . $data['villageid'] . "'"; + + $this->db->query($sql); + + foreach ($ass as $row) + { + $this->substract_modifiers($row, $data['villageid'], 'assignment', $row['num_bonus'], TRUE); + + //giving units back + $this->unitq_change('+', $row['unitid'], $row['num_unit'], TRUE); + } + + //take away spells + $sql = "DELETE FROM building_spells + WHERE villageid='" . $data['villageid'] . "' + AND slotid='" . $data['slotid'] . "'"; + + + $this->db->query($sql); + } + + function _spell_end($data) + { + $this->substract_modifiers($data['data1'], $data['villageid'], 'spell'); + } + + function _research_end($data) + { + $sql = "SELECT * FROM technologies WHERE id='" . $data['data1'] . "'"; + + $q = $this->db->query($sql); + + if (!$q->num_rows()) + return; + + $tech = $q->row_array(); + + $this->add_modifiers($tech, $data['villageid'], 'technology', 1, TRUE); + + $this->add_technology($data['data1'], $data['data2'], $tech, + $data['slotid'], $data['villageid']); + } + + function _attack($data) + { + $this->unitq_initialize($data['villageid']); + + //get village units who can defend + $defenders = $this->_get_defenders(); + $userid = $this->userid; + + $attackers = $this->_get_attackers($data['data1'], $data['villageid']); + $village = $this->_get_village($data['villageid']); + + $log = $this->_combat($defenders, $attackers, $village, $data['data2'], + $data['villageid'], $userid); + + $this->add_combat_log($log, $data['villageid']); + + //delete attack from the db + $sql = "DELETE FROM attacks + WHERE villageid='" . $data['villageid'] . "' + AND attackid='" .$data['data1'] . "'"; + + $this->db->query($sql); + + } + + function _get_defenders() + { + $units = $this->unitq_get_units(); + $vu = $this->unitq_get_village_units(); + + if (!$vu) + return FALSE; + + for ($i = 0; $i < sizeof($vu); $i++) + { + foreach ($units as $u) + { + if ($vu[$i]['unitid'] == $u['id']) + { + $d[$i] = $u; + $d[$i]['unitcount'] = $vu[$i]['unitcount']; + } + } + } + + if (!isset($d)) + return FALSE; + + foreach ($d as $row) + { + if ($row['can_defend']) + $data[] = $row; + } + + if (isset($data)) + return $data; + else + return FALSE; + } + + function _get_attackers($atkid, $villageid) + { + $sql = "SELECT attacks.ai_unitcount AS unitcount,ai_units.* + FROM attacks + LEFT JOIN ai_units ON attacks.ai_unitid=ai_units.id + WHERE villageid='$villageid' AND attackid='$atkid'"; + + $q = $this->db->query($sql); + + return $q->result_array(); + } + + function _get_village($villageid) + { + $sql = "SELECT buildings.*,village_buildings.slotid + FROM village_buildings + LEFT JOIN buildings on village_buildings.buildingid=buildings.id + WHERE villageid='$villageid'"; + + $q = $this->db->query($sql); + + $res = $q->result_array(); + + $i = 1; + for ($y = 1; $y <= parent::BUILDING_ROW; $y++) + { + for ($x = 1; $x <= parent::BUILDING_CULOMN; $x++) + { + $found = FALSE; + + foreach ($res as $row) + { + if ($row['slotid'] == $i) + { + $found = TRUE; + $data[$x][$y] = $row; + } + } + + if (!$found) + $data[$x][$y] = FALSE; + + $i++; + } + } + + return $data; + } + + function _combat($defenders, $attackers, $village, $dir, $villageid, $userid) + { + $this->load->helper('date'); + $datestring = "%Y.%m.%d - %H:%i:%s"; + + $log = "Attack (" . mdate($datestring, time()) . "):

"; + + $log .= $this->_def_atk_list($defenders, $attackers); + + //combat with defenders + if ($defenders) + { + //save some sizeof() calls + $def_size = sizeof($defenders) - 1; + $atk_size = sizeof($attackers) - 1; + + //using the smaller + if ($def_size < $atk_size) + { + $iter = $defenders; + $iter_t = 'def'; + } + else + { + $iter = $attackers; + $iter_t = 'atk'; + } + + //generating who fight with who + for ($i = 0; $i < sizeof($iter); $i++) + { + $found = FALSE; + + while(!$found) + { + if ($iter_t == 'def') + $r = rand(0, $atk_size); + else + $r = rand(0, $def_size); + + if (!isset($d[$r])) + { + if ($iter_t == 'def') + { + $turn_a = $attackers[$r]['turn']; + $turn_p = $defenders[$i]['turn']; + } + else + { + $turn_a = $attackers[$i]['turn']; + $turn_p = $defenders[$r]['turn']; + } + + if ($turn_a > $turn_p) + $turn = 'pl'; + elseif ($turn_p > $turn_a) + $turn = 'ai'; + else + $turn = 'sa'; + + if ($iter_t == 'def') + { + $unit_a = $attackers[$r]; + $unit_p = $defenders[$i]; + } + else + { + $unit_a = $attackers[$i]; + $unit_p = $defenders[$r]; + } + + $hit = $this->_hit($unit_a, $unit_p, $turn); + + $log .= $hit['log']; + $log .= "
"; + + //write back hit + if ($iter_t == 'def') + { + $attackers[$r]['unitcount'] -= $hit['ai']; + $defend = $defenders[$i]; + } + else + { + $attackers[$i]['unitcount'] -= $hit['ai']; + $defend = $defenders[$r]; + } + + $d[$r] = TRUE; + $found = TRUE; + } + } + } + } + else + { + $log .= "You doesn\'t have any defenders, attackers attack your village.
"; + } + + //there is no unsetting in the above part, so this will always be true + //leftover atackers go for the village + //if ($attackers) + //{ + //ability 1 means they can't stole + //} + + $buildings = FALSE; + + //create an array with these, containing the first building in every row or culomn + //it has to be foreachable + if ($dir == parent::ATTACK_UP) + { + for ($x = 1; $x <= parent::BUILDING_CULOMN; $x++) + { + $found = FALSE; + + for ($y = 1; $y <= parent::BUILDING_ROW; $y++) + { + $building = $village[$x][$y]; + + if ($building) + { + $buildings[] = $building; + $found = TRUE; + break; + } + } + + if (!$found) + $buildings[] = FALSE; + } + } + elseif ($dir == parent::ATTACK_LEFT) + { + for ($y = 1; $y <= parent::BUILDING_ROW; $y++) + { + $found = FALSE; + + for ($x = 1; $x <= parent::BUILDING_ROW; $x++) + { + $building = $village[$x][$y]; + + if ($building) + { + $buildings[] = $building; + $found = TRUE; + break; + } + } + + if (!$found) + $buildings[] = FALSE; + } + } + elseif ($dir == parent::ATTACK_RIGHT) + { + for ($y = 1; $y <= parent::BUILDING_ROW; $y++) + { + $found = FALSE; + + for ($x = parent::BUILDING_ROW; $x >= 1; $x--) + { + $building = $village[$x][$y]; + + if ($building) + { + $buildings[] = $building; + $found = TRUE; + break; + } + } + + if (!$found) + $buildings[] = FALSE; + } + } + elseif ($dir == parent::ATTACK_DOWN) + { + for ($x = 1; $x <= parent::BUILDING_CULOMN; $x++) + { + $found = FALSE; + + for ($y = parent::BUILDING_ROW; $y >= 1; $y--) + { + $building = $village[$x][$y]; + + if ($building) + { + $buildings[] = $building; + $found = TRUE; + break; + } + } + + if (!$found) + $buildings[] = FALSE; + } + } + + //calc the enemy's remainder power, and how much they can steal + //they should steal that much if they hit something without ability 1 + $remainder['pow'] = 0; + $remainder['steal'] = 0; + foreach ($attackers as $row) + { + $remainder['pow'] += ($row['unitcount'] * $row['attack']); + $remainder['steal'] += ($row['unitcount'] * $row['can_carry']); + } + + if ($remainder['pow'] || $remainder['steal']) + { + $log .= "The remainder of attackers attack your village from "; + + if ($dir == parent::ATTACK_UP) + $log .= "up"; + elseif ($dir == parent::ATTACK_LEFT) + $log .= "left"; + elseif ($dir == parent::ATTACK_RIGHT) + $log .= "right"; + elseif ($dir == parent::ATTACK_DOWN) + $log .= "down"; + + $log .= ".

"; + + //hit buildings + $log .= $this->_hit_building($buildings, $remainder, $villageid); + + } + + //ballists should attack here once + $ballist = FALSE; + foreach ($attackers as $row) + { + if ($row['ability'] == 1) + $ballist = $row; + } + + if ($ballist) + { + if ($ballist['unitcount']) + { + $r_x = rand(1, parent::BUILDING_CULOMN); + $r_y = rand(1, parent::BUILDING_ROW); + + $rem['pow'] = $ballist['unitcount'] * $ballist['attack']; + $rem['steal'] = 0; + + //$log .= "
"; + + $log .= $this->_hit_building_ability($village[$r_x][$r_y], $rem, $villageid); + } + } + + //return log for writing + return $log; + } + + function _hit($ai, $pl, $turn) + { + if ($turn == 'ai') + { + $first = $ai; + $second = $pl; + } + elseif ($turn == 'pl') + { + $first = $pl; + $second = $ai; + } + else + { + $first = $ai; + $second = $pl; + } + + if ($turn == 'ai') + { + $log = $first['name'] . "s (" . $first['unitcount'] . ")"; + $log .= " ambushes your " . $second['name'] . "s"; + $log .= " (" . $second['unitcount'] . "):
"; + } + elseif ($turn == 'pl') + { + $log = "Your " . $first['name'] . "s (" . $first['unitcount'] . ")"; + $log .= " ambushes " . $second['name'] . "s"; + $log .= " (" . $second['unitcount'] . "):
"; + } + else + { + $log = "Your " . $pl['name'] . "s (" . $pl['unitcount'] . ")"; + $log .= " attacks " . $ai['name'] . "s"; + $log .= " (" . $ai['unitcount'] . ")
"; + } + + //calc stuff + + $first_atk = $first['attack'] * $first['unitcount']; + + if ($first['strong_against'] == $second['id']) + $first_atk *= 1.2; + + if ($first['weak_against'] == $second['id']) + $first_atk *= 0.8; + + //critical 5% + if (rand(0, 100) > 95) + { + $first_atk *= 1.5; + $first_crit = TRUE; + } + else + $first_crit = FALSE; + + //abilities here too? + + //calc how much dies + $second_d = floor($first_atk / $second['defense']); + + if ($second_d > $second['unitcount']) + $second_d = $second['unitcount']; + + //if ambush + if ($turn == 'ai' || $turn == 'pl') + { + $second['unitcount'] -= $second_d; + } + + $second_atk = $second['attack'] * $second['unitcount']; + + if ($second['strong_against'] == $first['id']) + $second_atk *= 1.2; + + if ($second['weak_against'] == $first['id']) + $second_atk *= 0.8; + + //critical 5% + if (rand(0, 100) > 95) + { + $second_atk *= 1.5; + $second_crit = TRUE; + } + else + $second_crit = FALSE; + + + //some abilities can be processed here + + + //calc how much dies + $first_d = floor($second_atk / $first['defense']); + + if ($first_d > $first['unitcount']) + $first_d = $first['unitcount']; + + //sa == same + if ($turn == 'sa') + { + //in this case $first = $ai, $second = pl, but the order doesn't matters + //players first + $log .= "Your " . $second['name'] . "s hits for " . $second_atk; + + if ($second_crit) + $log .= " (critical)"; + + $log .= ", " . $first_d . " enemy dies.
"; + + //now ai + $log .= "Enemy " . $first['name'] . "s hits for " . $first_atk; + if ($first_crit) + $log .= " (critical)"; + + $log .= ", " . $second_d . " of your units dies.
"; + } + else + { + if ($turn == 'pl') + { + $log .= "Your " . $first['name'] . "s hits for " . $first_atk; + + if ($first_crit) + $log .= " (critical)"; + + $log .= ", " . $second_d . " enemy dies.
"; + + $log .= "Enemy " . $second['name'] . "s hits for " . $second_atk; + if ($second_crit) + $log .= " (critical)"; + + $log .= ", " . $first_d . " of your units dies.
"; + } + else + { + $log .= "Enemy's " . $first['name'] . "s hits for " . $first_atk; + if ($first_crit) + $log .= " (critical)"; + + $log .= ", " . $second_d . " of your units dies.
"; + + $log .= "Your " . $second['name'] . "s hits for " . $second_atk; + + if ($second_crit) + $log .= " (critical)"; + + $log .= ", " . $first_d . " of your units dies.
"; + } + } + + if ($turn == 'ai') + { + $ai_d = $first_d; + $pl_d = $second_d; + $uid = $second['id']; + } + elseif ($turn == 'pl') + { + $pl_d = $first_d; + $ai_d = $second_d; + $uid = $first['id']; + } + else + { + $ai_d = $first_d; + $pl_d = $second_d; + $uid = $second['id']; + } + + $data['ai'] = $ai_d; + $data['pl'] = $pl_d; + $data['log'] = $log; + + //unitq is inialized already + $this->unitq_change('-', $uid, $pl_d); + + return $data; + } + + function _hit_building($buildings, $remainder, $villageid) + { + $log = ""; + + for ($i = 0; $i < 3; $i++) + { + $r = rand(0, (sizeof($buildings) -1)); + + $b = $buildings[$r]; + + if ($b) + { + $log .= "The enemy attacked your " . $b['name']; + $log .= "(Slot " . $b['slotid'] . ")
"; + + if ($b['defense'] > $remainder['pow']) + { + $log .= "They downgraded it.
"; + + //downgrade + $buildings[$r] = $this->_downgrade($b, $villageid); + } + else + { + $log .= "They didn\'t do sufficient damage.
"; + } + + //steal if not ability 1 and steal is greated than 0 + if ($b['ability'] != 1 && $remainder['steal']) + { + $s = ($remainder['steal'] / 5); + + $res['cost_food'] = $s; + $res['cost_wood'] = $s; + $res['cost_stone'] = $s; + $res['cost_iron'] = $s; + $res['cost_mana'] = $s; + + $this->substract_resources($res, $villageid); + + $log .= "They stole " . $s . " from all of your resources.
"; + } + else + { + $log .= "The enemy wasn\'t able to steal from your resources.
"; + } + } + else + { + if ($remainder['steal']) + { + $s = ($remainder['steal'] / 5); + + $res['cost_food'] = $s; + $res['cost_wood'] = $s; + $res['cost_stone'] = $s; + $res['cost_iron'] = $s; + $res['cost_mana'] = $s; + + $this->substract_resources($res, $villageid); + + $log .= "The enemy found an opening in your village\'s defenses,
"; + $log .= "you lost " . $s . " from all resources!
"; + } + else + { + $log .= "The enemy found an opening in your village\'s defenses,
"; + $log .= "but wasn\t able to steal resources.
"; + } + } + $log .= "
"; + } + + return $log; + } + + function _hit_building_ability($building, $remainder, $villageid) + { + $log = ""; + + $b = $building; + + if ($b) + { + $log .= "Ballists attacked your " . $b['name']; + $log .= "(Slot " . $b['slotid'] . ")
"; + + if ($b['defense'] > $remainder['pow']) + { + $log .= "They downgraded it.
"; + + //downgrade + //we don't need the return here, since this is the last function call in the event. + $this->_downgrade($b, $villageid); + } + else + { + $log .= "They didn\'t do sufficient damage.
"; + } + } + else + { + $log .= "Ballists attacked your village, but they missed every building."; + } + + return $log; + } + + function _downgrade($building, $villageid) + { + $slotid = $building['slotid']; + + $sql = "SELECT * FROM buildings WHERE next_rank='" . $building['id'] . "'"; + + $q = $this->db->query($sql); + + if (!$q->num_rows()) + { + //means its rank1 + $this->substract_modifiers($building['id'], $villageid, 'building'); + //$this->delete_building($slotid, $villageid); + + //deassign all + $d['villageid'] = $villageid; + $d['slotid'] = $slotid; + $this->_deassign_all($d); + + $sql = "DELETE FROM village_buildings + WHERE villageid='$villageid' + AND slotid='$slotid'"; + + $this->db->query($sql); + + return; + } + + $prev_r = $q->row_array(); + + $this->substract_modifiers($building['id'], $villageid, 'building'); + + //deassign all + $d['villageid'] = $villageid; + $d['slotid'] = $slotid; + $this->_deassign_all($d); + + //change building + $sql = "UPDATE village_buildings + SET buildingid='" . $prev_r['id'] . "' + WHERE villageid='$villageid' + AND slotid='$slotid'"; + + $this->db->query($sql); + + $this->add_modifiers($prev_r['id'], $villageid, 'building'); + + $prev_r['slotid'] = $slotid; + + return $prev_r; + } + + function _def_atk_list($defenders, $attackers) + { + $log = ""; + + if ($defenders) + { + $log .= "Your defenders:
"; + + foreach ($defenders as $row) + { + $log .= $row['name'] . " x " . $row['unitcount'] . "
"; + } + } + else + { + $log .= "You don\'t have any defenders.
"; + } + + $log .= "
"; + $log .= "Attackers:
"; + + foreach ($attackers as $row) + { + $log .= $row['name'] . " x " . $row['unitcount'] . "
"; + } + + $log .= "
"; + + return $log; + } +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/models/hero_model.php b/Mourne-CI/application/models/hero_model.php new file mode 100644 index 0000000..b5b8356 --- /dev/null +++ b/Mourne-CI/application/models/hero_model.php @@ -0,0 +1,331 @@ +db->query($sql, array($userid)); + + if ($q->num_rows()) + return $q->result_array(); + + return FALSE; + } + + function select_hero($id, $userid) + { + $sql = "SELECT userid,deleted FROM heroes WHERE id = ?"; + + $q = $this->db->query($sql, array($id)); + + if (!$q->num_rows()) + return FALSE; + + $res = $q->row_array(); + + if ($res['userid'] != $userid || $res['deleted']) + return FALSE; + + $sql = "UPDATE heroes SET selected = 0 WHERE userid = ?"; + + $this->db->query($sql, array($userid)); + + $sql = "UPDATE heroes SET selected = 1 WHERE id = ?"; + + $this->db->query($sql, array($id)); + + return TRUE; + } + + function get_hero($id, $userid) + { + $sql = "SELECT * FROM heroes WHERE id = ? AND userid = ?"; + + $q = $this->db->query($sql, array($id, $userid)); + + if ($q->num_rows()) + return $q->row_array(); + + return FALSE; + } + + function delete_hero($id, $userid) + { + $sql = "SELECT * FROM heroes WHERE id = ?"; + + $q = $this->db->query($sql, array($id)); + + if (!$q->num_rows()) + return FALSE; + + $res = $q->row_array(); + + if ($res['deleted']) + return FALSE; + + if ($userid != $res['userid']) + return FALSE; + + if ($res['selected']) + { + $sql = "SELECT * FROM heroes WHERE userid = ? AND deleted = '0'"; + + $q = $this->db->query($sql, array($userid)); + + if (!$q->num_rows()) + return TRUE; + + $data = $q->result_array(); + + foreach ($data as $row) + { + if ($row['id'] != $id) + { + $sql = "UPDATE heroes SET selected = '1' WHERE id = ?"; + $this->db->query($sql, array($row['id'])); + + break; + } + } + } + + $sql = "UPDATE heroes SET deleted='1', delete_name = '" . $res['name'] . "', name='' + WHERE id = ?"; + + $this->db->query($sql, array($id)); + + return TRUE; + } + +// function get_hero_admin($id)? or gm? + + function create($data, $userid) + { + $name = ucfirst(mb_strtolower($data['name'], 'UTF-8')); + + if ($gender == 1) + { + $av = 'characters/base/male.png'; + $avt = 'characters/base/male_thumb.png'; + } + else + { + $av = 'characters/base/female.png'; + $avt = 'characters/base/female_thumb.png'; + } + + $sql = "UPDATE heroes SET selected='0' WHERE userid = ?"; + + $this->db->query($sql, array($userid)); + + $sql = "SELECT * FROM hero_templates WHERE id = ?"; + + $q = $this->db->query($sql, array($data['class'])); + + if (!$q->num_rows()) + return FALSE; + + $cd = $q->row_array(); + + //getting inventory template, and applying the stats + + + + + $sql = "INSERT INTO heroes + VALUES(default, '$userid', ?, default, default, + ?, default, '" . $cd['max_health'] . "', '" . $cd['max_mana'] . "', '" . $cd['max_health'] . "', + '" . $cd['max_mana'] . "', default, default, '" . $cd['nomod_max_health'] . "', + '". $cd['nomod_max_mana'] . "', + default, '" . $cd['agility'] . "', '" . $cd['strength'] . "', '" . $cd['stamina'] . "', + '" . $cd['intellect'] . "', + '" . $cd['spirit'] . "', default, default, default, default, + default, '" . $cd['agility'] . "', '" . $cd['strength'] . "', '" . $cd['stamina'] . "', + '" . $cd['intellect'] . "', + '" . $cd['spirit'] . "', default, default, default, default, + default, '" . $cd['attackpower'] . "', default, '" . $cd['nomod_attackpower'] . "', + '" . $cd['armor'] . "', + default, '" . $cd['armor'] . "', '" . $cd['dodge'] . "', '" . $cd['nomod_dodge'] . "', + '" . $cd['parry'] . "', + '" . $cd['nomod_parry'] . "', '" . $cd['hit'] . "', + '" . $cd['crit'] . "', '" . $cd['nomod_crit'] . "', '" . $cd['damage_min'] . "', + '" . $cd['damage_max'] . "', default, default, '" . $cd['nomod_damage_min'] . "', + '" . $cd['nomod_damage_max'] . "', + '" . $cd['ranged_damage_min'] . "', '" . $cd['ranged_damage_max'] . "', default, default, + '" . $cd['nomod_ranged_damage_min'] . "', + '" . $cd['nomod_ranged_damage_max'] . "', '" . $cd['heal_min'] . "', + '" . $cd['heal_max'] . "', default, default, + '" . $cd['nomod_heal_min'] . "', '" . $cd['nomod_heal_max'] . "', default, default, ?, + default, ?, ?, default, '')"; + + $this->db->query($sql, array($name, $data['class'], $data['gender'], $av, $avt)); + + //add invertory here + + //add starter spells + + //make actionbar entry + } + + function hero_name_is_unique($name) + { + $name = ucfirst(mb_strtolower($name, 'UTF-8')); + + $sql = "SELECT * FROM heroes WHERE name = ? LIMIT 0, 1"; + + $q = $this->db->query($sql, array($name)); + + if ($q->num_rows()) + return FALSE; + else + return TRUE; + } + + function all_hero_templates_admin() + { + $sql = "SELECT * FROM hero_templates"; + + $q = $this->db->query($sql); + + if ($q->num_rows()) + return $q->result_array(); + else + return FALSE; + } + + function get_template_admin($id) + { + $sql = "SELECT * FROM hero_templates WHERE id = '$id'"; + + $q = $this->db->query($sql); + + if ($q->num_rows()) + return $q->row_array(); + else + return FALSE; + } + + function edit_template_admin($d) + { + $c = $this->template_calc_stats($d, 'edit'); + + $sql = "UPDATE hero_templates + SET classname = '" . $d['classname'] . "', + nomod_max_health = '" . $d['nomod_max_health'] . "', + nomod_max_mana = '" . $d['nomod_max_mana'] . "', + max_health = '" . $c['max_health'] . "', + max_mana = '" . $c['max_mana'] . "', + agility = '" . $d['agility'] . "', + strength = '" . $d['strength'] . "', + stamina = '" . $d['stamina'] . "', + intellect = '" . $d['intellect'] . "', + spirit = '" . $d['spirit'] . "', + nomod_attackpower = '" . $d['nomod_attackpower'] . "', + attackpower = '" . $c['attackpower'] . "', + armor = '" . $c['armor']. "', + dodge = '" . $c['dodge'] . "', + nomod_dodge = '" . $d['nomod_dodge'] . "', + parry = '" . $c['parry'] . "', + nomod_parry = '" . $d['nomod_parry'] . "', + hit = '" . $d['hit'] . "', + crit = '" . $c['crit'] . "', + nomod_crit = '" . $d['nomod_crit'] . "', + nomod_damage_min = '" . $c['nomod_damage_min'] . "', + nomod_damage_max = '" . $c['nomod_damage_max'] . "', + damage_min = '" . $c['damage_min'] . "', + damage_max = '" . $c['damage_max'] . "', + ranged_damage_min = '" . $c['ranged_damage_min'] . "', + ranged_damage_max = '" . $c['ranged_damage_max'] . "', + nomod_ranged_damage_min = '" . $c['nomod_ranged_damage_min'] . "', + nomod_ranged_damage_max = '" . $c['nomod_ranged_damage_max'] . "', + nomod_heal_min = '" . $c['nomod_heal_min'] . "', + nomod_heal_max = '" . $c['nomod_heal_max'] . "', + heal_min = '" . $c['heal_min'] . "', + heal_max = '" . $c['heal_max'] . "' + WHERE id = '" . $d['id'] . "'"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function add_template_admin($d) + { + //0 armor is being added, because when adding a new class, eqipments shouldn't exists in db + + //think about this! + //maybe this is uniform in template and normal mode! or can be made uniform + $c = $this->template_calc_stats($d, 'add'); + + + $sql = "INSERT INTO hero_templates + VALUES(default, '" . $d['classname'] . "', '" . $d['nomod_max_health'] . "', + '" . $d['nomod_max_mana'] . "', '" . $c['max_health'] . "', + '" . $c['max_mana'] . "', '" . $d['agility'] . "', '" . $d['strength'] . "', + '" . $d['stamina'] . "', '" . $d['intellect'] . "', + '" . $d['nomod_attackpower'] . "', '" . $c['attackpower'] . "', + '" . $d['spirit'] . "', '0', '" . $c['dodge'] . "', + '" . $d['nomod_dodge'] . "', '" . $c['parry'] . "', '" . $d['nomod_parry'] . "', + '" . $d['hit'] . "', '" . $c['crit'] . "', + '" . $d['nomod_crit'] . "', '" . $d['nomod_damage_min'] . "', '" . $d['nomod_damage_max'] . "', + '" . $c['damage_min'] . "', '" . $c['damage_max'] . "', + '" . $c['ranged_damage_min'] . "', '" . $c['ranged_damage_max'] . "', + '" . $d['nomod_ranged_damage_min'] . "', '" . $d['nomod_ranged_damage_max'] . "', + '" . $d['nomod_heal_min'] . "', + '" . $d['nomod_heal_max'] . "', '" . $c['heal_min'] . "', '" . $c['heal_max'] . "')"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + //this is for templates (calculating all stats) + //type can be add and edit -> edit does thing like armor calc, and damage + function template_calc_stats($d, $type) + { + $class = $d['classname']; + + $c['max_health'] = $this->hero_stat($class, 'max_health', $d); + $c['max_mana'] = $this->hero_stat($class, 'max_mana', $d); + + $c['attackpower'] = $this->hero_stat($class, 'attackpower', $d); + + $c['crit'] = $this->hero_stat($class, 'crit', $d); + $c['parry'] = $this->hero_stat($class, 'parry', $d); + $c['dodge'] = $this->hero_stat($class, 'dodge', $d); + + $c['damage_min'] = $this->hero_stat($class, 'damage_min', $d); + $c['damage_max'] = $this->hero_stat($class, 'damage_max', $d); + + $c['ranged_damage_min'] = $this->hero_stat($class, 'ranged_damage_min', $d); + $c['ranged_damage_max'] = $this->hero_stat($class, 'ranged_damage_max', $d); + + $c['heal_min'] = $this->hero_stat($class, 'heal_min', $d); + $c['heal_max'] = $this->hero_stat($class, 'heal_max', $d); + + if ($type == 'edit') + { + //STUB + //armor, damage, heal from items + $c['armor'] = 0; + $c['nomod_damage_min'] = $d['nomod_damage_min']; + $c['nomod_damage_max'] = $d['nomod_damage_max']; + + $c['nomod_ranged_damage_min'] = $d['nomod_ranged_damage_min']; + $c['nomod_ranged_damage_max'] = $d['nomod_ranged_damage_max']; + + $c['nomod_heal_min'] = $d['nomod_heal_min']; + $c['nomod_heal_max'] = $d['nomod_heal_max']; + } + + return $c; + } +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/models/image_model.php b/Mourne-CI/application/models/image_model.php new file mode 100755 index 0000000..eb0defa --- /dev/null +++ b/Mourne-CI/application/models/image_model.php @@ -0,0 +1,298 @@ +load->library('image_lib'); + + if ($data['apply_all']) + $this->prepare_dir('menu', $data['file'], $data['menu_group']); + else + $this->prepare_dir('menu', $data['file'], FALSE, $data['wm_text']); + + + if (!$data['apply_all']) + { + $data['source_image'] = $path . $data['wm_text'] . '.png'; + + $this->image_lib->initialize($data); + + $this->image_lib->watermark(); + + return; + } + + //apply all is set + $menu_list = $this->get_menu_list($data['menu_group']); + $menu_file_list = $this->get_menu_file_list($data['menu_group']); + + for ($i = 0; $i < sizeof($menu_list); $i++) + { + $data['source_image'] = $path . $menu_file_list[$i] . '.png'; + $data['wm_text'] = $menu_list[$i]; + + $this->image_lib->initialize($data); + $this->image_lib->watermark(); + $this->image_lib->clear(); + } + } + + function prepare_dir($for, $sourcefile, $group = 1, $filename = FALSE) + { + $path = './img/generated/'; + $source = './img/imggen/' . $sourcefile; + + $this->load->helper('file'); + + delete_files($path, FALSE); + + if ($for == 'menu') + { + $img = read_file($source); + + if (!$filename) + { + $menu_list = $this->get_menu_file_list($group); + + foreach ($menu_list as $row) + { + $file = $path . $row . '.png'; + + write_file($file, $img); + } + } + else + { + $file = $path . $filename . '.png'; + + write_file($file, $img); + } + + } + + } + + function get_menu_list($group = 1) + { + if ($group == 1) + { + //select village vill be omitted since it will need a different style button with a ˇ + $data[] = 'News'; + $data[] = 'Village'; + $data[] = 'Select Village'; + $data[] = 'Forum'; + $data[] = 'Changelog'; + $data[] = 'Settings'; + $data[] = 'Logout'; + $data[] = 'Forum Mod Panel'; + $data[] = 'GM Panel'; + $data[] = 'Admin Panel'; + } + + if ($group == 2) + { + $data[] = 'Stats'; + } + + return $data; + } + + function get_menu_file_list($group = 1) + { + if ($group == 1) + { + //select village vill be omitted since it will need a different style button with a ˇ + $data[] = 'news'; + $data[] = 'village'; + $data[] = 'select_village'; + $data[] = 'forum'; + $data[] = 'changelog'; + $data[] = 'settings'; + $data[] = 'logout'; + $data[] = 'forum_mod_panel'; + $data[] = 'gm_panel'; + $data[] = 'admin_panel'; + } + + if ($group == 2) + { + $data[] = 'stats'; + } + + return $data; + } + + function get_menu_group_list_drop() + { + $data = array( + '1' => 'main', + '2' => 'alt1'); + + return $data; + } + + function apply_slot_images($data) + { + $path = './img/generated/'; + + $this->load->library('image_lib'); + + $this->prepare_dir('menu', $data['file'], FALSE, 'gen'); + + $data['source_image'] = $path . 'gen.png'; + + $this->image_lib->initialize($data); + $this->image_lib->watermark(); + $this->image_lib->clear(); + + $data['wm_type'] = 'text'; + $data['wm_text'] = $data['rank_text']; + $data['wm_font_size'] = $data['rank_font_size']; + $data['wm_vrt_alignment'] = $data['rank_v_align']; + $data['wm_hor_alignment'] = $data['rank_h_align']; + $data['wm_hor_offset'] = $data['rank_h_offset']; + $data['wm_vrt_offset'] = $data['rank_v_offset']; + $data['padding'] = $data['rank_padding']; + + $this->image_lib->initialize($data); + $this->image_lib->watermark(); + + } + + function get_file_list_drop() + { + $this->load->helper('directory'); + + $dir = directory_map('./img/imggen/', 1); + + foreach ($dir as $row) + { + $a = explode('.', $row); + if (isset($a[1])) + if ($a[1] == 'png' || $a[1] == 'PNG') + $data[$row] = $row; + } + + return $data; + } + + function get_font_list_drop() + { + $this->load->helper('directory'); + + $dir = directory_map('./system/fonts', 1); + + foreach ($dir as $row) + { + $a = explode('.', $row); + + if ($a[1] == 'ttf' || $a['1'] == 'TTF') + { + $data[$row] = $row; + } + } + + return $data; + } + + function get_v_align_drop() + { + $data = array( + 'top' => 'top', + 'middle' => 'middle', + 'bottom' => 'bottom'); + + return $data; + } + + function get_h_align_drop() + { + $data = array( + 'left' => 'left', + 'center' => 'center', + 'right' => 'right'); + + return $data; + } + + function get_overlay_list_drop() + { + $this->load->helper('directory'); + + $dir = directory_map('./img/imggen/overlay/', 1); + + foreach ($dir as $row) + { + $data[$row] = $row; + } + + return $data; + } + + function save_menu_data($data) + { + $a = 'type : ' . $data['wm_type'] . "\n"; + $a .= 'quality: ' . $data['quality'] . "\n"; + $a .= 'file: ' . $data['file'] . "\n"; + $a .= 'padding: ' . $data['padding'] . "\n"; + $a .= 'vert alignment: ' . $data['wm_vrt_alignment'] . "\n"; + $a .= 'hor alignment: ' . $data['wm_hor_alignment'] . "\n"; + $a .= 'hor offset: ' . $data['wm_hor_offset'] . "\n"; + $a .= 'vert offset: ' . $data['wm_vrt_offset'] . "\n"; + $a .= 'text: ' . $data['wm_text'] . "\n"; + $a .= 'font path: ' . $data['wm_font_path'] . "\n"; + $a .= 'font size: ' . $data['wm_font_size'] . "\n"; + $a .= 'font color: ' . $data['wm_font_color'] . "\n"; + $a .= 'shadow color: ' . $data['wm_shadow_color'] . "\n"; + $a .= 'shadow_distance: ' . $data['wm_shadow_distance'] . "\n"; + $a .= 'apply all: ' . $data['apply_all'] . "\n"; + $a .= 'Menu Group: ' . $data['menu_group'] . "\n"; + + $this->load->helper('file'); + + write_file('./img/generated/settings.txt', $a); + } + + function save_slot_data($data) + { + $a = 'type : ' . $data['wm_type'] . "\n"; + $a .= 'quality: ' . $data['quality'] . "\n"; + $a .= 'file: ' . $data['file'] . "\n"; + $a .= 'padding: ' . $data['padding'] . "\n"; + $a .= 'vert alignment: ' . $data['wm_vrt_alignment'] . "\n"; + $a .= 'hor alignment: ' . $data['wm_hor_alignment'] . "\n"; + $a .= 'hor offset: ' . $data['wm_hor_offset'] . "\n"; + $a .= 'vert offset: ' . $data['wm_vrt_offset'] . "\n"; + $a .= 'text: ' . $data['wm_text'] . "\n"; + $a .= 'font path: ' . $data['wm_font_path'] . "\n"; + $a .= 'font size: ' . $data['wm_font_size'] . "\n"; + $a .= 'font color: ' . $data['wm_font_color'] . "\n"; + $a .= 'shadow color: ' . $data['wm_shadow_color'] . "\n"; + $a .= 'shadow_distance: ' . $data['wm_shadow_distance'] . "\n"; + $a .= '------------------------image---------------------------' . "\n"; + $a .= 'overlay image: ' . $data['wm_overlay_path'] . "\n"; + $a .= 'opacity: ' . $data['wm_opacity'] . "\n"; + $a .= 'x transp: ' . $data['wm_x_transp'] . "\n"; + $a .= 'y transp: ' . $data['wm_y_transp'] . "\n"; + $a .= '------------------------rank----------------------------' . "\n"; + $a .= 'text: ' . $data['rank_text'] . "\n"; + $a .= 'font size: ' . $data['rank_font_size'] . "\n"; + $a .= 'V align: ' . $data['rank_v_align'] . "\n"; + $a .= 'H align: ' . $data['rank_h_align'] . "\n"; + $a .= 'H offset: ' . $data['rank_h_offset'] . "\n"; + $a .= 'V offset: ' . $data['rank_v_offset'] . "\n"; + $a .= 'padding: ' . $data['rank_padding'] . "\n"; + + $this->load->helper('file'); + + write_file('./img/generated/settings.txt', $a); + } +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/models/index.html b/Mourne-CI/application/models/index.html new file mode 100755 index 0000000..c942a79 --- /dev/null +++ b/Mourne-CI/application/models/index.html @@ -0,0 +1,10 @@ + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + + \ No newline at end of file diff --git a/Mourne-CI/application/models/item_model.php b/Mourne-CI/application/models/item_model.php new file mode 100644 index 0000000..17dd477 --- /dev/null +++ b/Mourne-CI/application/models/item_model.php @@ -0,0 +1,676 @@ + (parent::INVENTORY_MAX - 1)) || + ($d4 < 0 || $d4 > (parent::INVENTORY_MAX - 1))) + return FALSE; + + //nothing needs to be done (same item twice) + if (($d1 == $d3) && ($d2 == $d4)) + return TRUE; + + //hero has to be set from controller! + if (!$this->hero) + return 'Internal error'; + + //just move in inventory + if ($d1 == 'iv' && $d3 == 'iv') + { + $sql = "SELECT * FROM heros_inventory + WHERE container = 1 AND (slot = ? OR slot = ?) AND charid = ?"; + + $q = $this->db->query($sql, array($d2, $d4, $this->hero['id'])); + + $num = $q->num_rows(); + + if (!$num) + return FALSE; + + $res = $q->result_array(); + + $item1 = $res[0]; + + if ($num == 2) + $item2 = $res[1]; + else + $item2 = FALSE; + + if (!$item2) + { + $sql = "UPDATE heros_inventory + SET slot = ? + WHERE id = ?"; + + if ($item1['slot'] == $d2) + $to = $d4; + else + $to = $d2; + + $this->db->query($sql, array($to, $item1['id'])); + + return TRUE; + } + + //we only get here it two items needs to be swapped + $sql = "UPDATE heros_inventory SET slot = ? WHERE id = ?"; + + $this->db->query($sql, array($item1['slot'], $item2['id'])); + $this->db->query($sql, array($item2['slot'], $item1['id'])); + + return TRUE; + } + + //equipping has to be performed (iv/iv case already handled!) + if ($d1 == 'iv') + $d1 = 1; + else + $d1 = 2; + + if ($d3 == 'iv') + $d3 = 1; + else + $d3 = 2; + + + $sql = "SELECT heros_inventory.id AS invid,heros_inventory.is_soulbound,heros_inventory.stack_size, + heros_inventory.container,heros_inventory.slot,hero_items.* + FROM heros_inventory + LEFT JOIN hero_items on heros_inventory.itemid = hero_items.id + WHERE ((heros_inventory.container = ? AND heros_inventory.slot = ?) OR + (heros_inventory.container = ? AND heros_inventory.slot = ?)) AND + charid = ?"; + + $q = $this->db->query($sql, array($d1, $d2, $d3, $d4, $this->hero['id'])); + + $swap = FALSE; + + $num = $q->num_rows(); + + if ($num == 2) + { + $res = $q->result_array(); + + if ($res[0]['container'] == 1) + { + //0 is in bag + $equip = $res[0]; + $deequip = $res[1]; + } + elseif ($res[1]['container'] == 1) + { + //1 is in bag + $equip = $res[1]; + $deequip = $res[0]; + } + else + { + //swap + $equip = $res[0]; + $deequip = $res[1]; + $swap = TRUE; + } + } + else + { + $res = $q->row_array(); + + if ($res['container'] == 1) + { + //not equipped, just equip it + $equip = $res; + $deequip = FALSE; + + if ($d1 == 1) + $equipslot = $d4; + else + $equipslot = $d2; + } + else + { + if ($d1 == 2 && $d3 == 2) + { + //switching between 2 equipslots, but one of them is empty + $equip = $res; + $deequip = FALSE; + + if ($equip['slot'] == $d2) + $equipslot = $d4; + else + $equipslot = $d2; + + $swap = TRUE; + } + else + { + //equipped, just deequip it + $equip = FALSE; + $deequip = $res; + + if ($d1 == 2) + $deequipslot = $d4; + else + $deequipslot = $d2; + } + } + } + + $this->load->helper('equipment'); + + if ($equip) + { + //$cbe = can be equipped + $cbe = can_be_equipped($equip, $this->hero); + + if (!isset($cbe)) + return "Internal error! $cbe is not set!"; + } + + //each of these functions has to return! + + //for switching items from inventory + if ($equip && $deequip && !$swap) + { + if ($cbe['can'] === TRUE) + { + if ($cbe['allowed_slot1'] == $deequip['slot'] || $cbe['allowed_slot2'] == $deequip['slot']) + $equipslot = $deequip['slot']; + + if (!isset($equipslot)) + return "That item cannot be equipped into that slot."; + + if ($cbe['two_handed']) + { + $eq = $this->prep_two_hand(); + + if ($eq !== TRUE) + return $eq; + } + + $this->hero_remove_stats($deequip); + $this->hero_add_stats($equip); + + $sql = "UPDATE heros_inventory SET container = ?, slot = ? WHERE id = ?"; + + //deequipping + $this->db->query($sql, array(1, $equip['slot'], $deequip['invid'])); + + //equip + $this->db->query($sql, array(2, $equipslot, $equip['invid'])); + + $this->calc_hero_stats(); + + return TRUE; + } + else + { + return $cbe['message']; + } + } + + //switching between 2 slots + if ($equip && $deequip && $swap) + { + if (!(($cbe['allowed_slot1'] == $equip['slot'] || $cbe['allowed_slot2'] == $equip['slot']) && + ($cbe['allowed_slot1'] == $deequip['slot'] || $cbe['allowed_slot2'] == $deequip['slot']))) + return "Those items cannot be swapped"; + + $sql = "UPDATE heros_inventory SET slot = ? WHERE id = ?"; + + $this->db->query($sql, array($equip['slot'], $deequip['invid'])); + $this->db->query($sql, array($deequip['slot'], $equip['invid'])); + + return TRUE; + } + + //just deequip + if ($deequip && !$swap) + { + $sql = "UPDATE heros_inventory SET container = 1, slot = ? WHERE id = ?"; + + $this->db->query($sql, array($deequipslot, $deequip['invid'])); + + $this->hero_remove_stats($deequip); + $this->calc_hero_stats(); + + return TRUE; + } + + //just equip + if ($equip && !$swap) + { + if (!$cbe['can']) + return $cbe['message']; + + if (!($cbe['allowed_slot1'] == $equipslot || $cbe['allowed_slot2'] == $equipslot)) + return 'That item cannot be equipped into that slot.'; + + if ($cbe['two_handed']) + { + $eq = $this->prep_two_hand(); + + if ($eq !== TRUE) + return $eq; + } + + $sql = "UPDATE heros_inventory SET container = 2, slot = ? WHERE id = ?"; + + $this->db->query($sql, array($equipslot, $equip['invid'])); + + $this->hero_add_stats($equip); + $this->calc_hero_stats(); + + return TRUE; + } + + //switching between two equipslots, when one of the slots is empty + if ($swap) + { + if (!($cbe['allowed_slot1'] == $equipslot || $cbe['allowed_slot2'] == $equipslot)) + return "That item cannot be equipped into that slot"; + + $sql = "UPDATE heros_inventory SET slot = ? WHERE id = ?"; + + $this->db->query($sql, array($equipslot, $equip['invid'])); + + return TRUE; + } + + return FALSE; + } + + //unequips the off hand, if the user wants to equip a two-hand wep + function prep_two_hand() + { + $sql = "SELECT heros_inventory.id AS invid,heros_inventory.is_soulbound,heros_inventory.stack_size, + heros_inventory.container,heros_inventory.slot,hero_items.* + FROM heros_inventory + LEFT JOIN hero_items on heros_inventory.itemid = hero_items.id + WHERE (heros_inventory.container = 2 AND heros_inventory.slot = 17) AND + charid = ?"; + + $q = $this->db->query($sql, array($this->hero['id'])); + + if (!$q->num_rows()) + return TRUE; + + $res = $q->row_array(); + + //find an empty place + $sql = "SELECT * FROM heros_inventory WHERE container = 1 AND charid = ?"; + + $q = $this->db->query($sql, array($this->hero['id'])); + + $slot = FALSE; + + if ($q->num_rows()) + { + $inv = $q->result_array(); + + for ($i = 0; $i < parent::INVENTORY_MAX; $i++) + { + $found = FALSE; + + foreach ($inv as $row) + { + if ($row['slot'] == $i) + { + $found = TRUE; + break; + } + } + + if (!$found) + { + $slot = $i; + break; + } + } + } + else + { + $slot = 0; + } + + if ($slot === FALSE) + return "You don't have any space in your inventory, to unequip the off hand."; + + $this->hero_remove_stats($res); + + $sql = "UPDATE heros_inventory SET slot = ?, container = 1 WHERE id = ?"; + + $this->db->query($sql, array($slot, $res['invid'])); + + return TRUE; + + } + + //returns ['equipment'], ['money'], ['inventory'] + function get_inventory($charid) + { + $sql = "SELECT heros_inventory.is_soulbound,heros_inventory.stack_size,heros_inventory.container, + heros_inventory.slot,hero_items.* + FROM heros_inventory + LEFT JOIN hero_items ON heros_inventory.itemid=hero_items.id + WHERE charid = ?"; + + $q = $this->db->query($sql, array($charid)); + + if ($q->num_rows()) + $res = $q->result_array(); + else + $res = FALSE; + + $found = FALSE; + for ($i = 0; $i < parent::INVENTORY_MAX; $i++) + { + if ($res) + { + foreach ($res as $row) + { + if ($row['container'] == 1 && $row['slot'] == $i) + { + $data[] = $row; + $found = TRUE; + break; + } + } + + if (!$found) + { + $data[] = FALSE; + } + + $found = FALSE; + } + else + { + $data[] = FALSE; + } + } + + //sort it + + $r['inventory'] = $data; + + if ($res) + { + foreach ($res as $row) + { + if ($row['container'] == 0) + { + $money = $row; + break; + } + } + } + + if (isset($money)) + $r['money'] = $money; + else + $r['money'] = 0; + + //equipment + $found = FALSE; + for ($i = 0; $i < self::MAX_EQUIPMENT; $i++) + { + if ($res) + { + foreach ($res as $row) + { + if ($row['container'] == 2 && $row['slot'] == $i) + { + $eq[] = $row; + $found = TRUE; + break; + } + } + + if (!$found) + { + $eq[] = FALSE; + } + + $found = FALSE; + } + else + $eq[] = FALSE; + } + + $r['equipment'] = $eq; + + //sort it, if needed + $found = FALSE; + if ($res) + { + for ($i = 0; $i < self::MAX_EQUIPMENT; $i++) + { + foreach ($eq as $row) + { + if ($row && $row['slot'] == $i) + { + $seq[] = $row; + $found = TRUE; + break; + } + } + + if (!$found) + { + $seq[] = FALSE; + } + + $found = FALSE; + } + + $r['equipment'] = $seq; + } + + return $r; + + } + + function add_item_admin($data) + { + $sql = "INSERT INTO hero_items + VALUES(default, + " . $this->db->escape($data['name']) . ", + " . $this->db->escape($data['icon']) . ", + '" . $data['quality'] . "', + '" . $data['itemlevel'] . "', + '" . $data['stack'] . "', + '" . $data['type'] . "', + '" . $data['subtype'] . "', + '" . $data['subsubtype'] . "', + '" . $data['sell_price'] . "', + '" . $data['buy_price'] . "', + " . $this->db->escape($data['text']) . ", + '" . $data['soulbound'] . "', + '" . $data['spell'] . "', + '" . $data['proc'] . "', + '" . $data['req_level'] . "', + '" . $data['req_class'] . "', + '" . $data['nomod_max_health'] . "', + '" . $data['nomod_max_mana'] . "', + '" . $data['percent_max_health'] . "', + '" . $data['percent_max_mana'] . "', + '" . $data['nomod_agility'] . "', + '" . $data['nomod_strength'] . "', + '" . $data['nomod_stamina'] . "', + '" . $data['nomod_intellect'] . "', + '" . $data['nomod_spirit'] . "', + '" . $data['percent_agility'] . "', + '" . $data['percent_strength'] . "', + '" . $data['percent_stamina'] . "', + '" . $data['percent_intellect'] . "', + '" . $data['percent_spirit'] . "', + '" . $data['nomod_attackpower'] . "', + '" . $data['percent_attackpower'] . "', + '" . $data['nomod_armor'] . "', + '" . $data['percent_armor'] . "', + '" . $data['nomod_dodge'] . "', + '" . $data['nomod_parry'] . "', + '" . $data['hit'] . "', + '" . $data['nomod_crit'] . "', + '" . $data['nomod_damage_min'] . "', + '" . $data['nomod_damage_max'] . "', + '" . $data['percent_damage_min'] . "', + '" . $data['percent_damage_max'] . "', + '" . $data['nomod_ranged_damage_min'] . "', + '" . $data['nomod_ranged_damage_max'] . "', + '" . $data['percent_ranged_damage_min'] . "', + '" . $data['percent_ranged_damage_max'] . "', + '" . $data['nomod_heal_min'] . "', + '" . $data['nomod_heal_max'] . "', + '" . $data['percent_heal_min'] . "', + '" . $data['percent_heal_max'] . "', + '" . $data['life_leech'] . "', + '" . $data['mana_leech'] . "', + '" . $data['level_modifier'] . "', + '" . $data['level_modifier_max'] . "', + '" . $data['data1'] . "', + '" . $data['data2'] . "')"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function edit_item_admin($data) + { + $sql = "UPDATE hero_items + SET name = " . $this->db->escape($data['name']) . ", + icon = " . $this->db->escape($data['icon']) . ", + quality = '" . $data['quality'] . "', + itemlevel = '" . $data['itemlevel'] . "', + stack = '" . $data['stack'] . "', + type = '" . $data['type'] . "', + subtype = '" . $data['subtype'] . "', + subsubtype = '" . $data['subsubtype'] . "', + sell_price = '" . $data['sell_price'] . "', + buy_price = '" . $data['buy_price'] . "', + text = " . $this->db->escape($data['text']) . ", + soulbound = '" . $data['soulbound'] . "', + spell = '" . $data['spell'] . "', + proc = '" . $data['proc'] . "', + req_level = '" . $data['req_level'] . "', + req_class = '" . $data['req_class'] . "', + nomod_max_health = '" . $data['nomod_max_health'] . "', + nomod_max_mana = '" . $data['nomod_max_mana'] . "', + percent_max_health = '" . $data['percent_max_health'] . "', + percent_max_mana = '" . $data['percent_max_mana'] . "', + nomod_agility = '" . $data['nomod_agility'] . "', + nomod_strength = '" . $data['nomod_strength'] . "', + nomod_stamina = '" . $data['nomod_stamina'] . "', + nomod_intellect = '" . $data['nomod_intellect'] . "', + nomod_spirit = '" . $data['nomod_spirit'] . "', + percent_agility = '" . $data['percent_agility'] . "', + percent_strength = '" . $data['percent_strength'] . "', + percent_Stamina = '" . $data['percent_stamina'] . "', + percent_intellect = '" . $data['percent_intellect'] . "', + percent_spirit = '" . $data['percent_spirit'] . "', + nomod_attackpower = '" . $data['nomod_attackpower'] . "', + percent_attackpower = '" . $data['percent_attackpower'] . "', + nomod_armor = '" . $data['nomod_armor'] . "', + percent_armor = '" . $data['percent_armor'] . "', + nomod_dodge = '" . $data['nomod_dodge'] . "', + nomod_parry = '" . $data['nomod_parry'] . "', + hit = '" . $data['hit'] . "', + nomod_Crit = '" . $data['nomod_crit'] . "', + nomod_damage_min = '" . $data['nomod_damage_min'] . "', + nomod_damage_max = '" . $data['nomod_damage_max'] . "', + percent_damage_min = '" . $data['percent_damage_min'] . "', + percent_damage_max = '" . $data['percent_damage_max'] . "', + nomod_ranged_damage_min = '" . $data['nomod_ranged_damage_min'] . "', + nomod_ranged_damage_max = '" . $data['nomod_ranged_damage_max'] . "', + percent_ranged_damage_min = '" . $data['percent_ranged_damage_min'] . "', + percent_ranged_damage_max = '" . $data['percent_ranged_damage_max'] . "', + nomod_heal_min = '" . $data['nomod_heal_min'] . "', + nomod_heal_max = '" . $data['nomod_heal_max'] . "', + percent_heal_min = '" . $data['percent_heal_min'] . "', + percent_heal_max = '" . $data['percent_heal_max'] . "', + life_leech = '" . $data['life_leech'] . "', + mana_leech = '" . $data['mana_leech'] . "', + level_modifier = '" . $data['level_modifier'] . "', + level_modifier_max = '" . $data['level_modifier_max'] . "', + data1 = '" . $data['data1'] . "', + data2 = '" . $data['data2'] . "' + WHERE id = '" . $data['id'] . "'"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function get_item_admin($id) + { + $sql = "SELECT * FROM hero_items WHERE id = ?"; + + $q = $this->db->query($sql, array($id)); + + if ($q->num_rows()) + return $q->row_array(); + + return FALSE; + } + + function all_items_admin() + { + $sql = "SELECT * FROM hero_items"; + + $q = $this->db->query($sql); + + if ($q->num_rows()) + return $q->result_array(); + + return FALSE; + } + + function all_items_drop_admin() + { + $sql = "SELECT * FROM hero_items"; + + $q = $this->db->query($sql); + + if (!$q->num_rows()) + return FALSE; + + $res = $q->result_array(); + + foreach ($res as $row) + { + $data[$row['id']] = $row['name']; + } + + if (!isset($data)) + return FALSE; + + return $data; + } + + function get_class_item_templates($classid) + { + $sql = "SELECT * FROM hero_inventory_templates WHERE classid = ?"; + + $q = $this->db->query($sql, array($classid)); + + if ($q->num_rows()) + return $q->result_array(); + + return FALSE; + } + +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/models/log_model.php b/Mourne-CI/application/models/log_model.php new file mode 100755 index 0000000..e0f2092 --- /dev/null +++ b/Mourne-CI/application/models/log_model.php @@ -0,0 +1,82 @@ +db->query($sql); + + if (!$q->num_rows()) + return; + + $res = $q->row_array(); + + if ($res['villageid'] != $villageid) + return; + + $sql = "DELETE FROM combat_logs WHERE id='$id'"; + + $this->db->query($sql); + } + + function get_combat_log($id, $villageid) + { + $sql = "SELECT * FROM combat_logs WHERE id='$id'"; + + $q = $this->db->query($sql); + + if (!$q->num_rows()) + return FALSE; + + $res = $q->row_array(); + + if ($res['villageid'] != $villageid) + return FALSE; + + if ($res['new']) + { + $sql = "UPDATE combat_logs SET new='0' WHERE id='$id'"; + $this->db->query($sql); + } + + return $res; + } + + function get_combat_logs($villageid) + { + $sql = "SELECT * FROM combat_logs WHERE villageid='$villageid' ORDER BY time DESC"; + + $q = $this->db->query($sql); + + if (!$q->num_rows()) + return FALSE; + + $res = $q->result_array(); + + $new = FALSE; + foreach ($res as $row) + { + if ($row['new']) + { + $new = TRUE; + break; + } + } + + if (!$new) + { + $sql = "UPDATE villages SET new_log='0' WHERE id='$villageid'"; + + $this->db->query($sql); + } + + return $res; + } +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/models/mail_model.php b/Mourne-CI/application/models/mail_model.php new file mode 100755 index 0000000..87ea2da --- /dev/null +++ b/Mourne-CI/application/models/mail_model.php @@ -0,0 +1,234 @@ +db->query($sql, array(0, $data['name'], 0, 0, $data['subject'], $data['message'])); + } + + function get_drafts($userid) + { + $sql = "SELECT * FROM mail_drafts WHERE userid='$userid'"; + + $q = $this->db->query($sql); + + if (!$q->num_rows()) + return FALSE; + + return $q->result_array(); + } + + function get_draft($id, $userid) + { + $sql = "SELECT * FROM mail_drafts WHERE id = ?"; + + $q = $this->db->query($sql, array($id)); + + if (!$q->num_rows()) + return FALSE; + + $res = $q->row_array(); + + if ($res['userid'] != $userid) + return FALSE; + + return $res; + } + + function delete_draft($id, $userid) + { + $sql = "DELETE FROM mail_drafts WHERE id = ? AND userid = ?"; + + $this->db->query($sql, array($id, $userid)); + } + + function get_inbox($userid, $new) + { + $sql = "SELECT mails.*,users.username FROM mails + LEFT JOIN users on mails.sender=users.id + WHERE owner='$userid' + ORDER BY time DESC"; + + $q = $this->db->query($sql); + + if (!$q->num_rows()) + return FALSE; + + $res = $q->result_array(); + + if (!$new) + return $res; + + $found = FALSE; + foreach ($res as $row) + { + if ($row['new']) + { + $found = TRUE; + break; + } + } + + if ($found) + return $res; + + $sql = "UPDATE users SET new_mail='0' WHERE id='$userid'"; + + $this->db->query($sql); + + return $res; + } + + function send_message($data, $userid) + { + $sql = "SELECT * FROM users WHERE username = ?"; + + $q = $this->db->query($sql, array($data['name'])); + + if (!$q->num_rows()) + return; + + $res = $q->row_array(); + + $data['subject'] = htmlspecialchars($data['subject'], ENT_HTML5, 'UTF-8'); + + if (strlen($data['subject']) >= 45) + $data['subject'] = (substr($data['subject'], 0, 45) . '...'); + + //determining line endings + $w = substr_count($data['message'], "\r\n"); + + if ($w) + $exp = "\r\n"; + else + $exp = "\n"; + + $message = explode($exp, $data['message']); + + if ($message) + { + $d = ""; + foreach ($message as $row) + { + if (strlen($row) > 70) + { + //split into multiple lines + for ($i = 0; $i <= (floor(strlen($row) / 70)); $i++) + { + + $sub = substr($row, (0 + ($i * 70)), 70); + + $d .= $sub; + + if (strlen($sub) == 70) + $d .= "«"; + + $d .= "\r\n"; + } + } + else + { + $d .= $row . "\r\n"; + } + } + + $data['message'] = $d; + } + + $data['message'] = htmlspecialchars($data['message'], ENT_HTML5, 'UTF-8'); + + $breaks = array("\r\n", "\n"); + $text = str_ireplace($breaks, "
", $data['message']); + + $sql = "INSERT INTO mails VALUES(default, + '" . $res['id'] . "', '$userid', '" . time() . "', ?, ?, '1')"; + + $this->db->query($sql, array($data['subject'], $text)); + + $sql = "UPDATE users SET new_mail='1' WHERE id='" . $res['id'] . "'"; + + $this->db->query($sql); + + //saving mail to sent + //id, userid, to_id, to, time, subject, body + $sql = "INSERT INTO mail_sent VALUES(default, ?, ?, ?, " . time(). ", ?, ?)"; + + $sent = array($userid, $res['id'], $res['username'], $data['subject'], $data['message']); + + $this->db->query($sql, $sent); + } + + function get_mail($id, $userid, $edit = FALSE) + { + //querying userid here, so if the user types a random id into the browser bar, it won't return anything + $sql = "SELECT mails.*,users.username FROM mails + LEFT JOIN users ON mails.sender=users.id + WHERE mails.id = ? AND mails.owner = ?"; + + $q = $this->db->query($sql, array($id, $userid)); + + if (!$q->num_rows()) + return FALSE; + + $res = $q->row_array(); + + if ($res['new']) + { + //userid is correct we can query with just the id + $sql = "UPDATE mails SET new='0' WHERE id = ?"; + + $this->db->query($sql, array($id)); + } + + if ($edit) + { + //just in case + $breaks = array("
","
","
"); + + $data['body'] = str_ireplace($breaks, "\r\n", $data['body']); + + $data['body'] = htmlspecialchars_decode($data['body'], ENT_HTML5, 'UTF-8'); + $data['subject'] = htmlspecialchars_decode($data['subject'], ENT_HTML5, 'UTF-8'); + } + + return $res; + } + + function get_sent($id, $userid) + { + //querying userid here, so if the user types a random id into the browser bar, it won't return anything + $sql = "SELECT * FROM mail_sent WHERE id = ? AND userid = ?"; + + $q = $this->db->query($sql, array($id, $userid)); + + if (!$q->num_rows()) + return FALSE; + + return $q->row_array(); + } + + + function get_all_sent($userid) + { + $sql = "SELECT * FROM mail_sent WHERE userid = ?"; + + $q = $this->db->query($sql, array($userid)); + + if (!$q->num_rows()) + return FALSE; + + return $q->result_array(); + } +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/models/map_model.php b/Mourne-CI/application/models/map_model.php new file mode 100755 index 0000000..b5b9c4d --- /dev/null +++ b/Mourne-CI/application/models/map_model.php @@ -0,0 +1,294 @@ +db->query($sql); + + if (!$q->num_rows()) + return FALSE; + + $res = $q->row_array(); + + return $this->get_village_coords($res['id']); + } + + function get_village_coords($vid) + { + $sql = "SELECT * FROM map WHERE type='3' AND villageid='$vid'"; + $q = $this->db->query($sql); + + return $q->row_array(); + } + + function get_map($x, $y) + { + if ($x < 7) + $x = 7; + + if ($y < 7) + $y = 7; + + if ($x > 235) + $x = 235; + + if ($y > 235) + $y = 235; + + $minx = $x - 6; + $maxx = $x + 6; + $miny = $y - 6; + $maxy = $y + 6; + + //< at max so it gets 12 rows and cols + $sql = "SELECT map.*,ai_villages.name AS ai_name,villages.name FROM map + LEFT JOIN ai_villages ON map.villageid=ai_villages.id AND map.type='4' + LEFT JOIN villages ON map.villageid=villages.id AND map.type='3' + WHERE ((map.X >= '$minx') AND (map.X < '$maxx') + AND (map.Y >= '$miny') AND (map.Y < '$maxy'))"; + + $q = $this->db->query($sql); + + $res = $q->result_array(); + + //preprocess it, so view only have to do a foreach + for ($sy = $miny; $sy < ($miny + 12); $sy++) + { + for ($sx = $minx; $sx < ($minx + 12); $sx++) + { + foreach ($res as $row) + { + if (($row['X'] == $sx) && ($row['Y'] == $sy)) + { + $data[] = $row; + break; + } + } + } + } + + return $data; + } + + function get_map_list_admin() + { + $this->load->helper('directory'); + + $map = directory_map('./sql/map/', 1); + + foreach ($map as $row) + { + $a = explode('.', $row); + + if (isset($a[1])) + { + if ($a[1] == 'sql') + $data[] = $row; + } + } + + if (isset($data)) + return $data; + else + return FALSE; + } + + function generate_map_admin() + { + //process ai village names (in different table) here + //they will be saved into a different file until everything here works correctly + //add .! + $a = "DROP TABLE IF EXISTS ai_villages; \n"; + + //create table + $a .= "CREATE TABLE IF NOT EXISTS `ai_villages` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` text NOT NULL, + `attacked` tinyint(4) NOT NULL, + `X` int(11) NOT NULL, + `Y` int(11) NOT NULL, + PRIMARY KEY (`id`) + ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;"; + + $i = 1; + for ($x = 1; $x <= 240; $x++) + { + for ($y = 1; $y <= 240; $y++) + { + //if ai village space + if (!((($x + 24) % 48) || (($y + 24) % 48))) + { + $name = $this->_rand_ai_name(); + + $a .= "INSERT INTO ai_villages + VALUES('$i', '$name', '0', '$x', '$y'); \n"; + + $i++; + } + } + } + + $a .= "DROP TABLE IF EXISTS map; \n"; + + $a .= "CREATE TABLE IF NOT EXISTS `map` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `X` int(11) NOT NULL, + `Y` int(11) NOT NULL, + `type` tinyint(4) NOT NULL, + `villageid` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `X` (`X`,`Y`,`type`,`villageid`) + ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;"; + + $a .= "\n"; + + $sql = "SELECT * FROM villages"; + $q = $this->db->query($sql); + $villages = $q->result_array(); + + if ($villages) + { + foreach ($villages as $row) + { + $found = FALSE; + + while (!$found) + { + $vx = mt_rand(1, 240); + $vy = mt_rand(1, 240); + + if (((($vx + 24) % 48) && (($vy + 24) % 48))) + { + //not in ai space + $vdata[] = array( + 'id' => $row['id'], + 'x' => $vx, + 'y' => $vy); + + $found = true; + } + } + + } + } + else + $vdata = FALSE; + + $villageid = 0; + $ai = 1; + $found = FALSE; + + $i = 1; + for ($x = 1; $x <= 240; $x++) + { + for ($y = 1; $y <= 240; $y++) + { + //if not ai village space + if (((($x + 24) % 48) || (($y + 24) % 48))) + { + if ($vdata) + { + foreach ($vdata as $row) + { + if ($row['x'] == $x && $row['y'] == $y) + { + $villageid = $row['id']; + $type = 3; + $found = TRUE; + } + } + } + + if (!$found) + { + //check for village here, dont let this run when true + $r = rand(0, 100); + if ($r < 70) + $type = 0; + elseif ($r >= 70 && $r < 85) + $type = 1; + else + $type = 2; + } + + $found = FALSE; + + } + else + { + //ai village space + $type = 4; + $villageid = $ai; + $ai++; + } + + $a .= "INSERT INTO map VALUES('$i', '$x', '$y', '$type', '$villageid');\n"; + $villageid = 0; + $i++; + } + } + + $this->load->helper('file'); + + $f = './sql/map/map' . time() . '.sql'; + + write_file($f, $a); + } + + function apply_map_admin($file) + { + $this->load->helper('file'); + + $f = readfile(('./sql/map/' . $file)); + + $sql = explode(';', $f); + + foreach ($sql as $row) + { + $this->db->query($row); + } + } + + function _rand_ai_name() + { + //they are in keyboard order from left to right, and top to bottom + + //21 entries + $a = array('q', 'w', 'r', 't', 'z', 'p', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'y', 'x', + 'c', 'v', 'b', 'n', 'm'); + + //5 entries + $b = array('e', 'u', 'i', 'o', 'a'); + + //ai village names should be between 4-6 chars + $length = rand(4, 6); + + $str = ''; + for ($i = 1; $i <= $length; $i++) + { + //start with $a + if ($i % 2) + { + if ($i == 1) + $str .= strtoupper($a[mt_rand(0,20)]); + else + $str .= $a[mt_rand(0, 20)]; + } + else + $str .= $b[mt_rand(0, 4)]; + + } + + return $str; + } + +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/models/menu_model.php b/Mourne-CI/application/models/menu_model.php new file mode 100755 index 0000000..715ccb2 --- /dev/null +++ b/Mourne-CI/application/models/menu_model.php @@ -0,0 +1,14 @@ +db->query($sql, array($userid)); + + if (!$q->num_rows()) + return FALSE; + + return $q->row_array(); + } + + function get_userlevel($uid) + { + $sql = "SELECT userlevel FROM users WHERE id=$uid"; + + $q = $this->db->query($sql); + + $res = $q->row_array(); + + return $res['userlevel']; + + } + + function get_username($uid) + { + $sql = "SELECT username FROM users WHERE id=$uid"; + + $q = $this->db->query($sql); + + $res = $q->row_array(); + + return $res['username']; + } + + function get_userdata($id) + { + $sql = "SELECT * FROM users WHERE id='$id'"; + $q = $this->db->query($sql); + + return $q->row_array(); + + } + + function get_villageid($userid) + { + $sql = "SELECT id FROM villages WHERE userid='$userid' AND selected='1'"; + $q = $this->db->query($sql); + $res = $q->row_array(); + + return $res['id']; + } + + function get_village_data($uid) + { + $sql = "SELECT * FROM villages WHERE userid='$uid' AND selected='1'"; + $q = $this->db->query($sql); + return $q->row_array(); + } + +} + +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/models/news_model.php b/Mourne-CI/application/models/news_model.php new file mode 100755 index 0000000..62985ae --- /dev/null +++ b/Mourne-CI/application/models/news_model.php @@ -0,0 +1,32 @@ +db->query($sql); + + return $q->result_array(); + } + + function add_news($text, $uname) + { + $sql = "INSERT INTO news VALUES(default, '$uname', '$text')"; + + return $this->db->query($sql); + } + + function del_news($id) + { + $sql = ""; + return $this->db->query($sql); + } + +} + +//nowhitesp diff --git a/Mourne-CI/application/models/resource_model.php b/Mourne-CI/application/models/resource_model.php new file mode 100755 index 0000000..87b35eb --- /dev/null +++ b/Mourne-CI/application/models/resource_model.php @@ -0,0 +1,64 @@ +get_resources($villageid); + + $sql = "SELECT * FROM buildings WHERE id='$buildingid'"; + $q = $this->db->query($sql); + $building = $q->row_array(); + + if ($res['food'] >= $building['cost_food'] && + $res['wood'] >= $building['cost_wood'] && + $res['stone'] >= $building['cost_stone'] && + $res['iron'] >= $building['cost_iron'] && + $res['mana'] >= $building['cost_mana']) + return TRUE; + + return FALSE; + + } + + +} +//nowhitesp diff --git a/Mourne-CI/application/models/spell_model.php b/Mourne-CI/application/models/spell_model.php new file mode 100755 index 0000000..8691116 --- /dev/null +++ b/Mourne-CI/application/models/spell_model.php @@ -0,0 +1,240 @@ +resources = $res; + + //getting spell + $sql = "SELECT spells.*,building_spell_cooldowns.cooldown_end + FROM building_spells + LEFT JOIN spells ON building_spells.spellid=spells.id + LEFT JOIN building_spell_cooldowns + ON (building_spells.spellid=building_spell_cooldowns.spellid + AND building_spell_cooldowns.slotid='$slotid' + AND building_spell_cooldowns.villageid='$villageid') + WHERE building_spells.villageid='$villageid' + AND building_spells.slotid='$slotid' + AND building_spells.spellid='$spellid'"; + + $q = $this->db->query($sql); + + if (!$q->num_rows()) + return 1; + + $spell = $q->row_array(); + + if ($spell['cooldown_end']) + return 2; + + if (!$this->check_resources($res, $spell)) + return 3; + + //everything is fine + //substracting cost + $this->substract_resources($spell, $villageid); + + //addign modofiers + $this->add_modifiers($spell['id'], $villageid, 'spell'); + + $this->write_resources(); + + if ($spell['weather_change_to']) + { + $sql = "UPDATE villages + SET weather_change_to='" . $spell['weather_change_to'] . "' + WHERE id='$villageid'"; + + $this->db->query($sql); + } + + //do spelleffects here + + + //adding cooldown + $cd = $spell['cooldown'] + time(); + + $sql = "INSERT INTO building_spell_cooldowns + VALUES(default, '$villageid', '$slotid', + '" . $spell['id'] . "', '$cd')"; + $this->db->query($sql); + + //adding spell_effect_end to events + $ev['type'] = 3; + $ev['villageid'] = $villageid; + $ev['slotid'] = $slotid; + $ev['time'] = $spell['duration']; + $ev['data1'] = $spell['id']; + + $this->add_event($ev); + } + + function get_spells($slotid, $villageid) + { + $this->update_spells($slotid, $villageid); + + $sql = "SELECT spells.*,building_spell_cooldowns.cooldown_end + FROM building_spells + LEFT JOIN spells ON building_spells.spellid=spells.id + LEFT JOIN building_spell_cooldowns + ON (building_spells.spellid=building_spell_cooldowns.spellid + AND building_spell_cooldowns.slotid='$slotid' + AND building_spell_cooldowns.villageid='$villageid') + WHERE building_spells.villageid='$villageid' + AND building_spells.slotid='$slotid'"; + + $q = $this->db->query($sql); + + return $q->result_array(); + } + + function update_spells($slotid, $villageid) + { + $sql = "SELECT * FROM building_spell_cooldowns + WHERE slotid='$slotid' + AND villageid='$villageid'"; + + $q = $this->db->query($sql); + + if (!$q->num_rows()) + return; + + $spells = $q->result_array(); + $time = time(); + + foreach ($spells as $row) + { + if ($row['cooldown_end'] <= $time) + { + $sql = "DELETE FROM building_spell_cooldowns + WHERE id='" . $row['id'] . "'"; + $this->db->query($sql); + } + } + } + + function get_spell_mod_drop_admin() + { + //STUB + $data = array('0' => 'Nothing'); + return $data; + } + + function list_spells_admin() + { + $sql = "SELECT * FROM spells"; + $q = $this->db->query($sql); + + return $q->result_array(); + } + + function get_spell_list_drop_admin() + { + $sql = "SELECT * FROM spells"; + $q = $this->db->query($sql); + $res = $q->result_array(); + + $data[0] = 'No Spell'; + + foreach ($res as $row) + { + $data[$row['id']] = $row['description_admin']; + } + + return $data; + } + + function get_spell_admin($id) + { + $sql = "SELECT * FROM spells WHERE id='$id'"; + $q = $this->db->query($sql); + + return $q->row_array(); + } + + function edit_spell_admin($data) + { + + $sql = "UPDATE spells + SET effect='" . $data['effect'] . "', + duration='" . $data['duration'] . "', + cooldown='" . $data['cooldown'] . "', + description='" . $data['description'] . "', + description_admin='" . $data['description_admin'] . "', + weather_change_to='" . $data['weather_change_to'] . "', + cost_food='" . $data['cost_food'] . "', + cost_wood='" . $data['cost_wood'] . "', + cost_stone='" . $data['cost_stone'] . "', + cost_iron='" . $data['cost_iron'] . "', + cost_mana='" . $data['cost_mana'] . "', + mod_max_food='" . $data['mod_max_food'] . "', + mod_max_wood='" . $data['mod_max_wood'] . "', + mod_max_stone='" . $data['mod_max_stone'] . "', + mod_max_iron='" . $data['mod_max_iron'] . "', + mod_max_mana='" . $data['mod_max_mana'] . "', + mod_rate_food='" . $data['mod_rate_food'] . "', + mod_rate_wood='" . $data['mod_rate_wood'] . "', + mod_rate_stone='" . $data['mod_rate_stone'] . "', + mod_rate_iron='" . $data['mod_rate_iron'] . "', + mod_rate_mana='" . $data['mod_rate_mana'] . "', + mod_percent_food='" . $data['mod_percent_food'] . "', + mod_percent_wood='" . $data['mod_percent_wood'] . "', + mod_percent_stone='" . $data['mod_percent_stone'] . "', + mod_percent_iron='" . $data['mod_percent_iron'] . "', + mod_percent_mana='" . $data['mod_percent_mana'] . "' + WHERE id='" . $data['id'] . "'"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function add_spell_admin($data) + { + $sql = "INSERT INTO spells VALUES(default, + '" . $data['effect'] . "', + '" . $data['duration'] . "', + '" . $data['cooldown'] . "', + '" . $data['description'] . "', + '" . $data['description_admin'] . "', + '" . $data['weather_change_to'] . "', + '" . $data['cost_food'] . "', + '" . $data['cost_wood'] . "', + '" . $data['cost_stone'] . "', + '" . $data['cost_iron'] . "', + '" . $data['cost_mana'] . "', + '" . $data['mod_max_food'] . "', + '" . $data['mod_max_wood'] . "', + '" . $data['mod_max_stone'] . "', + '" . $data['mod_max_iron'] . "', + '" . $data['mod_max_mana'] . "', + '" . $data['mod_rate_food'] . "', + '" . $data['mod_rate_wood'] . "', + '" . $data['mod_rate_stone'] . "', + '" . $data['mod_rate_iron'] . "', + '" . $data['mod_rate_mana'] . "', + '" . $data['mod_percent_food'] . "', + '" . $data['mod_percent_wood'] . "', + '" . $data['mod_percent_stone'] . "', + '" . $data['mod_percent_iron'] . "', + '" . $data['mod_percent_mana'] . "')"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function get_spell_effects_admin() + { + //STUB! + $data = array('0' => 'No Effect'); + + return $data; + } +} +//nowhitesp diff --git a/Mourne-CI/application/models/sql_model.php b/Mourne-CI/application/models/sql_model.php new file mode 100755 index 0000000..e7b96d6 --- /dev/null +++ b/Mourne-CI/application/models/sql_model.php @@ -0,0 +1,148 @@ +_update_db_version($time); + } + + //dummy function which uses inherited _create_sql($sql); + function create_sql($sql) + { + $this->_create_sql($sql); + } + + function get_db_version() + { + $sql = "SELECT version FROM db_version WHERE id='1'"; + + $q = $this->db->query($sql); + + $res = $q->row_array(); + + return $res['version']; + } + + function get_appliable_files() + { + $this->load->helper('file'); + //$full_list = get_filenames('./sql'); + + $this->load->helper('directory'); + $full_list = directory_map('./sql', 1); + + //get out the full db dumps + foreach ($full_list as $row) + { + if (substr_compare($row, 'db', 0, 2, TRUE) && substr_compare($row, 'map', 0, 3, TRUE) && + substr_compare($row, 'old', 0, 3, TRUE) && substr_compare($row, 'index', 0, 5, TRUE)) + { + $list[] = $row; + } + } + + if (!isset($list)) + return 0; + + $ver = $this->get_db_version(); + + foreach ($list as $row) + { + $l = explode('.', $row); + + if ($l[0] > $ver) + { + $data[] = $row; + } + } + + if (!isset($data)) + return 0; + + //getting the max + $max = 0; + + foreach ($data as $row) + { + $l = explode('.', $row); + + if ($l[0] > $max) + { + $max = $l[0]; + } + } + + $smallest = $max; + $last_found = 0; + + $ordered[] = $max . ".sql"; + + for ($i = 0; $i < (sizeof($data) - 1); $i++) + { + foreach ($data as $row) + { + $l = explode('.', $row); + + if (($l[0] < $smallest) && ($l[0] > $last_found)) + { + $smallest = $l[0]; + $ord = $row; + } + } + + $last_found = $smallest; + $smallest = $max; + $ordered[$i] = $ord; + } + + if (isset($ordered)) + { + return $ordered; + } + else + { + return 0; + } + + } + + function apply_all_sql() + { + $this->load->helper('file'); + + $list = $this->get_appliable_files(); + + if (!$list) + return; + + for ($i = 0; $i < sizeof($list); $i++) + { + //reading file, then applying it to the db + $loc = './sql/' . $list[$i]; + $sql = read_file($loc); + + var_dump($loc); + + $this->db->query($sql); + + //TODO check if error happened, then stop everything + //check is not needed, it just throws the error + + //update db_version + $ver = explode('.', $list[$i]); + $sqlv = "UPDATE db_version SET version='" . $ver[0] . "' WHERE id='1'"; + $this->db->query($sqlv); + } + } + +} +//nowhitesp diff --git a/Mourne-CI/application/models/technology_model.php b/Mourne-CI/application/models/technology_model.php new file mode 100755 index 0000000..70751ce --- /dev/null +++ b/Mourne-CI/application/models/technology_model.php @@ -0,0 +1,646 @@ +set_resources($res); + + $technology = $this->get_technology($techid); + + //no such technology + if (!$technology) + return 1; + + if (!$this->check_resources($res, $technology)) + return 2; + + $tech = $this->get_researchable($slotid, $villageid); + + $primary = $tech['primary']; + $secondary = $tech['secondary']; + + $found = FALSE; + $group = FALSE; + foreach ($primary as $row) + { + if ($row['id'] == $techid) + { + $found = TRUE; + $group = 'primary'; + break; + } + } + + foreach ($secondary as $row) + { + if ($found) + break; + + if ($row['id'] = $techid) + { + $found = TRUE; + $group = 'secondary'; + break; + } + } + + //building doesn't have this technology (or user already have it) + if (!$found) + return 3; + + //everything is fine + //substract cost + $this->substract_resources($technology, $villageid); + + $this->write_resources(); + + //add event + $ev['type'] = 4; + $ev['villageid'] = $villageid; + $ev['slotid'] = $slotid; + $ev['time'] = $technology['time']; + $ev['data1'] = $techid; + + if ($group == 'secondary') + $ev['data2'] = $slotid; + + $this->add_event($ev); + } + + function get_researchable($slotid, $villageid) + { + $building = $this->get_slot_building($slotid, $villageid); + + if (!($building['tech_group'] && $building['tech_secondary_group'])) + { + $data['primary'] = FALSE; + $data['secondary'] = FALSE; + return $data; + } + + //technologies a village has + $technologies = $this->get_village_technologies($villageid, $slotid); + + //technologies a building can make + $building_tech = $this->get_building_technologies($building['tech_group'], + $building['tech_secondary_group']); + + //technologies that a village (or building) doesn't have + $av_tech = $this->select_technology_not_have($technologies, $building_tech); + + //getting technology requirements + $requirements = $this->get_requirements($av_tech); + + if (!$requirements) + return $av_tech; + + $data['primary'] = $this->apply_requirements($av_tech['primary'], + $requirements); + + $data['secondary'] = $this->apply_requirements($av_tech['secondary'], + $requirements); + + return $data; + + } + + function apply_requirements($technologies, $requirements) + { + if (!$technologies) + return FALSE; + + if (!$requirements) + return $technologies; + + foreach ($technologies as $row) + { + $found = FALSE; + foreach ($requirements as $req) + { + //if the technology's id matched the current requirement's techid + if ($req['technologyid'] == $row['id']) + { + //looking for the matching technology that is required + foreach ($technologies as $tech) + { + if ($req['req_tech_id'] == $tech['id']) + { + $found = TRUE; + break; + } + } + } + } + + if (!$found) + $data[] = $row; + } + + if (isset($data)) + return $data; + else + return FALSE; + } + + function get_requirements($tech) + { + $primary = $tech['primary']; + $secondary = $tech['secondary']; + + if (!$primary && !$secondary) + return FALSE; + + $sql = "SELECT * FROM technology_requirements + WHERE ("; + + $first = TRUE; + if ($primary) + { + foreach ($primary as $row) + { + if ($first) + $first = FALSE; + else + $sql .= "OR "; + + $sql .= "technologyid='" . $row['id'] . "' "; + } + } + + if ($secondary) + { + foreach ($secondary as $row) + { + if ($first) + $first = FALSE; + else + $sql .= "OR "; + + $sql .= "technologyid='" . $row['id'] . "' "; + } + } + + $sql .= ")"; + + $q = $this->db->query($sql); + + if ($q->num_rows()) + return $q->result_array(); + else + return FALSE; + } + + //TODO better name? + function select_technology_not_have($village_tech, $building_technologies) + { + $primary = $building_technologies['primary']; + $secondary = $building_technologies['secondary']; + + //adding only which village doesn't have (primary) + if ($primary) + { + $found = FALSE; + foreach ($primary as $row) + { + foreach ($village_tech as $trow) + { + if ($found) + continue; + + if ($trow['technologyid'] == $row['id']) + { + $found = TRUE; + } + } + + if (!$found) + $data['primary'][] = $row; + + $found = FALSE; + } + } + if (!isset($data['primary'])) + $data['primary'] = FALSE; + + + if ($secondary) + { + //same just with secondary + $found = FALSE; + foreach ($secondary as $row) + { + foreach ($village_tech as $trow) + { + if ($found) + continue; + + if ($trow['technologyid'] == $row['id']) + { + $found = TRUE; + } + } + + if (!$found) + $data['secondary'][] = $row; + + $found = FALSE; + } + } + + if (!isset($data['secondary'])) + $data['secondary'] = FALSE; + + return $data; + } + + function get_building_technologies($id, $secid = 0) + { + if ($secid) + { + $sql = "SELECT technologies.*,technology_groups.groupid + FROM technology_groups + INNER JOIN technologies + ON technology_groups.technologyid=technologies.id + WHERE (groupid='$id' OR groupid='$secid')"; + } + else + { + $sql = "SELECT technologies.* + FROM technology_groups + INNER JOIN technologies + ON technology_groups.technologyid=technologies.id + WHERE groupid='$id'"; + } + + $q = $this->db->query($sql); + + if (!$secid) + { + $data['primary'] = $q->result_array(); + $data['secondary'] = FALSE; + + return $data; + } + + $res = $q->result_array(); + + foreach ($res as $row) + { + if ($row['groupid'] == $id) + { + $data['primary'][] = $row; + } + else + { + $data['secondary'][] = $row; + } + } + + if (!isset($data['primary'])) + $data['primary'] = FALSE; + + if (!isset($data['secondary'])) + $data['secondary'] = FALSE; + + return $data; + + } + + function get_technology($id) + { + $sql = "SELECT * FROM technologies WHERE id='$id'"; + $q = $this->db->query($sql); + + if ($q->num_rows()) + return $q->row_array(); + else + return FALSE; + } + + function add_tech_req_admin($techid, $reqid) + { + //dont add if already added + $sql = "SELECT * FROM technology_requirements + WHERE technologyid='$techid' + AND req_tech_id='$reqid'"; + + $q = $this->db->query($sql); + + if ($q->num_rows()) + return; + + $sql = "INSERT INTO technology_requirements + VALUES(default, '$techid', '$reqid')"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function remove_tech_req_admin($id) + { + $sql = "DELETE FROM technology_requirements + WHERE id='$id'"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function get_tech_by_req_id_admin($id) + { + $sql = "SELECT technologies.* + FROM technology_have_requirements + INNER JOIN technologies + ON technology_have_requirements.technologyid=technologies.id + WHERE technology_have_requirements.id='$id'"; + + $q = $this->db->query($sql); + + return $q->row_array(); + } + + function get_tech_requirements_admin($id) + { + $sql = "SELECT technology_requirements.*,technologies.description + FROM technology_requirements + INNER JOIN technologies + ON technology_requirements.req_tech_id=technologies.id + WHERE technologyid='$id'"; + + $q = $this->db->query($sql); + + return $q->result_array(); + } + + function add_to_req_list_admin($data) + { + $sql = "SELECT * FROM technology_have_requirements + WHERE technologyid='" . $data['technologyid'] . "'"; + + $q = $this->db->query($sql); + + if ($q->num_rows) + return; + + $sql = "INSERT INTO technology_have_requirements + VALUES(default, + '" . $data['technologyid'] . "', + '" . $data['comment'] . "')"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function remove_from_req_list_admin($id) + { + $sql = "DELETE FROM technology_have_requirements + WHERE id='$id'"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function get_req_list_item_admin($id) + { + $sql = "SELECT technology_have_requirements.*,technologies.description + FROM technology_have_requirements + INNER JOIN technologies + ON technology_have_requirements.technologyid=technologies.id + WHERE technology_have_requirements.id='$id'"; + + $q = $this->db->query($sql); + + return $q->row_array(); + } + + function list_tech_have_req_admin() + { + $sql = "SELECT technology_have_requirements.*,technologies.description + FROM technology_have_requirements + INNER JOIN technologies + ON technology_have_requirements.technologyid=technologies.id"; + + $q = $this->db->query($sql); + return $q->result_array(); + } + + function add_tech_to_group_admin($gid, $techid) + { + $sql = "INSERT INTO technology_groups + VALUES(default, '$gid', '$techid')"; + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function remove_tech_from_group_admin($gid, $techid) + { + $sql = "DELETE FROM technology_groups + WHERE groupid='$gid' + AND technologyid='$techid'"; + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function get_group_admin($id) + { + $sql = "SELECT technology_groups.*, technologies.description + FROM technology_groups + INNER JOIN technologies ON technology_groups.technologyid=technologies.id + WHERE groupid='$id'"; + + $q = $this->db->query($sql); + + return $q->result_array(); + } + + function get_tech_list_drop_admin() + { + $sql = "SELECT id,description FROM technologies"; + $q = $this->db->query($sql); + + $res = $q->result_array(); + + $data[0] = 'Nothing'; + + foreach ($res as $row) + { + $data[$row['id']] = $row['description']; + } + + return $data; + } + + function list_tech_drop_admin() + { + $sql = "SELECT id,description FROM technologies"; + $q = $this->db->query($sql); + + $res = $q->result_array(); + + foreach ($res as $row) + { + $data[$row['id']] = $row['description']; + } + + if (isset($data)) + return $data; + else + return FALSE; + } + + function get_tech_group_list_drop_admin() + { + $sql = "SELECT * FROM technology_group_descriptions"; + + $q = $this->db->query($sql); + + $res = $q->result_array(); + + $data[0] = 'Nothing'; + + foreach ($res as $row) + { + $data[$row['id']] = $row['group_name']; + } + + return $data; + } + + function add_tech_group_desc_admin($data) + { + $sql = "INSERT INTO technology_group_descriptions + VALUES(default, '" . $data['group_name'] . "')"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function edit_tech_group_desc_admin($data) + { + $sql = "UPDATE technology_group_descriptions + SET group_name='" . $data['group_name'] . "' + WHERE id='" . $data['id'] . "'"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function get_tech_group_desc_admin($id) + { + $sql = "SELECT * FROM technology_group_descriptions WHERE id='$id'"; + $q = $this->db->query($sql); + + return $q->row_array(); + } + + function list_tech_groups_admin() + { + $sql = "SELECT * FROM technology_group_descriptions"; + $q = $this->db->query($sql); + + return $q->result_array(); + } + + function list_technologies_admin() + { + $sql = "SELECT * FROM technologies"; + $q = $this->db->query($sql); + + return $q->result_array(); + } + + function get_technology_admin($id) + { + $sql = "SELECT * FROM technologies WHERE id='$id'"; + $q = $this->db->query($sql); + + return $q->row_array(); + } + + function edit_technology_admin($data) + { + + $sql = "UPDATE technologies + SET description='" . $data['description'] . "', + time='" . $data['time'] . "', + score='" . $data['score'] . "', + cost_food='" . $data['cost_food'] . "', + cost_wood='" . $data['cost_wood'] . "', + cost_stone='" . $data['cost_stone'] . "', + cost_iron='" . $data['cost_iron'] . "', + cost_mana='" . $data['cost_mana'] . "', + mod_max_food='" . $data['mod_max_food'] . "', + mod_max_wood='" . $data['mod_max_wood'] . "', + mod_max_stone='" . $data['mod_max_stone'] . "', + mod_max_iron='" . $data['mod_max_iron'] . "', + mod_max_mana='" . $data['mod_max_mana'] . "', + mod_rate_food='" . $data['mod_rate_food'] . "', + mod_rate_wood='" . $data['mod_rate_wood'] . "', + mod_rate_stone='" . $data['mod_rate_stone'] . "', + mod_rate_iron='" . $data['mod_rate_iron'] . "', + mod_rate_mana='" . $data['mod_rate_mana'] . "', + mod_percent_food='" . $data['mod_percent_food'] . "', + mod_percent_wood='" . $data['mod_percent_wood'] . "', + mod_percent_stone='" . $data['mod_percent_stone'] . "', + mod_percent_iron='" . $data['mod_percent_iron'] . "', + mod_percent_mana='" . $data['mod_percent_mana'] . "', + mod_create_id='" . $data['mod_create_id'] . "', + mod_spell_id='" . $data['mod_spell_id'] . "', + flag_ai='" . $data['flag_ai'] . "', + is_secondary='" . $data['is_secondary'] . "' + WHERE id='" . $data['id'] . "'"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function add_technology_admin($data) + { + $sql = "INSERT INTO technologies VALUES(default, + '" . $data['description'] . "', + '" . $data['time'] . "', + '" . $data['score'] . "', + '" . $data['cost_food'] . "', + '" . $data['cost_wood'] . "', + '" . $data['cost_stone'] . "', + '" . $data['cost_iron'] . "', + '" . $data['cost_mana'] . "', + '" . $data['mod_max_food'] . "', + '" . $data['mod_max_wood'] . "', + '" . $data['mod_max_stone'] . "', + '" . $data['mod_max_iron'] . "', + '" . $data['mod_max_mana'] . "', + '" . $data['mod_rate_food'] . "', + '" . $data['mod_rate_wood'] . "', + '" . $data['mod_rate_stone'] . "', + '" . $data['mod_rate_iron'] . "', + '" . $data['mod_rate_mana'] . "', + '" . $data['mod_percent_food'] . "', + '" . $data['mod_percent_wood'] . "', + '" . $data['mod_percent_stone'] . "', + '" . $data['mod_percent_iron'] . "', + '" . $data['mod_percent_mana'] . "', + '" . $data['mod_create_id'] . "', + '" . $data['mod_spell_id'] . "', + '" . $data['flag_ai'] . "', + '" . $data['is_secondary'] . "')"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } +} +//nowhitesp diff --git a/Mourne-CI/application/models/unit_model.php b/Mourne-CI/application/models/unit_model.php new file mode 100755 index 0000000..73992d3 --- /dev/null +++ b/Mourne-CI/application/models/unit_model.php @@ -0,0 +1,172 @@ +db->query($sql); + + //TODO order it! + + return $q->result_array(); + } + + function get_unit($id) + { + $sql = "SELECT * FROM units WHERE id='$id'"; + $q = $this->db->query($sql); + + return $q->row_array(); + } + + //calculates how many units can be created (by lookin at events) + //nothing gets queried + function calc_max_unit_ev($unit_max, $unit_res, $event) + { + $in_progress = 0; + + if ($event) + { + foreach ($event as $row) + { + $in_progress += $row['data2']; + } + } + + //if more are in progress that the building can make + if ($in_progress >= $unit_max) + return 0; + + //calc how many can be made overall + $max = $unit_max - $in_progress; + + //if less can be made because of events than the resources allow + if ($max <= $unit_res) + return $max; + + //if events allow more than resources + if ($max > $unit_res) + return $unit_res; + + return $max; + } + + function list_create_mod_drop_admin() + { + //STUB + return array('0' => 'Nothing'); + } + + function list_units_admin() + { + $sql = "SELECT * FROM units"; + $q = $this->db->query($sql); + + return $q->result_array(); + } + + function get_unit_list_dropdown_admin() + { + $sql = "SELECT * FROM units"; + $q = $this->db->query($sql); + + $res = $q->result_array(); + + $data[0] = 'Nothing'; + + + foreach ($res as $row) + { + $data[$row['id']] = $row['name']; + } + + return $data; + } + + function add_unit_admin($data) + { + $sql = "INSERT INTO units + VALUES(default, + '" . $data['type'] . "', + '" . $data['name'] . "', + '" . $data['icon'] . "', + '" . $data['score'] . "', + '" . $data['can_defend'] . "', + '" . $data['defense'] . "', + '" . $data['attack'] . "', + '" . $data['weak_against'] . "', + '" . $data['strong_against'] . "', + '" . $data['turn'] . "', + '" . $data['ability'] . "', + '" . $data['time_to_create'] . "', + '" . $data['cost_unit'] . "', + '" . $data['cost_num_unit'] . "', + '" . $data['cost_food'] . "', + '" . $data['cost_wood'] . "', + '" . $data['cost_stone'] . "', + '" . $data['cost_iron'] . "', + '" . $data['cost_mana'] . "', + '" . $data['mod_rate_food'] . "', + '" . $data['mod_rate_wood'] . "', + '" . $data['mod_rate_stone'] . "', + '" . $data['mod_rate_iron'] . "', + '" . $data['mod_rate_mana'] . "')"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function get_unit_admin($id) + { + $sql = "SELECT * FROM units WHERE id='$id'"; + $q = $this->db->query($sql); + + return $q->row_array(); + } + + function edit_unit_admin($data) + { + $sql = "UPDATE units + SET type='" . $data['type'] . "', + name='" . $data['name'] . "', + icon='" . $data['icon'] . "', + score='" . $data['score'] . "', + can_defend='" . $data['can_defend'] . "', + defense='" . $data['defense'] . "', + attack='" . $data['attack'] . "', + weak_against='" . $data['weak_against'] . "', + strong_against='" . $data['strong_against'] . "', + turn='" . $data['turn'] . "', + ability='" . $data['ability'] . "', + time_to_create='" . $data['time_to_create'] . "', + cost_unit='" . $data['cost_unit'] . "', + cost_num_unit='" . $data['cost_num_unit'] . "', + cost_food='" . $data['cost_food'] . "', + cost_wood='" . $data['cost_wood'] . "', + cost_stone='" . $data['cost_stone'] . "', + cost_iron='" . $data['cost_iron'] . "', + cost_mana='" . $data['cost_mana'] . "', + mod_rate_food='" . $data['mod_rate_food'] . "', + mod_rate_wood='" . $data['mod_rate_wood'] . "', + mod_rate_stone='" . $data['mod_rate_stone'] . "', + mod_rate_iron='" . $data['mod_rate_iron'] . "', + mod_rate_mana='" . $data['mod_rate_mana'] . "' + WHERE id='" . $data['id'] . "'"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } +} +//nowhitesp diff --git a/Mourne-CI/application/models/user_model.php b/Mourne-CI/application/models/user_model.php new file mode 100755 index 0000000..4a0637c --- /dev/null +++ b/Mourne-CI/application/models/user_model.php @@ -0,0 +1,72 @@ +db->escape($data['username']); + + $q = $this->db->query($sql); + + if ($q->num_rows > 0) + { + $row = $q->row_array(); + + if ($row['passkey'] == $data['password']) + { + return TRUE; + } + else + { + return FALSE; + } + } + else + { + return FALSE; + } + } + + function get_userid($username) + { + $sql = "SELECT id FROM users WHERE username=" . $this->db->escape($username); + $q = $this->db->query($sql); + $res = $q->row_array(); + + return $res['id']; + } + + function reg_username_check($uname) + { + $sql = "SELECT username FROM users WHERE username=" . $this->db->escape($uname); + + $q = $this->db->query($sql); + + if ($q->num_rows() == 0) + { + return TRUE; + } + else + { + return FALSE; + } + } + + function reg_write($data) + { + $sql = "INSERT INTO users VALUES(default, " + . $this->db->escape($data['username']) . ", '" + . $data['password'] . "', '" + . $data['email'] . "', + default, default, default)"; + + + return $this->db->query($sql); + } +} +//nowhitesp diff --git a/Mourne-CI/application/models/village_model.php b/Mourne-CI/application/models/village_model.php new file mode 100755 index 0000000..05a1fa2 --- /dev/null +++ b/Mourne-CI/application/models/village_model.php @@ -0,0 +1,194 @@ +db->query($sql); + } + + function get_village($id) + { + $sql = "SELECT * FROM villages WHERE id='$id'"; + + $q = $this->db->query($sql); + + return $q->row_array(); + } + + function select_village($id, $userid) + { + //first check if villageid belongs to user + $sql = "SELECT * FROM villages WHERE id='$id'"; + + $q = $this->db->query($sql); + + if (!$q->num_rows()) + return; + + $res = $q->row_array(); + + if ($res['userid'] != $userid) + return; + + if ($res['selected']) + return; + + $sql = "UPDATE villages SET selected='0' WHERE userid='$userid'"; + + $this->db->query($sql); + + $sql = "UPDATE villages SET selected='1' WHERE id='$id'"; + + $this->db->query($sql); + } + + function get_villages($userid) + { + $sql = "SELECT * FROM villages WHERE userid='$userid' ORDER BY score DESC"; + + $q = $this->db->query($sql); + + return $q->result_array(); + } + + function create_village($userid, $username, $posx = -1, $posy = -1) + { + //make all village unselected + $sql = "UPDATE villages + SET selected='0' + WHERE userid='$userid'"; + + $this->db->query($sql); + + $villagename = $username . "\'s village"; + + $sql = "INSERT INTO villages VALUES(default, '$userid', '$villagename', + default, '1', default, default, default, default, default, default)"; + + $this->db->query($sql); + + //getting back id from newly created village + $sql = "SELECT id FROM villages WHERE userid='$userid' AND selected='1'"; + $q = $this->db->query($sql); + $res = $q->row_array(); + + $id = $res['id']; + + //resources-> id, villageid, res[5], max_res[5], rate_res[5], last_updated + $time = time(); + + //make resources entry + $sql = "INSERT INTO resources + VALUES(default, '$id', + default, default, default, default, default, + default, default, default, default, default, + default, default, default, default, default, + default, default, default, default, default, + default, default, default, default, default, + '$time')"; + + $this->db->query($sql); + + $found = FALSE; + + while(!$found) + { + //get a map coordinates + //we should get 20x20 field + //ids start with 1, max is 240 + $x_m_s = rand(1, 220); + $y_m_s = rand(1, 220); + + $sql = "SELECT * FROM map + WHERE (X >= '$x_m_s' AND X <= '" . ($x_m_s + 20) . "') + AND (Y >= '$y_m_s' AND Y <= '" . ($y_m_s + 20) . "')"; + + $q = $this->db->query($sql); + + $res = $q->result_array(); + + foreach ($res as $row) + { + if ($row['type'] == 0) + { + $found = TRUE; + + $sql = "UPDATE map SET type='3', villageid='$id' WHERE id='" . $row['id'] . "'"; + + $this->db->query($sql); + break; + } + } + + } + } + + //slotids range from 1 to parent::TOTAL_BUILDINGS! + //slot 0 can be used for a wall or something + function get_buildings($vid) + { + //tODO Empty slots + + //TODO query, get building info for empty spaces, and thats going to be pushed into empty + //speces + + $sql = "SELECT * FROM buildings WHERE id='1'"; + $q = $this->db->query($sql); + $space = $q->row_array(); + + //this needs left join + $sql = "SELECT * FROM village_buildings + INNER JOIN buildings ON village_buildings.buildingid=buildings.id + WHERE villageid='$vid' ORDER BY slotid ASC"; + $q = $this->db->query($sql); + $res = $q->result_array(); + + $new = FALSE; + $j = 0; + + for ($i = 1; $i <= parent::TOTAL_BUILDINGS;$i++) + { + if (isset($res[$j])) + { + if ($res[$j]['slotid'] == $i) + { + $data[] = $res[$j]; + $j++; + } + else + { + $new = TRUE; + } + } + else + { + $new = TRUE; + } + + if ($new) + { + $data[] = $space; + $new = FALSE; + } + } + + return $data; + } +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/models/weather_model.php b/Mourne-CI/application/models/weather_model.php new file mode 100755 index 0000000..52d2e79 --- /dev/null +++ b/Mourne-CI/application/models/weather_model.php @@ -0,0 +1,101 @@ +db->query($sql); + + $res = $q->result_array(); + + $data[] = 'Nothing'; + + foreach ($res as $row) + { + $data[] = $row['name']; + } + + return $data; + } + + function get_weather_effects_drop_admin() + { + $data[0] = 'No Effect'; + $data[1] = 'Fires'; + + return $data; + } + + function list_weathers_admin() + { + $sql = "SELECT * FROM weathers"; + $q = $this->db->query($sql); + + return $q->result_array(); + } + + function get_weather_admin($id) + { + $sql = "SELECT * FROM weathers WHERE id='$id'"; + $q = $this->db->query($sql); + + return $q->row_array(); + } + + function edit_weather_admin($data) + { + + $sql = "UPDATE weathers + SET name='" . $data['name'] . "', + description='" . $data['description'] . "', + art='" . $data['art'] . "', + css='" . $data['css'] . "', + effect='" . $data['effect'] . "', + mod_max_food='" . $data['mod_max_food'] . "', + mod_max_wood='" . $data['mod_max_wood'] . "', + mod_max_stone='" . $data['mod_max_stone'] . "', + mod_max_iron='" . $data['mod_max_iron'] . "', + mod_max_mana='" . $data['mod_max_mana'] . "', + mod_percent_food='" . $data['mod_percent_food'] . "', + mod_percent_wood='" . $data['mod_percent_wood'] . "', + mod_percent_stone='" . $data['mod_percent_stone'] . "', + mod_percent_iron='" . $data['mod_percent_iron'] . "', + mod_percent_mana='" . $data['mod_percent_mana'] . "' + WHERE id='" . $data['id'] . "'"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + + function add_weather_admin($data) + { + $sql = "INSERT INTO weathers VALUES(default, + '" . $data['name'] . "', + '" . $data['description'] . "', + '" . $data['art'] . "', + '" . $data['css'] . "', + '" . $data['effect'] . "', + '" . $data['mod_max_food'] . "', + '" . $data['mod_max_wood'] . "', + '" . $data['mod_max_stone'] . "', + '" . $data['mod_max_iron'] . "', + '" . $data['mod_max_mana'] . "', + '" . $data['mod_percent_food'] . "', + '" . $data['mod_percent_wood'] . "', + '" . $data['mod_percent_stone'] . "', + '" . $data['mod_percent_iron'] . "', + '" . $data['mod_percent_mana'] . "')"; + + $this->db->query($sql); + + $this->_create_sql($sql); + } + +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/views/admin/ai_settings_tool/list.php b/Mourne-CI/application/views/admin/ai_settings_tool/list.php new file mode 100755 index 0000000..62fca0f --- /dev/null +++ b/Mourne-CI/application/views/admin/ai_settings_tool/list.php @@ -0,0 +1,42 @@ +load->helper('url'); + +$link_new = 'admin/ai_settings'; +$link_edit = 'admin/ai_settings/'; + +$link_back = 'admin/admin_panel'; +?> +
+ <--- Back +
+
+ Create New +
+
+ + + + +
+ +
+ +
+ [] +
+
+ = +
+
+ +
+
+ () +
+
+ Edit +
+
+ + +
\ No newline at end of file diff --git a/Mourne-CI/application/views/admin/ai_settings_tool/settings.php b/Mourne-CI/application/views/admin/ai_settings_tool/settings.php new file mode 100755 index 0000000..a054001 --- /dev/null +++ b/Mourne-CI/application/views/admin/ai_settings_tool/settings.php @@ -0,0 +1,88 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_back = 'admin/ai_settings_tool'; + +$attr_description = array( + 'name' => 'description', + 'rows' => '5', + 'cols' => '50', + 'class' => 'textarea'); + +$attr_setting = array( + 'name' => 'setting', + 'class' => 'input'); + +$attr_value = array( + 'name' => 'value', + 'class' => 'input'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'submit'); + +if ($new) +{ + //set every value with set_value() + $link_form = 'admin/ai_settings'; + + $attr_setting['value'] = set_value('setting'); + $attr_value['value'] = set_value('value'); + $attr_description['value'] = set_value('description'); +} +else +{ + //set every value from data sent + $link_form = 'admin/ai_settings/' . $setting['id']; + + $attr_setting['value'] = $setting['setting']; + $attr_value['value'] = $setting['value']; + $attr_description['value'] = $setting['description']; +} +?> + +
+ + Creating! + + Editing! + +
+ + + +
+
+Description: +
+
+ +
+
+ +
+
+Setting: +
+
+ +
+
+ +
+
+Value: +
+
+ +
+
+ +
+ +
+ diff --git a/Mourne-CI/application/views/admin/ai_unit_tool/list.php b/Mourne-CI/application/views/admin/ai_unit_tool/list.php new file mode 100755 index 0000000..f77ef6a --- /dev/null +++ b/Mourne-CI/application/views/admin/ai_unit_tool/list.php @@ -0,0 +1,35 @@ +load->helper('url'); + +$link_edit = 'admin/ai_unit/'; +$link_new = 'admin/ai_unit'; +$link_back = 'admin/admin_panel'; +?> + + +
+ + + + +
+ +
+ +
+ [] +
+
+ +
+
+ Edit +
+
+ + +
diff --git a/Mourne-CI/application/views/admin/ai_unit_tool/unit.php b/Mourne-CI/application/views/admin/ai_unit_tool/unit.php new file mode 100755 index 0000000..cd9a01a --- /dev/null +++ b/Mourne-CI/application/views/admin/ai_unit_tool/unit.php @@ -0,0 +1,211 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_back = 'admin/ai_unit_tool'; + +$attr_drop = 'class="drop"'; + +$attr_name = array( + 'name' => 'name', + 'class' => 'input'); + +$attr_icon = array( + 'name' => 'icon', + 'class' => 'input'); + +$attr_ability = array( + 'name' => 'ability', + 'class' => 'input'); + +$attr_can_carry = array( + 'name' => 'can_carry', + 'class' => 'input'); + +$attr_attack = array( + 'name' => 'attack', + 'class' => 'input'); + +$attr_defense = array( + 'name' => 'defense', + 'class' => 'input'); + +$attr_rate = array( + 'name' => 'rate', + 'class' => 'input'); + +$attr_per_score = array( + 'name' => 'per_score', + 'class' => 'input'); + +$attr_turn = array( + 'name' => 'turn', + 'class' => 'input'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'submit'); + +if ($new) +{ + //set every value with set_value() + $link_form = 'admin/ai_unit'; + + $attr_name['value'] = set_value('name'); + $attr_icon['value'] = set_value('icon'); + $attr_ability['value'] = set_value('ability'); + + $attr_can_carry['value'] = set_value('can_carry'); + $attr_attack['value'] = set_value('attack'); + $attr_defense['value'] = set_value('defense'); + $attr_rate['value'] = set_value('rate'); + $attr_per_score['value'] = set_value('per_score'); + $attr_turn['value'] = set_value('turn'); +} +else +{ + //set every value from data sent + $link_form = 'admin/ai_unit/' . $unit['id']; + + $attr_name['value'] = $unit['name']; + $attr_icon['value'] = $unit['icon']; + $attr_ability['value'] = $unit['ability']; + $attr_can_carry['value'] = $unit['can_carry']; + + $attr_attack['value'] = $unit['attack']; + $attr_defense['value'] = $unit['defense']; + $attr_rate['value'] = $unit['rate']; + $attr_per_score['value'] = $unit['per_score']; + $attr_turn['value'] = $unit['turn']; + + $sstrong = $unit['strong_against']; + $sweak = $unit['weak_against']; +} +?> + +
+ + Creating! + + Editing! + +
+ + + +
+
+Name: +
+
+ +
+
+ +
+
+Icon: +
+
+ +
+
+ +
+ +
+
+Ability: +
+
+ +
+
+ +
+ +
+
+Can Carry: +
+
+ +
+
+ +
+
+Attack: +
+
+ +
+
+ +
+
+Defense: +
+
+ +
+
+ +
+ +
+
+Rate: +
+
+ +
+
+ +
+
+Per Score: +
+
+ +
+
+ +
+
+Turn: +
+
+ +
+
+ +
+ +
+
+Strong Against: +
+
+ +
+
+ +
+ +
+
+Weak Against: +
+
+ +
+
+ +
+ +
+ diff --git a/Mourne-CI/application/views/admin/assignment_tool/assignment.php b/Mourne-CI/application/views/admin/assignment_tool/assignment.php new file mode 100755 index 0000000..9ad51c4 --- /dev/null +++ b/Mourne-CI/application/views/admin/assignment_tool/assignment.php @@ -0,0 +1,374 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_back = 'admin/assignment_tool'; + +$name_unit = 'unitid'; +$attr_unit = 'class="drop"'; + +$attr_max = array( + 'name' => 'max', + 'class' => 'input'); + +$attr_bonus_per_assigned = array( + 'name' => 'bonus_per_assigned', + 'class' => 'input'); + +$name_spellid = 'spellid'; +$attr_spellid = 'class="drop"'; + +$name_req_tech = 'req_tech'; +$attr_req_tech = 'class="drop"'; + +$attr_mod_max_food = array( + 'name' => 'mod_max_food', + 'class' => 'input'); + +$attr_mod_max_wood = array( + 'name' => 'mod_max_wood', + 'class' => 'input'); + +$attr_mod_max_stone = array( + 'name' => 'mod_max_stone', + 'class' => 'input'); + +$attr_mod_max_iron = array( + 'name' => 'mod_max_iron', + 'class' => 'input'); + +$attr_mod_max_mana = array( + 'name' => 'mod_max_mana', + 'class' => 'input'); + +$attr_mod_rate_food = array( + 'name' => 'mod_rate_food', + 'class' => 'input'); + +$attr_mod_rate_wood = array( + 'name' => 'mod_rate_wood', + 'class' => 'input'); + +$attr_mod_rate_stone = array( + 'name' => 'mod_rate_stone', + 'class' => 'input'); + +$attr_mod_rate_iron = array( + 'name' => 'mod_rate_iron', + 'class' => 'input'); + +$attr_mod_rate_mana = array( + 'name' => 'mod_rate_mana', + 'class' => 'input'); + +$attr_mod_percent_food = array( + 'name' => 'mod_percent_food', + 'class' => 'input'); + +$attr_mod_percent_wood = array( + 'name' => 'mod_percent_wood', + 'class' => 'input'); + +$attr_mod_percent_stone = array( + 'name' => 'mod_percent_stone', + 'class' => 'input'); + +$attr_mod_percent_iron = array( + 'name' => 'mod_percent_iron', + 'class' => 'input'); + +$attr_mod_percent_mana = array( + 'name' => 'mod_percent_mana', + 'class' => 'input'); + +$attr_description = array( + 'name' => 'description', + 'rows' => '5', + 'cols' => '50', + 'class' => 'textarea'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'submit'); + +if ($new) +{ + //set every value with set_value() + $link_form = 'admin/assignment'; + //unitid goes from controller + $attr_max['value'] = set_value('max'); + $attr_bonus_per_assigned['value'] = set_value('bonus_per_assigned'); + + $attr_mod_max_food['value'] = set_value('mod_max_food'); + $attr_mod_max_wood['value'] = set_value('mod_max_wood'); + $attr_mod_max_stone['value'] = set_value('mod_max_stone'); + $attr_mod_max_iron['value'] = set_value('mod_max_iron'); + $attr_mod_max_mana['value'] = set_value('mod_max_mana'); + + $attr_mod_rate_food['value'] = set_value('mod_rate_food'); + $attr_mod_rate_wood['value'] = set_value('mod_rate_wood'); + $attr_mod_rate_stone['value'] = set_value('mod_rate_stone'); + $attr_mod_rate_iron['value'] = set_value('mod_rate_iron'); + $attr_mod_rate_mana['value'] = set_value('mod_rate_mana'); + + $attr_mod_percent_food['value'] = set_value('mod_percent_food'); + $attr_mod_percent_wood['value'] = set_value('mod_percent_wood'); + $attr_mod_percent_stone['value'] = set_value('mod_percent_stone'); + $attr_mod_percent_iron['value'] = set_value('mod_percent_iron'); + $attr_mod_percent_mana['value'] = set_value('mod_percent_mana'); + + $attr_description['value'] = set_value('description'); + +} +else +{ + //set every value from data sent + $link_form = 'admin/assignment/' . $assignment['id']; + + //I have no idea why a simple = wouldn't work + $dassign = $assignment['unitid']; + $sassign = $dassign; + + $attr_max['value'] = $assignment['max']; + $attr_bonus_per_assigned['value'] = $assignment['bonus_per_assigned']; + + $ssp = $assignment['spellid']; + + $srtech = $assignment['req_tech']; + + $attr_mod_max_food['value'] = $assignment['mod_max_food']; + $attr_mod_max_wood['value'] = $assignment['mod_max_wood']; + $attr_mod_max_stone['value'] = $assignment['mod_max_stone']; + $attr_mod_max_iron['value'] = $assignment['mod_max_iron']; + $attr_mod_max_mana['value'] = $assignment['mod_max_mana']; + + $attr_mod_rate_food['value'] = $assignment['mod_rate_food']; + $attr_mod_rate_wood['value'] = $assignment['mod_rate_wood']; + $attr_mod_rate_stone['value'] = $assignment['mod_rate_stone']; + $attr_mod_rate_iron['value'] = $assignment['mod_rate_iron']; + $attr_mod_rate_mana['value'] = $assignment['mod_rate_mana']; + + $attr_mod_percent_food['value'] = $assignment['mod_percent_food']; + $attr_mod_percent_wood['value'] = $assignment['mod_percent_wood']; + $attr_mod_percent_stone['value'] = $assignment['mod_percent_stone']; + $attr_mod_percent_iron['value'] = $assignment['mod_percent_iron']; + $attr_mod_percent_mana['value'] = $assignment['mod_percent_mana']; + + $attr_description['value'] = $assignment['description']; +} +?> + +
+ + Creating! + + Editing! + +
+ + + +
+
+Unit: +
+
+ +
+
+ +
+
+Max: +
+
+ +
+
+ +
+
+Bonus per Assigned: +
+
+ +
+
+ +
+
+Spell: +
+
+ +
+
+ +
+
+Required Technology: +
+
+ +
+
+ +
+ +
+
+Mod Max Food: +
+
+ +
+
+ +
+
+Mod Max Wood: +
+
+ +
+
+ +
+
+Mod Max Stone: +
+
+ +
+
+ +
+
+Mod Max Iron: +
+
+ +
+
+ +
+
+Mod Max Mana: +
+
+ +
+
+ +
+ +
+
+Mod Rate Food: +
+
+ +
+
+ +
+
+Mod Rate Wood: +
+
+ +
+
+ +
+
+Mod Rate Stone: +
+
+ +
+
+ +
+
+Mod Rate Iron: +
+
+ +
+
+ +
+
+Mod Rate Mana: +
+
+ +
+
+ +
+ +
+
+Mod Percent Food: +
+
+ +
+
+ +
+
+Mod Percent Wood: +
+
+ +
+
+ +
+
+Mod Percent Stone: +
+
+ +
+
+ +
+
+Mod Percent Iron: +
+
+ +
+
+ +
+
+Mod Percent Mana: +
+
+ +
+
+ +
+ +
+
+Description: +
+
+ +
+
+ +
+ +
+ diff --git a/Mourne-CI/application/views/admin/assignment_tool/list.php b/Mourne-CI/application/views/admin/assignment_tool/list.php new file mode 100755 index 0000000..ea5296d --- /dev/null +++ b/Mourne-CI/application/views/admin/assignment_tool/list.php @@ -0,0 +1,41 @@ +load->helper('url'); + +$link_edit = 'admin/assignment/'; +$link_new = 'admin/assignment'; +$link_back = 'admin/admin_panel'; +?> + + +
+ + + + +
+ +
+ +
+ [] +
+
+ [U: ] +
+
+ [M: ] +
+
+ +
+
+ Edit +
+
+ + +
\ No newline at end of file diff --git a/Mourne-CI/application/views/admin/building_tool/building.php b/Mourne-CI/application/views/admin/building_tool/building.php new file mode 100755 index 0000000..d0e7e59 --- /dev/null +++ b/Mourne-CI/application/views/admin/building_tool/building.php @@ -0,0 +1,635 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_back = 'admin/building_tool'; + +$attr_drop = 'class="drop"'; + +$attr_name = array( + 'name' => 'name', + 'class' => 'input'); + +$attr_description = array( + 'name' => 'description', + 'rows' => '5', + 'cols' => '50', + 'class' => 'textarea'); + +$attr_icon = array( + 'name' => 'icon', + 'class' => 'input'); + +$attr_rank = array( + 'name' => 'rank', + 'class' => 'input'); + + +$name_next_rank = 'next_rank'; +$attr_next_rank = 'class="drop"'; + +$attr_time_to_build = array( + 'name' => 'time_to_build', + 'class' => 'input'); + +$name_creates = 'creates'; +$attr_creates = 'class="drop"'; + +$attr_num_creates = array( + 'name' => 'num_creates', + 'class' => 'input'); + +$attr_score = array( + 'name' => 'score', + 'class' => 'input'); + +$attr_defense = array( + 'name' => 'defense', + 'class' => 'input'); + +$opt_ability = array( + '0' => 'Nothing', + '1' => "Enemy can't steal resources"); + +$attr_cost_food = array( + 'name' => 'cost_food', + 'class' => 'input'); + +$attr_cost_wood = array( + 'name' => 'cost_wood', + 'class' => 'input'); + +$attr_cost_stone = array( + 'name' => 'cost_stone', + 'class' => 'input'); + +$attr_cost_iron = array( + 'name' => 'cost_iron', + 'class' => 'input'); + +$attr_cost_mana = array( + 'name' => 'cost_mana', + 'class' => 'input'); + +$attr_mod_max_food = array( + 'name' => 'mod_max_food', + 'class' => 'input'); + +$attr_mod_max_wood = array( + 'name' => 'mod_max_wood', + 'class' => 'input'); + +$attr_mod_max_stone = array( + 'name' => 'mod_max_stone', + 'class' => 'input'); + +$attr_mod_max_iron = array( + 'name' => 'mod_max_iron', + 'class' => 'input'); + +$attr_mod_max_mana = array( + 'name' => 'mod_max_mana', + 'class' => 'input'); + + +$attr_mod_rate_food = array( + 'name' => 'mod_rate_food', + 'class' => 'input'); + +$attr_mod_rate_wood = array( + 'name' => 'mod_rate_wood', + 'class' => 'input'); + +$attr_mod_rate_stone = array( + 'name' => 'mod_rate_stone', + 'class' => 'input'); + +$attr_mod_rate_iron = array( + 'name' => 'mod_rate_iron', + 'class' => 'input'); + +$attr_mod_rate_mana = array( + 'name' => 'mod_rate_mana', + 'class' => 'input'); + +$attr_mod_percent_food = array( + 'name' => 'mod_percent_food', + 'class' => 'input'); + +$attr_mod_percent_wood = array( + 'name' => 'mod_percent_wood', + 'class' => 'input'); + +$attr_mod_percent_stone = array( + 'name' => 'mod_percent_stone', + 'class' => 'input'); + +$attr_mod_percent_iron = array( + 'name' => 'mod_percent_iron', + 'class' => 'input'); + +$attr_mod_percent_mana = array( + 'name' => 'mod_percent_mana', + 'class' => 'input'); + +$name_assign1 = 'assign1'; +$name_assign2 = 'assign2'; +$name_assign3 = 'assign3'; +$name_assign4 = 'assign4'; +$name_assign5 = 'assign5'; + +$attr_assign = 'class="drop"'; + +$name_req_tech = 'req_tech'; +$attr_req_tech = 'class="drop"'; + +$name_tech_group = 'tech_group'; +$attr_tech_group = 'class="drop"'; + +$name_tech_secondary_group = 'tech_secondary_group'; +$attr_tech_secondary_group = 'class="drop"'; + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'submit'); + +if ($new) +{ + //set every value with set_value() + $link_form = 'admin/building'; + $attr_name['value'] = set_value('name'); + $attr_description['value'] = set_value('description'); + $attr_icon['value'] = set_value('icon'); + $attr_rank['value'] = set_value('rank'); + //next rank goes from controller + $attr_time_to_build['value'] = set_value('time_to_build'); + + $attr_num_creates['value'] = set_value('num_creates'); + + $attr_score['value'] = set_value('score'); + $attr_defense['value'] = set_value('defense'); + + $attr_cost_food['value'] = set_value('cost_food'); + $attr_cost_wood['value'] = set_value('cost_wood'); + $attr_cost_stone['value'] = set_value('cost_stone'); + $attr_cost_iron['value'] = set_value('cost_iron'); + $attr_cost_mana['value'] = set_value('cost_mana'); + + $attr_mod_max_food['value'] = set_value('mod_max_food'); + $attr_mod_max_wood['value'] = set_value('mod_max_wood'); + $attr_mod_max_stone['value'] = set_value('mod_max_stone'); + $attr_mod_max_iron['value'] = set_value('mod_max_iron'); + $attr_mod_max_mana['value'] = set_value('mod_max_mana'); + + $attr_mod_rate_food['value'] = set_value('mod_rate_food'); + $attr_mod_rate_wood['value'] = set_value('mod_rate_wood'); + $attr_mod_rate_stone['value'] = set_value('mod_rate_stone'); + $attr_mod_rate_iron['value'] = set_value('mod_rate_iron'); + $attr_mod_rate_mana['value'] = set_value('mod_rate_mana'); + + $attr_mod_percent_food['value'] = set_value('mod_percent_food'); + $attr_mod_percent_wood['value'] = set_value('mod_percent_wood'); + $attr_mod_percent_stone['value'] = set_value('mod_percent_stone'); + $attr_mod_percent_iron['value'] = set_value('mod_percent_iron'); + $attr_mod_percent_mana['value'] = set_value('mod_percent_mana'); +} +else +{ + //set every value from data sent + $link_form = 'admin/building/' . $building['id']; + $attr_name['value'] = $building['name']; + $attr_description['value'] = $building['description']; + $attr_icon['value'] = $building['icon']; + $attr_rank['value'] = $building['rank']; + $nextr = $building['next_rank']; + $attr_time_to_build['value'] = $building['time_to_build']; + + $screate = $building['creates']; + $attr_num_creates['value'] = $building['num_creates']; + + $attr_score['value'] = $building['score']; + $attr_defense['value'] = $building['defense']; + + $sability = $building['ability']; + + $attr_cost_food['value'] = $building['cost_food']; + $attr_cost_wood['value'] = $building['cost_wood']; + $attr_cost_stone['value'] = $building['cost_stone']; + $attr_cost_iron['value'] = $building['cost_iron']; + $attr_cost_mana['value'] = $building['cost_mana']; + + $attr_mod_max_food['value'] = $building['mod_max_food']; + $attr_mod_max_wood['value'] = $building['mod_max_wood']; + $attr_mod_max_stone['value'] = $building['mod_max_stone']; + $attr_mod_max_iron['value'] = $building['mod_max_iron']; + $attr_mod_max_mana['value'] = $building['mod_max_mana']; + + $attr_mod_rate_food['value'] = $building['mod_rate_food']; + $attr_mod_rate_wood['value'] = $building['mod_rate_wood']; + $attr_mod_rate_stone['value'] = $building['mod_rate_stone']; + $attr_mod_rate_iron['value'] = $building['mod_rate_iron']; + $attr_mod_rate_mana['value'] = $building['mod_rate_mana']; + + $attr_mod_percent_food['value'] = $building['mod_percent_food']; + $attr_mod_percent_wood['value'] = $building['mod_percent_wood']; + $attr_mod_percent_stone['value'] = $building['mod_percent_stone']; + $attr_mod_percent_iron['value'] = $building['mod_percent_iron']; + $attr_mod_percent_mana['value'] = $building['mod_percent_mana']; + + $assign1 = $building['assignment1']; + $assign2 = $building['assignment2']; + $assign3 = $building['assignment3']; + $assign4 = $building['assignment4']; + $assign5 = $building['assignment5']; + + $selreqtech = $building['req_tech']; + + $seltechgroup = $building['tech_group']; + $seltechsecgroup = $building['tech_secondary_group']; +} +?> + +
+ + Creating! + + Editing! + +
+ +
+ + +
+
+Name: +
+
+ +
+
+ +
+
+Description: +
+
+ +
+
+ +
+
+Icon: +
+
+ +
+
+ +
+
+Rank: +
+
+ +
+
+ +
+
+Next Rank: +
+
+ +
+
+ +
+
+Time to Build: +
+
+ +
+
+ +
+ +
+
+Score: +
+
+ +
+
+ +
+
+Defense: +
+
+ +
+
+ +
+
+Ability: +
+
+ +
+
+ + +
+ +
+
+Cost Food: +
+
+ +
+
+ +
+
+Cost Wood: +
+
+ +
+
+ +
+
+Cost Stone: +
+
+ +
+
+ +
+
+Cost Iron: +
+
+ +
+
+ +
+
+Cost Mana: +
+
+ +
+
+ +
+ +
+
+Creates: +
+
+ +X (max) +
+
+ +
+ +
+
+Mod Max Food: +
+
+ +
+
+ +
+
+Mod Max Wood: +
+
+ +
+
+ +
+
+Mos Max Stone: +
+
+ +
+
+ +
+
+Mod Max Iron: +
+
+ +
+
+ +
+
+Mod Max Mana: +
+
+ +
+
+ +
+ +
+
+Mod Rate Food: +
+
+ +
+
+ +
+
+Mod rate Wood: +
+
+ +
+
+ +
+
+Mod Rate Stone: +
+
+ +
+
+ +
+
+Mod Rate Iron: +
+
+ +
+
+ +
+
+Mod Rate Mana: +
+
+ +
+
+ +
+ +
+
+Mod Percent Food: +
+
+ +
+
+ +
+
+Mod Percent Wood: +
+
+ +
+
+ +
+
+Mod Percent Stone: +
+
+ +
+
+ +
+
+Mod Percent Iron: +
+
+ +
+
+ +
+
+Mod Percent Mana: +
+
+ +
+
+ +
+ +
+
+Assignment 1: +
+
+ +
+
+ +
+
+Assignment 2: +
+
+ +
+
+ +
+
+Assignment 3: +
+
+ +
+
+ +
+
+Assignment 4: +
+
+ +
+
+ +
+
+Assignment 5: +
+
+ +
+
+ +
+ +
+
+Required Technology: +
+
+ +
+
+ +
+ +
+
+Technology Group: +
+
+ +
+
+ +
+ +
+
+Secondary Technology Group: +
+
+ +
+
+ +
+ +
+ +
\ No newline at end of file diff --git a/Mourne-CI/application/views/admin/building_tool/list.php b/Mourne-CI/application/views/admin/building_tool/list.php new file mode 100755 index 0000000..e9c3d34 --- /dev/null +++ b/Mourne-CI/application/views/admin/building_tool/list.php @@ -0,0 +1,41 @@ +load->helper('url'); + +$link_edit = 'admin/building/'; +$link_new = 'admin/building'; +$link_back = 'admin/admin_panel'; +?> + + +
+ + + + +
+ +
+ +
+ [] +
+
+ [Rank: ] +
+
+ [N Rank: ] +
+
+ +
+
+ Edit +
+
+ + +
diff --git a/Mourne-CI/application/views/admin/hero_inventory_template_tool/items.php b/Mourne-CI/application/views/admin/hero_inventory_template_tool/items.php new file mode 100755 index 0000000..8e50df4 --- /dev/null +++ b/Mourne-CI/application/views/admin/hero_inventory_template_tool/items.php @@ -0,0 +1,58 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_form = 'admin/hero_inventory_templates/' . $id; + +$link_back = 'admin/hero_inventory_template_tool'; + +$name_add_drop = 'add'; +$attr_add_drop = 'class="drop"'; + +$attr_add = array( + 'name' => 'submit', + 'value' => 'Add!', + 'class' => 'submit'); + +$attr_delete = array( + 'name' => 'submit', + 'value' => 'Delete!', + 'class' => 'submit'); +?> + + +
+ Editing: [] +
+ + + + + + +
+
+ [] +
+
+ +
+
+ + + + + + +
+
+ Add: +
+
+ + +
+
+ \ No newline at end of file diff --git a/Mourne-CI/application/views/admin/hero_inventory_template_tool/list.php b/Mourne-CI/application/views/admin/hero_inventory_template_tool/list.php new file mode 100755 index 0000000..8270252 --- /dev/null +++ b/Mourne-CI/application/views/admin/hero_inventory_template_tool/list.php @@ -0,0 +1,32 @@ +load->helper('url'); + +$link_edit = 'admin/hero_inventory_templates/'; + +$link_back = 'admin/admin_panel'; +?> + +
+ + + + +
+ +
+ +
+ [] +
+
+ +
+ +
+ + +
\ No newline at end of file diff --git a/Mourne-CI/application/views/admin/hero_template_tool/hero.php b/Mourne-CI/application/views/admin/hero_template_tool/hero.php new file mode 100755 index 0000000..99398dd --- /dev/null +++ b/Mourne-CI/application/views/admin/hero_template_tool/hero.php @@ -0,0 +1,500 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_back = 'admin/hero_template_tool'; + +$attr_drop = 'class="drop"'; + +$attr_classname = array( + 'name' => 'classname', + 'class' => 'input'); + +$attr_nomod_max_health = array( + 'name' => 'nomod_max_health', + 'class' => 'input'); + +$attr_nomod_max_mana = array( + 'name' => 'nomod_max_mana', + 'class' => 'input'); + +$attr_agility = array( + 'name' => 'agility', + 'class' => 'input'); + +$attr_strength = array( + 'name' => 'strength', + 'class' => 'input'); + +$attr_stamina = array( + 'name' => 'stamina', + 'class' => 'input'); + +$attr_intellect = array( + 'name' => 'intellect', + 'class' => 'input'); + +$attr_spirit = array( + 'name' => 'spirit', + 'class' => 'input'); + +$attr_nomod_attackpower = array( + 'name' => 'nomod_attackpower', + 'class' => 'input'); + +$attr_nomod_dodge = array( + 'name' => 'nomod_dodge', + 'class' => 'input'); + +$attr_nomod_parry = array( + 'name' => 'nomod_parry', + 'class' => 'input'); + +$attr_hit = array( + 'name' => 'hit', + 'class' => 'input'); + +$attr_nomod_crit = array( + 'name' => 'nomod_crit', + 'class' => 'input'); + +$attr_nomod_damage_min = array( + 'name' => 'nomod_damage_min', + 'class' => 'input'); + +$attr_nomod_damage_max = array( + 'name' => 'nomod_damage_max', + 'class' => 'input'); + +$attr_nomod_ranged_damage_min = array( + 'name' => 'nomod_ranged_damage_min', + 'class' => 'input'); + +$attr_nomod_ranged_damage_max = array( + 'name' => 'nomod_ranged_damage_max', + 'class' => 'input'); + + +$attr_nomod_heal_min = array( + 'name' => 'nomod_heal_min', + 'class' => 'input'); + +$attr_nomod_heal_max = array( + 'name' => 'nomod_heal_max', + 'class' => 'input'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'submit'); + +if ($new) +{ + //set every value with set_value() + $link_form = 'admin/hero_templates'; + + //template effect goes from controller + $attr_classname['value'] = set_value('classname'); + + $attr_nomod_max_health['value'] = set_value('nomod_max_health'); + $attr_nomod_max_mana['value'] = set_value('nomod_max_mana'); + + $attr_agility['value'] = set_value('agility'); + $attr_strength['value'] = set_value('strength'); + $attr_stamina['value'] = set_value('stamina'); + $attr_intellect['value'] = set_value('intellect'); + $attr_spirit['value'] = set_value('spirit'); + + $attr_nomod_attackpower['value'] = set_value('nomod_attackpower'); + + $attr_nomod_dodge['value'] = set_value('nomod_dodge'); + $attr_nomod_parry['value'] = set_value('nomod_parry'); + $attr_hit['value'] = set_value('hit'); + $attr_nomod_crit['value'] = set_value('nomod_crit'); + + $attr_nomod_damage_min['value'] = set_value('nomod_damage_min'); + $attr_nomod_damage_max['value'] = set_value('nomod_damage_max'); + + $attr_nomod_ranged_damage_min['value'] = set_value('nomod_ranged_damage_min'); + $attr_nomod_ranged_damage_max['value'] = set_value('nomod_ranged_damage_max'); + + $attr_nomod_heal_min['value'] = set_value('nomod_heal_min'); + $attr_nomod_heal_max['value'] = set_value('nomod_heal_max'); +} +else +{ + //set every value from data sent + $link_form = 'admin/hero_templates/' . $template['id']; + + $attr_classname['value'] = $template['classname']; + + $attr_nomod_max_health['value'] = $template['nomod_max_health']; + $attr_nomod_max_mana['value'] = $template['nomod_max_mana']; + + $attr_agility['value'] = $template['agility']; + $attr_strength['value'] = $template['strength']; + $attr_stamina['value'] = $template['stamina']; + $attr_intellect['value'] = $template['intellect']; + $attr_spirit['value'] = $template['spirit']; + + $attr_nomod_attackpower['value'] = $template['nomod_attackpower']; + + $attr_nomod_dodge['value'] = $template['nomod_dodge']; + $attr_nomod_parry['value'] = $template['nomod_parry']; + $attr_hit['value'] = $template['hit']; + $attr_nomod_crit['value'] = $template['nomod_crit']; + + $attr_nomod_damage_min['value'] = $template['nomod_damage_min']; + $attr_nomod_damage_max['value'] = $template['nomod_damage_max']; + + $attr_nomod_ranged_damage_min['value'] = $template['nomod_ranged_damage_min']; + $attr_nomod_ranged_damage_max['value'] = $template['nomod_ranged_damage_max']; + + $attr_nomod_heal_min['value'] = $template['nomod_heal_min']; + $attr_nomod_heal_max['value'] = $template['nomod_heal_max']; +} +?> + +
+ + Creating! + + Editing! + +
+ + + +
+
+Class: +
+
+ +
+
+ +
+ +
+
+Nomod Health: +
+
+ +
+
+ +
+
+Nomod Mana: +
+
+ +
+
+ +
+ +
+
+Agility: +
+
+ +
+
+ +
+
+Strength: +
+
+ +
+
+ +
+
+Stamina: +
+
+ +
+
+ +
+
+Intellect: +
+
+ +
+
+ +
+
+Spirit: +
+
+ +
+
+ +
+ +
+
+Nomod Attackpower: +
+
+ +
+
+ +
+ +
+
+Nomod Dodge: +
+
+ +
+
+ +
+
+Nomod Parry: +
+
+ +
+
+ +
+
+Hit: +
+
+ +
+
+ +
+
+Nomod Crit: +
+
+ +
+
+ +
+ +
+
+Nomod Damage Min: +
+
+ +
+
+ +
+
+Nomod Damage Max: +
+
+ +
+
+ +
+ +
+
+Nomod Ranged Damage Min: +
+
+ +
+
+ +
+
+Nomod Ranged Damage Max: +
+
+ +
+
+ +
+ +
+
+Nomod Heal Min: +
+
+ +
+
+ +
+
+Nomod Heal Max: +
+
+ +
+
+ + +
+ +
+
+Calculated Values: +
+
+ +
+ +
+
+Max Health: +
+
+ +
+
+ +
+
+Max Mana: +
+
+ +
+
+ +
+ +
+
+Attackpower: +
+
+ +
+
+ +
+ +
+
+Crit: +
+
+ +
+
+ +
+
+Parry: +
+
+ +
+
+ +
+
+Dodge: +
+
+ +
+
+ +
+ +
+
+Armor: +
+
+ +
+
+ +
+ +
+
+Damage Min: +
+
+ +
+
+ +
+
+Damage Max: +
+
+ +
+
+ +
+ +
+
+Ranged Damage Min: +
+
+ +
+
+ +
+
+Ranged Damage Max: +
+
+ +
+
+ +
+ +
+
+Heal Min: +
+
+ +
+
+ +
+
+Heal Max: +
+
+ +
+
+ + + +
+ +
+ diff --git a/Mourne-CI/application/views/admin/hero_template_tool/list.php b/Mourne-CI/application/views/admin/hero_template_tool/list.php new file mode 100755 index 0000000..de54e6d --- /dev/null +++ b/Mourne-CI/application/views/admin/hero_template_tool/list.php @@ -0,0 +1,39 @@ +load->helper('url'); + +$link_edit = 'admin/hero_templates/'; +$link_new = 'admin/hero_templates'; + +$link_back = 'admin/admin_panel'; +?> + + +
+ + + + + +
+ +
+ +
+ [] +
+
+ Class: +
+
+ Edit +
+ +
+ + + +
\ No newline at end of file diff --git a/Mourne-CI/application/views/admin/image_tool/menu_image.php b/Mourne-CI/application/views/admin/image_tool/menu_image.php new file mode 100755 index 0000000..8dc5e2d --- /dev/null +++ b/Mourne-CI/application/views/admin/image_tool/menu_image.php @@ -0,0 +1,209 @@ +load->helper('form'); +$this->load->helper('url'); + +$link_back = 'admin/admin_panel'; +$link_form = 'admin/menu_image'; + +$attr_drop = 'class="drop"'; + +$name_font = 'font'; +$attr_font = 'class="drop"'; + +$attr_padding = array( + 'name' => 'padding', + 'value' => '0', + 'class' => 'input'); + +$attr_h_offset = array( + 'name' => 'h_offset', + 'value' => '0', + 'class' => 'input'); + +$attr_v_offset = array( + 'name' => 'v_offset', + 'value' => '0', + 'class' => 'input'); + +$attr_text = array( + 'name' => 'text', + 'class' => 'input'); + +$attr_font_size = array( + 'name' => 'font_size', + 'value' => '12', + 'class' => 'input'); + +$attr_font_color = array( + 'name' => 'font_color', + 'value' => 'ffffff', + 'class' => 'input'); + +$attr_shadow_color = array( + 'name' => 'shadow_color', + 'value' => 'ffffff', + 'class' => 'input'); + +$attr_shadow_distance = array( + 'name' => 'shadow_distance', + 'value' => '0', + 'class' => 'input'); + +$attr_apply_all = array( + 'name' => 'apply_all', + 'value' => '1', + 'checked' => 'TRUE'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'submit'); +?> + +
+ Menu Image Text Generator +
+ + +
+
+Source File: +
+
+ +
+
+ +
+Alignment: +
+ +
+
+Padding: +
+
+ +
+
+ +
+
+Vertical Alignment: +
+
+ +
+
+ +
+
+Horizontal Alignment: +
+
+ +
+
+ +
+
+Horizontal Offset: +
+
+ +
+
+ +
+
+Vertical Offset: +
+
+ +
+
+ +
+ Text: +
+ +
+
+Text: +
+
+ +
+
+ +
+
+Font: +
+
+ +
+
+ +
+
+Font Size: +
+
+ +
+
+ +
+
+Font Color: +
+
+ +
+
+ +
+
+Shadow Color: +
+
+ +
+
+ +
+
+Shadow Distance: +
+
+ +
+
+ +
+ +
+
+Apply to all menu images? (text field will be ignored) +
+
+ +
+
+ +
+
+Menu Group (only when Apply All is set): n +
+
+ +
+
+ +
+ +
+ diff --git a/Mourne-CI/application/views/admin/image_tool/menu_image_view.php b/Mourne-CI/application/views/admin/image_tool/menu_image_view.php new file mode 100755 index 0000000..4c09dbb --- /dev/null +++ b/Mourne-CI/application/views/admin/image_tool/menu_image_view.php @@ -0,0 +1,20 @@ +load->helper('url'); + +$link_back = 'admin/menu_image'; +?> + +
+Images generated: +
+ + + + + + + + + \ No newline at end of file diff --git a/Mourne-CI/application/views/admin/image_tool/slot_image.php b/Mourne-CI/application/views/admin/image_tool/slot_image.php new file mode 100755 index 0000000..0f45d65 --- /dev/null +++ b/Mourne-CI/application/views/admin/image_tool/slot_image.php @@ -0,0 +1,360 @@ +load->helper('form'); +$this->load->helper('url'); + +$link_back = 'admin/admin_panel'; +$link_form = 'admin/slot_image'; + +$attr_drop = 'class="drop"'; + +$name_font = 'font'; +$attr_font = 'class="drop"'; + +$opt_wm_type = array( + 'text' => 'Text', + 'overlay' => 'Overlay'); + +$attr_wm_opacity = array( + 'name' => 'wm_opacity', + 'value' => '1', + 'class' => 'input'); + +$attr_wm_x_transp = array( + 'name' => 'wm_x_transp', + 'value' => '1', + 'class' => 'input'); + +$attr_wm_y_transp = array( + 'name' => 'wm_y_transp', + 'value' => '1', + 'class' => 'input'); + +$attr_padding = array( + 'name' => 'padding', + 'value' => '0', + 'class' => 'input'); + +$attr_rank_padding = array( + 'name' => 'rank_padding', + 'value' => '0', + 'class' => 'input'); + +$attr_h_offset = array( + 'name' => 'h_offset', + 'value' => '-1', + 'class' => 'input'); + +$attr_v_offset = array( + 'name' => 'v_offset', + 'value' => '-5', + 'class' => 'input'); + +$attr_rank_h_offset = array( + 'name' => 'rank_h_offset', + 'value' => '0', + 'class' => 'input'); + +$attr_rank_v_offset = array( + 'name' => 'rank_v_offset', + 'value' => '0', + 'class' => 'input'); + +$attr_text = array( + 'name' => 'text', + 'class' => 'input'); + +$attr_rank_text = array( + 'name' => 'rank_text', + 'class' => 'input'); + +$attr_font_size = array( + 'name' => 'font_size', + 'value' => '5', + 'class' => 'input'); + +$attr_rank_font_size = array( + 'name' => 'rank_font_size', + 'value' => '8', + 'class' => 'input'); + +$attr_font_color = array( + 'name' => 'font_color', + 'value' => 'ffffff', + 'class' => 'input'); + +$attr_shadow_color = array( + 'name' => 'shadow_color', + 'value' => 'ffffff', + 'class' => 'input'); + +$attr_shadow_distance = array( + 'name' => 'shadow_distance', + 'value' => '0', + 'class' => 'input'); + +$attr_apply_all = array( + 'name' => 'apply_all', + 'value' => '1', + 'checked' => 'TRUE'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'submit'); +?> + +
+ Slot Image Text Generator +
+ + + +
+
+Type: +
+
+ +
+
+ +
+
+Surce File: +
+
+ +
+
+ +
+ Alignment: +
+ +
+
+Padding: +
+
+ +
+
+ +
+
+Vertical Alignment: +
+
+ +
+
+ +
+
+Horizontal Alignment: +
+
+ +
+
+ +
+
+Horizontal Offset: +
+
+ +
+
+ +
+
+Vertical Offset: +
+
+ +
+
+ +
+---------------------------------------Text:------------------------------------- +
+ +
+
+Text: +
+
+ +
+
+ +
+
+Font: +
+
+ +
+
+ +
+
+Font Size: +
+
+ +
+
+ +
+
+Font Color: +
+
+ +
+
+ +
+
+Shadow Color: +
+
+ +
+
+ +
+
+Shadow Distance: +
+
+ +
+
+ +
+----------------------------------------Rank:------------------------------------ +
+ +
+
+Rank Text: +
+
+ +
+
+ +
+
+Rank Font Size: +
+
+ +
+
+ +
+
+Vertical Alignment: +
+
+ +
+
+ +
+
+Horizontal Alignment: +
+
+ +
+
+ +
+
+Horizontal Offset: +
+
+ +
+
+ +
+
+Vertical Offset: +
+
+ +
+
+ +
+
+Padding: +
+
+ +
+
+ +
+---------------------------------------Image:------------------------------------ +
+ +
+
+Overlay Image: +
+
+ +
+
+ +
+
+Opacity: +
+
+ +
+
+ +
+ +
+
+X Transp: +
+
+ +
+
+ +
+
+Y Transp: +
+
+ +
+
+ +
+
+(If your watermark image is a PNG or GIF image, you may specify a color on the image to be "transparent". +This setting (along with the next) will allow you to specify that color. This works by specifying the +"X" and "Y" coordinate pixel (measured from the upper left) within the image that corresponds to a pixel +representative of the color you want to be transparent.) +
+
+ +
+ +
+ diff --git a/Mourne-CI/application/views/admin/image_tool/slot_image_view.php b/Mourne-CI/application/views/admin/image_tool/slot_image_view.php new file mode 100755 index 0000000..9edad1f --- /dev/null +++ b/Mourne-CI/application/views/admin/image_tool/slot_image_view.php @@ -0,0 +1,14 @@ +load->helper('url'); + +$link_back = 'admin/slot_image'; + +$link = 'img/generated/gen.png'; +?> + +
+Image generated: +
+ \ No newline at end of file diff --git a/Mourne-CI/application/views/admin/item_tool/item.php b/Mourne-CI/application/views/admin/item_tool/item.php new file mode 100755 index 0000000..d54fccc --- /dev/null +++ b/Mourne-CI/application/views/admin/item_tool/item.php @@ -0,0 +1,1006 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_back = 'admin/item_tool'; + +$attr_drop = 'class="drop"'; + +$attr_name = array( + 'name' => 'name', + 'class' => 'input'); + +$attr_icon = array( + 'name' => 'icon', + 'class' => 'input'); + +//quality +//names! +$opt_quality = array( + '0' => 'Really Poor', + '1' => 'Poor', + '2' => 'Good', + '3' => 'Great', + '4' => 'Epic', + '5' => 'Legendary', + '6' => 'OMG'); + +$attr_itemlevel = array( + 'name' => 'itemlevel', + 'class' => 'input'); + +$attr_stack = array( + 'name' => 'stack', + 'class' => 'input'); + +//type +$opt_type = array( + '0' => 'None', + '1' => 'Equipment', + '2' => 'Consumable', + '3' => 'Quest Item'); + +//subtype note: spaces in between the numbers are intentional! (to minimize human error) +$opt_subtype = array( + '0' => 'none', + 'Equipment' => array( + '0' => 'Head 0', + '1' => 'Neck 1', + '2' => 'Shoulder 2', + '3' => 'Back 3', + '4' => 'Chest 4', + '5' => 'Shirt 5', + '6' => 'Tabard 6', + '7' => 'Bracers 7', + '8' => 'Gloves 8', + '9' => 'Belt 9', + '10' => 'Legs 10', + '11' => 'Foots 11', + '12' => 'Ring 12', + '14' => 'Trinket 14', + '16' => 'Weapon 16', + '19' => 'ammo 19')); + +//subtype +$opt_subsubtype = array( + '0' => 'none', + 'weapon' => array( + '1' => '2h Mace'), + 'Equipment' => array( + '0' => 'none 0', + '1' => 'Cloth 1', + '2' => 'Leather 2', + '3' => 'Mail 3', + '4' => 'Plate 4'), + 'Weapon' => array( + '1' => 'Staff 1', + '2' => 'Dagger One Hand 2', + '3' => 'Dagger Main Hand 3', + '4' => 'Dagger Off Hand 4', + '5' => 'Mace One Hand 5', + '6' => 'Mace Main Hand 6', + '7' => 'Mace Off Hand 7', + '8' => 'Mace Two Hand 8', + + '9' => 'Axe One Hand 9', + '10' => 'Axe Main Hand 10', + '11' => 'Axe Off Hand 11', + '12' => 'Axe Two Hand 12', + + '13' => 'Sword One Hand 13', + '14' => 'Sword Main Hand 14', + '15' => 'Sword Off Hand 15', + '16' => 'Sword Two Hand 16', + + '17' => 'Bow 17', + '18' => 'Crossbow 18', + '19' => 'Gun 19')); + +$attr_sell_price = array( + 'name' => 'sell_price', + 'class' => 'input'); + +$attr_buy_price = array( + 'name' => 'buy_price', + 'class' => 'input'); + +$attr_text = array( + 'name' => 'text', + 'rows' => '5', + 'cols' => '50', + 'class' => 'textarea'); + +//soulbound +$opt_soulbound = array( + '0' => 'No', + '1' => 'BoE', + '2' => 'BoP'); + + +//spell (from controller) +//proc (from controller) + +$attr_req_level = array( + 'name' => 'req_level', + 'class' => 'input'); + +$opt_req_class = array( + '0' => 'All', + '1' => 'Warrior', + '2' => 'Rogue', + '3' => 'Archer'); + +$attr_nomod_max_health = array( + 'name' => 'nomod_max_health', + 'class' => 'input'); + +$attr_nomod_max_mana = array( + 'name' => 'nomod_max_mana', + 'class' => 'input'); + +$attr_percent_max_health = array( + 'name' => 'percent_max_health', + 'class' => 'input'); + +$attr_percent_max_mana = array( + 'name' => 'percent_max_mana', + 'class' => 'input'); + +$attr_nomod_agility = array( + 'name' => 'nomod_agility', + 'class' => 'input'); + +$attr_nomod_strength = array( + 'name' => 'nomod_strength', + 'class' => 'input'); + +$attr_nomod_stamina = array( + 'name' => 'nomod_stamina', + 'class' => 'input'); + +$attr_nomod_intellect = array( + 'name' => 'nomod_intellect', + 'class' => 'input'); + +$attr_nomod_spirit = array( + 'name' => 'nomod_spirit', + 'class' => 'input'); + +$attr_percent_agility = array( + 'name' => 'percent_agility', + 'class' => 'input'); + +$attr_percent_strength = array( + 'name' => 'percent_strength', + 'class' => 'input'); + +$attr_percent_stamina = array( + 'name' => 'percent_stamina', + 'class' => 'input'); + +$attr_percent_intellect = array( + 'name' => 'percent_intellect', + 'class' => 'input'); + +$attr_percent_spirit = array( + 'name' => 'percent_spirit', + 'class' => 'input'); + +$attr_nomod_attackpower = array( + 'name' => 'nomod_attackpower', + 'class' => 'input'); + +$attr_percent_attackpower = array( + 'name' => 'percent_attackpower', + 'class' => 'input'); + +$attr_nomod_armor = array( + 'name' => 'nomod_armor', + 'class' => 'input'); + +$attr_percent_armor = array( + 'name' => 'percent_armor', + 'class' => 'input'); + +$attr_nomod_dodge = array( + 'name' => 'nomod_dodge', + 'class' => 'input'); + +$attr_nomod_parry = array( + 'name' => 'nomod_parry', + 'class' => 'input'); + +$attr_hit = array( + 'name' => 'hit', + 'class' => 'input'); + +$attr_nomod_crit = array( + 'name' => 'nomod_crit', + 'class' => 'input'); + +$attr_nomod_damage_min = array( + 'name' => 'nomod_damage_min', + 'class' => 'input'); + +$attr_nomod_damage_max = array( + 'name' => 'nomod_damage_max', + 'class' => 'input'); + +$attr_percent_damage_min = array( + 'name' => 'percent_damage_min', + 'class' => 'input'); + +$attr_percent_damage_max = array( + 'name' => 'percent_damage_max', + 'class' => 'input'); + +$attr_nomod_ranged_damage_min = array( + 'name' => 'nomod_ranged_damage_min', + 'class' => 'input'); + +$attr_nomod_ranged_damage_max = array( + 'name' => 'nomod_ranged_damage_max', + 'class' => 'input'); + +$attr_percent_ranged_damage_min = array( + 'name' => 'percent_ranged_damage_min', + 'class' => 'input'); + +$attr_percent_ranged_damage_max = array( + 'name' => 'percent_ranged_damage_max', + 'class' => 'input'); + +$attr_nomod_heal_min = array( + 'name' => 'nomod_heal_min', + 'class' => 'input'); + +$attr_nomod_heal_max = array( + 'name' => 'nomod_heal_max', + 'class' => 'input'); + +$attr_percent_heal_min = array( + 'name' => 'percent_heal_min', + 'class' => 'input'); + +$attr_percent_heal_max = array( + 'name' => 'percent_heal_max', + 'class' => 'input'); + +$attr_life_leech = array( + 'name' => 'life_leech', + 'class' => 'input'); + +$attr_mana_leech = array( + 'name' => 'mana_leech', + 'class' => 'input'); + +$attr_level_modifier = array( + 'name' => 'level_modifier', + 'class' => 'input'); + +$attr_level_modifier_max = array( + 'name' => 'level_modifier_max', + 'class' => 'input'); + +$attr_data1 = array( + 'name' => 'data1', + 'class' => 'input'); + +$attr_data2 = array( + 'name' => 'data2', + 'class' => 'input'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'submit'); + +if ($new) +{ + //set every value with set_value() + $link_form = 'admin/items'; + + //template effect goes from controller + $attr_name['value'] = set_value('name'); + $attr_icon['value'] = set_value('icon'); + //quality + $attr_itemlevel['value'] = set_value('itemlevel'); + $attr_stack['value'] = set_value('stack'); + //type + //subtype + //subsubtype + $attr_sell_price['value'] = set_value('sell_price'); + $attr_buy_price['value'] = set_value('buy_price'); + $attr_text['value'] = set_value('text'); + //soulbound + //spell + //proc + $attr_req_level['value'] = set_value('req_level'); + $attr_req_class['value'] = set_value('req_class'); + + $attr_nomod_max_health['value'] = set_value('nomod_max_health'); + $attr_nomod_max_mana['value'] = set_value('nomod_max_mana'); + $attr_percent_max_health['value'] = set_value('percent_max_health'); + $attr_percent_max_mana['value'] = set_value('percent_max_mana'); + + $attr_nomod_agility['value'] = set_value('nomod_agility'); + $attr_nomod_strength['value'] = set_value('nomod_strength'); + $attr_nomod_stamina['value'] = set_value('nomod_stamina'); + $attr_nomod_intellect['value'] = set_value('nomod_intellect'); + $attr_nomod_spirit['value'] = set_value('nomod_spirit'); + + $attr_percent_agility['value'] = set_value('percent_agility'); + $attr_percent_strength['value'] = set_value('percent_strength'); + $attr_percent_stamina['value'] = set_value('percent_stamina'); + $attr_percent_intellect['value'] = set_value('percent_intellect'); + $attr_percent_spirit['value'] = set_value('percent_spirit'); + + $attr_nomod_attackpower['value'] = set_value('nomod_attackpower'); + $attr_percent_attackpower['value'] = set_value('percent_attackpower'); + + $attr_nomod_armor['value'] = set_value('nomod_armor'); + $attr_percent_armor['value'] = set_value('percent_armor'); + + $attr_nomod_dodge['value'] = set_value('nomod_dodge'); + $attr_nomod_parry['value'] = set_value('nomod_parry'); + $attr_hit['value'] = set_value('hit'); + $attr_nomod_crit['value'] = set_value('nomod_crit'); + + $attr_nomod_damage_min['value'] = set_value('nomod_damage_min'); + $attr_nomod_damage_max['value'] = set_value('nomod_damage_max'); + $attr_percent_damage_min['value'] = set_value('percent_damage_min'); + $attr_percent_damage_max['value'] = set_value('percent_damage_max'); + + $attr_nomod_ranged_damage_min['value'] = set_value('nomod_ranged_damage_min'); + $attr_nomod_ranged_damage_max['value'] = set_value('nomod_ranged_damage_max'); + $attr_percent_ranged_damage_min['value'] = set_value('percent_ranged_damage_min'); + $attr_percent_ranged_damage_max['value'] = set_value('percent_ranged_damage_max'); + + $attr_nomod_heal_min['value'] = set_value('nomod_heal_min'); + $attr_nomod_heal_max['value'] = set_value('nomod_heal_max'); + $attr_percent_heal_min['value'] = set_value('percent_heal_min'); + $attr_percent_heal_max['value'] = set_value('percent_heal_max'); + + $attr_life_leech['value'] = set_value('life_leech'); + $attr_mana_leech['value'] = set_value('mana_leech'); + + $attr_level_modifier['value'] = set_value('level_modifier'); + $attr_level_modifier_max['value'] = set_value('level_modifier_max'); + + $attr_data1['value'] = set_value('data1'); + $attr_data2['value'] = set_value('data2'); +} +else +{ + //set every value from data sent + $link_form = 'admin/items/' . $item['id']; + + //template effect goes from controller + $attr_name['value'] = $item['name']; + $attr_icon['value'] = $item['icon']; + + $selquality = $item['quality']; + + $attr_itemlevel['value'] = $item['itemlevel']; + $attr_stack['value'] = $item['stack']; + + $seltype = $item['type']; + $selsubtype = $item['subtype']; + $selsubsubtype = $item['subsubtype']; + + $attr_sell_price['value'] = $item['sell_price']; + $attr_buy_price['value'] = $item['buy_price']; + $attr_text['value'] = $item['text']; + + $selsoulbound = $item['soulbound']; + + $selspell = $item['spell']; + $selproc = $item['proc']; + + $attr_req_level['value'] = $item['req_level']; + $attr_req_class['value'] = $item['req_class']; + + $attr_nomod_max_health['value'] = $item['nomod_max_health']; + $attr_nomod_max_mana['value'] = $item['nomod_max_mana']; + $attr_percent_max_health['value'] = $item['percent_max_health']; + $attr_percent_max_mana['value'] = $item['percent_max_mana']; + + $attr_nomod_agility['value'] = $item['nomod_agility']; + $attr_nomod_strength['value'] = $item['nomod_strength']; + $attr_nomod_stamina['value'] = $item['nomod_stamina']; + $attr_nomod_intellect['value'] = $item['nomod_intellect']; + $attr_nomod_spirit['value'] = $item['nomod_spirit']; + + $attr_percent_agility['value'] = $item['percent_agility']; + $attr_percent_strength['value'] = $item['percent_strength']; + $attr_percent_stamina['value'] = $item['percent_stamina']; + $attr_percent_intellect['value'] = $item['percent_intellect']; + $attr_percent_spirit['value'] = $item['percent_spirit']; + + $attr_nomod_attackpower['value'] = $item['nomod_attackpower']; + $attr_percent_attackpower['value'] = $item['percent_attackpower']; + + $attr_nomod_armor['value'] = $item['nomod_armor']; + $attr_percent_armor['value'] = $item['percent_armor']; + + $attr_nomod_dodge['value'] = $item['nomod_dodge']; + $attr_nomod_parry['value'] = $item['nomod_parry']; + $attr_hit['value'] = $item['hit']; + $attr_nomod_crit['value'] = $item['nomod_crit']; + + $attr_nomod_damage_min['value'] = $item['nomod_damage_min']; + $attr_nomod_damage_max['value'] = $item['nomod_damage_max']; + $attr_percent_damage_min['value'] = $item['percent_damage_min']; + $attr_percent_damage_max['value'] = $item['percent_damage_max']; + + $attr_nomod_ranged_damage_min['value'] = $item['nomod_ranged_damage_min']; + $attr_nomod_ranged_damage_max['value'] = $item['nomod_ranged_damage_max']; + $attr_percent_ranged_damage_min['value'] = $item['percent_ranged_damage_min']; + $attr_percent_ranged_damage_max['value'] = $item['percent_ranged_damage_max']; + + $attr_nomod_heal_min['value'] = $item['nomod_heal_min']; + $attr_nomod_heal_max['value'] = $item['nomod_heal_max']; + $attr_percent_heal_min['value'] = $item['percent_heal_min']; + $attr_percent_heal_max['value'] = $item['percent_heal_max']; + + $attr_life_leech['value'] = $item['life_leech']; + $attr_mana_leech['value'] = $item['mana_leech']; + + $attr_level_modifier['value'] = $item['level_modifier']; + $attr_level_modifier_max['value'] = $item['level_modifier_max']; + + $attr_data1['value'] = $item['data1']; + $attr_data2['value'] = $item['data2']; +} +?> + +
+ + Creating! + + Editing! + +
+ + + +
+
+Name: +
+
+ +
+
+ +
+
+Icon: +
+
+ +
+
+ +
+ +
+
+Quality: +
+
+ +
+
+ +
+
+Itemlevel: +
+
+ +
+
+ +
+
+Stack: +
+
+ +
+
+ +
+
+Type: +
+
+ +
+
+ +
+
+Subtype: +
+
+ +
+
+ +
+
+Subsubtype: +
+
+ +
+
+ +
+
+Sell Price: +
+
+ +
+
+ +
+
+Buy Price: +
+
+ +
+
+ +
+
+Text: +
+
+ +
+
+ +
+
+Soulbound: +
+
+ +
+
+ +
+
+Spell: +
+
+ +
+
+ +
+
+Proc: +
+
+ +
+
+ +
+
+Req Level: +
+
+ +
+
+ +
+
+Req Class: +
+
+ +
+
+ +
+ +
+
+Nomod Max Health: +
+
+ +
+
+ +
+
+Nomod Max Mana: +
+
+ +
+
+ +
+
+Percent Max Health: +
+
+ +
+
+ +
+
+Percent Max Mana: +
+
+ +
+
+ +
+ +
+
+Nomod Agility: +
+
+ +
+
+ +
+
+Nomod Strength: +
+
+ +
+
+ +
+
+Nomod Stamina: +
+
+ +
+
+ +
+
+Nomod Intellect: +
+
+ +
+
+ +
+
+Nomod Spirit: +
+
+ +
+
+ +
+ +
+
+Percent Agility: +
+
+ +
+
+ +
+
+Percent Strength: +
+
+ +
+
+ +
+
+Percent Stamina: +
+
+ +
+
+ +
+
+Percent Intellect: +
+
+ +
+
+ +
+
+Percent Spirit: +
+
+ +
+
+ +
+ +
+
+Nomod Attackpower: +
+
+ +
+
+ +
+
+Percent Attackpower: +
+
+ +
+
+ +
+ +
+
+Nomod Armor: +
+
+ +
+
+ +
+
+Percent Armor: +
+
+ +
+
+ +
+
+Nomod Dodge: +
+
+ +
+
+ +
+
+Nomod Parry: +
+
+ +
+
+ +
+
+Hit: +
+
+ +
+
+ +
+
+Nomod Crit: +
+
+ +
+
+ +
+ +
+
+Nomod Damage Min: +
+
+ +
+
+ +
+
+Nomod Damage Max: +
+
+ +
+
+ +
+ +
+
+Percent Damage Min: +
+
+ +
+
+ +
+
+Percent Damage Max: +
+
+ +
+
+ +
+ +
+
+Nomod Ranged Damage Min: +
+
+ +
+
+ +
+
+Nomod Ranged Damage Max: +
+
+ +
+
+ +
+ +
+
+Percent Ranged Damage Min: +
+
+ +
+
+ +
+
+Percent Ranged Damage Max: +
+
+ +
+
+ +
+ +
+
+Nomod Heal Min: +
+
+ +
+
+ +
+
+Nomod Heal Max: +
+
+ +
+
+ +
+ +
+
+Percent Heal Min: +
+
+ +
+
+ +
+
+Percent Heal Max: +
+
+ +
+
+ +
+ +
+
+Life Leech: +
+
+ +
+
+ +
+
+Mana Leech: +
+
+ +
+
+ +
+ +
+
+Level Modifier: +
+
+ +
+
+ +
+
+Level Modifier Max: +
+
+ +
+
+ +
+ +
+
+Data1: +
+
+ +
+
+ +
+
+Data2: +
+
+ +
+
+ +
+ +
+ \ No newline at end of file diff --git a/Mourne-CI/application/views/admin/item_tool/list.php b/Mourne-CI/application/views/admin/item_tool/list.php new file mode 100755 index 0000000..8e2c42f --- /dev/null +++ b/Mourne-CI/application/views/admin/item_tool/list.php @@ -0,0 +1,45 @@ +load->helper('url'); + +$link_edit = 'admin/items/'; +$link_new = 'admin/items'; + +$link_back = 'admin/admin_panel'; +?> + + +
+ + + + + +
+ +
+ +
+ [] +
+
+ [ilvl: ] +
+
+ [quality: ] +
+
+ +
+
+ Edit +
+ +
+ + + +
\ No newline at end of file diff --git a/Mourne-CI/application/views/admin/map_tool/list.php b/Mourne-CI/application/views/admin/map_tool/list.php new file mode 100755 index 0000000..e0e5bfa --- /dev/null +++ b/Mourne-CI/application/views/admin/map_tool/list.php @@ -0,0 +1,41 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_generate = 'admin/map_generator'; +$link_form = 'admin/map_tool'; + +$link_back = 'admin/admin_panel'; + +$attr_apply = array( + 'name' => 'submit', + 'value' => 'Apply!', + 'class' => 'submit'); +?> + + +
+ + + + +
+ +
+ +
+ +
+
+ Apply will not wrok from here. +
+
+ + + + +
\ No newline at end of file diff --git a/Mourne-CI/application/views/admin/panel.php b/Mourne-CI/application/views/admin/panel.php new file mode 100755 index 0000000..8ad9628 --- /dev/null +++ b/Mourne-CI/application/views/admin/panel.php @@ -0,0 +1,144 @@ +load->helper('url'); + +$link_building_tool = 'admin/building_tool'; +$link_unit_tool = 'admin/unit_tool'; +$link_assignment_tool = 'admin/assignment_tool'; +$link_spell_tool = 'admin/spell_tool'; +$link_weather_tool = 'admin/weather_tool'; +$link_technology_tool = 'admin/technology_tool'; +$link_tech_group_tool = 'admin/technology_group_tool'; +$link_tech_requirements_tool = 'admin/technology_requirements_tool'; +$link_ai_unit_tool = 'admin/ai_unit_tool'; +$link_ai_settings_tool = 'admin/ai_settings_tool'; +$link_hero_template_tool = 'admin/hero_template_tool'; +$link_hero_inventory_template_tool = 'admin/hero_inventory_template_tool'; +$link_item_tool = 'admin/item_tool'; +$link_map_tool = 'admin/map_tool'; +$link_menu_image = 'admin/menu_image'; +$link_slot_image = 'admin/slot_image'; +$link_sql_tool = 'admin/sql_tool'; +?> +
+ Admin Panel +
+ +
+ + + + + + + + + + + +
+ +
+ Technology tools +
+ +
+ + + + + + + +
+ +
+ Hero Tools +
+ +
+ + + + + + + +
+ +
+ AI Tools +
+ +
+ + + + + +
+ +
+ Map Tools +
+ +
+ + + +
+ +
+ Image Tool +
+ +
+ + + + + +
+ +
+ SQL Tool +
+ +
+ + + +
\ No newline at end of file diff --git a/Mourne-CI/application/views/admin/spell_tool/list.php b/Mourne-CI/application/views/admin/spell_tool/list.php new file mode 100755 index 0000000..83dd421 --- /dev/null +++ b/Mourne-CI/application/views/admin/spell_tool/list.php @@ -0,0 +1,43 @@ +load->helper('url'); + +$link_edit = 'admin/spell/'; +$link_new = 'admin/spell'; + +$link_back = 'admin/admin_panel'; +?> + + +
+ + + + +
+ +
+ +
+ [] +
+
+ [Eff: ] +
+
+ [D: ] +
+
+ +
+
+ Edit +
+ +
+ + +
\ No newline at end of file diff --git a/Mourne-CI/application/views/admin/spell_tool/spell.php b/Mourne-CI/application/views/admin/spell_tool/spell.php new file mode 100755 index 0000000..e2d671c --- /dev/null +++ b/Mourne-CI/application/views/admin/spell_tool/spell.php @@ -0,0 +1,454 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_back = 'admin/spell_tool'; + +$name_effect = 'effect'; +$attr_effect = 'class="drop"'; + +$attr_drop = 'class="drop"'; + +$attr_duration = array( + 'name' => 'duration', + 'class' => 'input'); + +$attr_cooldown = array( + 'name' => 'cooldown', + 'class' => 'input'); + +$attr_description = array( + 'name' => 'description', + 'rows' => '5', + 'cols' => '50', + 'class' => 'textarea'); + +$attr_description_admin = array( + 'name' => 'description_admin', + 'rows' => '5', + 'cols' => '50', + 'class' => 'textarea'); + +$attr_cost_food = array( + 'name' => 'cost_food', + 'class' => 'input'); + +$attr_cost_wood = array( + 'name' => 'cost_wood', + 'class' => 'input'); + +$attr_cost_stone = array( + 'name' => 'cost_stone', + 'class' => 'input'); + +$attr_cost_iron = array( + 'name' => 'cost_iron', + 'class' => 'input'); + +$attr_cost_mana = array( + 'name' => 'cost_mana', + 'class' => 'input'); + +$attr_mod_max_food = array( + 'name' => 'mod_max_food', + 'class' => 'input'); + +$attr_mod_max_wood = array( + 'name' => 'mod_max_wood', + 'class' => 'input'); + +$attr_mod_max_stone = array( + 'name' => 'mod_max_stone', + 'class' => 'input'); + +$attr_mod_max_iron = array( + 'name' => 'mod_max_iron', + 'class' => 'input'); + +$attr_mod_max_mana = array( + 'name' => 'mod_max_mana', + 'class' => 'input'); + + +$attr_mod_rate_food = array( + 'name' => 'mod_rate_food', + 'class' => 'input'); + +$attr_mod_rate_wood = array( + 'name' => 'mod_rate_wood', + 'class' => 'input'); + +$attr_mod_rate_stone = array( + 'name' => 'mod_rate_stone', + 'class' => 'input'); + +$attr_mod_rate_iron = array( + 'name' => 'mod_rate_iron', + 'class' => 'input'); + +$attr_mod_rate_mana = array( + 'name' => 'mod_rate_mana', + 'class' => 'input'); + + +$attr_mod_percent_food = array( + 'name' => 'mod_percent_food', + 'class' => 'input'); + +$attr_mod_percent_wood = array( + 'name' => 'mod_percent_wood', + 'class' => 'input'); + +$attr_mod_percent_stone = array( + 'name' => 'mod_percent_stone', + 'class' => 'input'); + +$attr_mod_percent_iron = array( + 'name' => 'mod_percent_iron', + 'class' => 'input'); + +$attr_mod_percent_mana = array( + 'name' => 'mod_percent_mana', + 'class' => 'input'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'submit'); + +if ($new) +{ + //set every value with set_value() + $link_form = 'admin/spell'; + + //spell effect goes from controller + $attr_duration['value'] = set_value('duration'); + $attr_cooldown['value'] = set_value('cooldown'); + $attr_description['value'] = set_value('description'); + $attr_description_admin['value'] = set_value('description_admin'); + + $attr_cost_food['value'] = set_value('cost_food'); + $attr_cost_wood['value'] = set_value('cost_wood'); + $attr_cost_stone['value'] = set_value('cost_stone'); + $attr_cost_iron['value'] = set_value('cost_iron'); + $attr_cost_mana['value'] = set_value('cost_mana'); + + $attr_mod_max_food['value'] = set_value('mod_max_food'); + $attr_mod_max_wood['value'] = set_value('mod_max_wood'); + $attr_mod_max_stone['value'] = set_value('mod_max_stone'); + $attr_mod_max_iron['value'] = set_value('mod_max_iron'); + $attr_mod_max_mana['value'] = set_value('mod_max_mana'); + + $attr_mod_rate_food['value'] = set_value('mod_rate_food'); + $attr_mod_rate_wood['value'] = set_value('mod_rate_wood'); + $attr_mod_rate_stone['value'] = set_value('mod_rate_stone'); + $attr_mod_rate_iron['value'] = set_value('mod_rate_iron'); + $attr_mod_rate_mana['value'] = set_value('mod_rate_mana'); + + $attr_mod_percent_food['value'] = set_value('mod_percent_food'); + $attr_mod_percent_wood['value'] = set_value('mod_percent_wood'); + $attr_mod_percent_stone['value'] = set_value('mod_percent_stone'); + $attr_mod_percent_iron['value'] = set_value('mod_percent_iron'); + $attr_mod_percent_mana['value'] = set_value('mod_percent_mana'); +} +else +{ + //set every value from data sent + $link_form = 'admin/spell/' . $spell['id']; + + $seff = $spell['effect']; + + $attr_duration['value'] = $spell['duration']; + $attr_cooldown['value'] = $spell['cooldown']; + $attr_description['value'] = $spell['description']; + $attr_description_admin['value'] = $spell['description_admin']; + + $sweather = $spell['weather_change_to']; + + $attr_cost_food['value'] = $spell['cost_food']; + $attr_cost_wood['value'] = $spell['cost_wood']; + $attr_cost_stone['value'] = $spell['cost_stone']; + $attr_cost_iron['value'] = $spell['cost_iron']; + $attr_cost_mana['value'] = $spell['cost_mana']; + + $attr_mod_max_food['value'] = $spell['mod_max_food']; + $attr_mod_max_wood['value'] = $spell['mod_max_wood']; + $attr_mod_max_stone['value'] = $spell['mod_max_stone']; + $attr_mod_max_iron['value'] = $spell['mod_max_iron']; + $attr_mod_max_mana['value'] = $spell['mod_max_mana']; + + $attr_mod_rate_food['value'] = $spell['mod_rate_food']; + $attr_mod_rate_wood['value'] = $spell['mod_rate_wood']; + $attr_mod_rate_stone['value'] = $spell['mod_rate_stone']; + $attr_mod_rate_iron['value'] = $spell['mod_rate_iron']; + $attr_mod_rate_mana['value'] = $spell['mod_rate_mana']; + + $attr_mod_percent_food['value'] = $spell['mod_percent_food']; + $attr_mod_percent_wood['value'] = $spell['mod_percent_wood']; + $attr_mod_percent_stone['value'] = $spell['mod_percent_stone']; + $attr_mod_percent_iron['value'] = $spell['mod_percent_iron']; + $attr_mod_percent_mana['value'] = $spell['mod_percent_mana']; +} +?> + +
+ + Creating! + + Editing! + +
+ + + +
+
+Effect: +
+
+ +
+
+ +
+
+Duration: +
+
+ +
+
+ +
+
+Cooldown: +
+
+ +
+
+ +
+ +
+
+Description: +
+
+ +
+
+ +
+
+Admin Description: +
+
+ +
+
+ +
+
+Change Weather To: +
+
+ +
+
+ +
+ +
+
+Cost Food: +
+
+ +
+
+ +
+
+Cost wood: +
+
+ +
+
+ +
+
+Cost Stone: +
+
+ +
+
+ +
+
+Cost Iron: +
+
+ +
+
+ +
+
+Cost Mana: +
+
+ +
+
+ +
+ +
+
+Mod Max Food: +
+
+ +
+
+ +
+
+Mod Max Wood: +
+
+ +
+
+ +
+
+Mod Max Stone: +
+
+ +
+
+ +
+
+Mod Max Iron: +
+
+ +
+
+ +
+
+Mod Max Mana: +
+
+ +
+
+ +
+ +
+
+Mod Rate Food: +
+
+ +
+
+ +
+
+Mod Rate Wood: +
+
+ +
+
+ +
+
+Mod Rate Stone: +
+
+ +
+
+ +
+
+Mod Rate Iron: +
+
+ +
+
+ +
+
+Mod Rate Mana: +
+
+ +
+
+ +
+ +
+
+Mod Percent Food: +
+
+ +
+
+ +
+
+Mod Percent Wood: +
+
+ +
+
+ +
+
+Mod Percent Stone: +
+
+ +
+
+ +
+
+Mod Percent Iron: +
+
+ +
+
+ +
+
+Mod Percent Mana: +
+
+ +
+
+ + +
+ +
+ diff --git a/Mourne-CI/application/views/admin/sql_tool/list.php b/Mourne-CI/application/views/admin/sql_tool/list.php new file mode 100755 index 0000000..6f99342 --- /dev/null +++ b/Mourne-CI/application/views/admin/sql_tool/list.php @@ -0,0 +1,40 @@ +load->helper('url'); + +$link_new = 'admin/sql_new'; +$link_apply_all = 'admin/sql_apply_all'; + +$link_back = 'admin/admin_panel'; +?> + + +
+ + +
+ Appliable sqls: +
+ + + +
+ +
+ +
+ +
+
+ + + +
+ Nothing to apply. +
+ +
\ No newline at end of file diff --git a/Mourne-CI/application/views/admin/sql_tool/new.php b/Mourne-CI/application/views/admin/sql_tool/new.php new file mode 100755 index 0000000..4e694cc --- /dev/null +++ b/Mourne-CI/application/views/admin/sql_tool/new.php @@ -0,0 +1,35 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_back = 'admin/sql_tool'; + +$link_form = 'admin/sql_new'; + +$attr_textarea = array( + 'name' => 'sql', + 'rows' => '15', + 'cols' => '100', + 'class' => 'textarea'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'submit'); + +?> + +
+ New SQL! +
+ + +
+ +
+
+ +
+ diff --git a/Mourne-CI/application/views/admin/technology_group_tool/list.php b/Mourne-CI/application/views/admin/technology_group_tool/list.php new file mode 100755 index 0000000..6055b0d --- /dev/null +++ b/Mourne-CI/application/views/admin/technology_group_tool/list.php @@ -0,0 +1,40 @@ +load->helper('url'); + +$link_edit = 'admin/technology_group/'; + +$link_edit_desc = 'admin/technology_group_desc/'; +$link_new_desc = 'admin/technology_group_desc'; + +$link_back = 'admin/admin_panel'; +?> + + +
+ + + + + +
+ +
+ +
+ [] +
+
+ +
+ +
+ + +
\ No newline at end of file diff --git a/Mourne-CI/application/views/admin/technology_group_tool/tech_group_desc.php b/Mourne-CI/application/views/admin/technology_group_tool/tech_group_desc.php new file mode 100755 index 0000000..41541e4 --- /dev/null +++ b/Mourne-CI/application/views/admin/technology_group_tool/tech_group_desc.php @@ -0,0 +1,56 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_back = 'admin/technology_group_tool'; + +$attr_group_name = array( + 'name' => 'group_name', + 'rows' => '5', + 'cols' => '50', + 'class' => 'textarea'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'submit'); + +if ($new) +{ + //set every value with set_value() + $link_form = 'admin/technology_group_desc'; + $attr_group_name['value'] = set_value('description'); +} +else +{ + //set every value from data sent + $link_form = 'admin/technology_group_desc/' . $group['id']; + $attr_group_name['value'] = $group['group_name']; +} +?> + +
+ + Creating! + + Editing! + +
+ + + +
+
+Group Name: +
+
+ +
+
+ +
+ +
+ diff --git a/Mourne-CI/application/views/admin/technology_group_tool/tech_groups.php b/Mourne-CI/application/views/admin/technology_group_tool/tech_groups.php new file mode 100755 index 0000000..04f18b2 --- /dev/null +++ b/Mourne-CI/application/views/admin/technology_group_tool/tech_groups.php @@ -0,0 +1,59 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_form = 'admin/technology_group/' . $id; + +$link_back = 'admin/technology_group_tool'; + +$name_add_drop = 'add'; +$attr_add_drop = 'class="drop"'; + +$attr_add = array( + 'name' => 'submit', + 'value' => 'Add!', + 'class' => 'submit'); + +$attr_delete = array( + 'name' => 'submit', + 'value' => 'Delete!', + 'class' => 'submit'); +?> + +
+ Editing! +
+ + + + + + +
+
+ [] +
+
+ +
+
+ + + + +
+ + +
+
+ Add: +
+
+ + +
+
+
+ diff --git a/Mourne-CI/application/views/admin/technology_requirements_tool/add_to_list.php b/Mourne-CI/application/views/admin/technology_requirements_tool/add_to_list.php new file mode 100755 index 0000000..d8a8e56 --- /dev/null +++ b/Mourne-CI/application/views/admin/technology_requirements_tool/add_to_list.php @@ -0,0 +1,30 @@ +load->helper('form'); +$this->load->helper('url'); + +$link_back = 'admin/technology_requirements_tool'; + +$link_form = 'admin/have_technology_requirement'; + +$name_drop = 'technologyid'; + +$attr_comment = array( + 'name' => 'comment', + 'class' => 'textarea'); + +$attr_drop = 'class="drop"'; + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Add!', + 'class' => 'submit'); +?> +Add new!
+<-- Back
+ + +Description:
+
+
+
+ diff --git a/Mourne-CI/application/views/admin/technology_requirements_tool/list.php b/Mourne-CI/application/views/admin/technology_requirements_tool/list.php new file mode 100755 index 0000000..a2287bd --- /dev/null +++ b/Mourne-CI/application/views/admin/technology_requirements_tool/list.php @@ -0,0 +1,39 @@ +load->helper('url'); + +$link_edit = 'admin/technology_requirements/'; +$link_add_tech = 'admin/have_technology_requirement'; +$link_remove = 'admin/have_technology_requirement/'; + +$link_back = 'admin/admin_panel'; +?> + + +
+ + + + + +
+ +
+ +
+ [] +
+
+ () +
+ +
+ + +
\ No newline at end of file diff --git a/Mourne-CI/application/views/admin/technology_requirements_tool/remove_conf.php b/Mourne-CI/application/views/admin/technology_requirements_tool/remove_conf.php new file mode 100755 index 0000000..2528641 --- /dev/null +++ b/Mourne-CI/application/views/admin/technology_requirements_tool/remove_conf.php @@ -0,0 +1,30 @@ +load->helper('form'); +$this->load->helper('url'); + +$link_back = 'admin/technology_requirements_tool'; + +$link_form = 'admin/have_technology_requirement'; + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Remove!', + 'class' => 'submit'); +?> +Add new!
+<-- Back
+ + + +Are you sure you want to remove this from the list?
+NOTE: This won't remove requirements, only from the tool's list!
+
+id:
+technology id:
+Technology description:
+Comment:
+
+ +Nope! +
+ diff --git a/Mourne-CI/application/views/admin/technology_requirements_tool/tech_req.php b/Mourne-CI/application/views/admin/technology_requirements_tool/tech_req.php new file mode 100755 index 0000000..b96b5ec --- /dev/null +++ b/Mourne-CI/application/views/admin/technology_requirements_tool/tech_req.php @@ -0,0 +1,63 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_form = 'admin/technology_requirements/' . $id; + +$link_back = 'admin/technology_requirements_tool'; + +$name_add_drop = 'add'; +$attr_add_drop = 'class="drop"'; + +$attr_add = array( + 'name' => 'submit', + 'value' => 'Add!', + 'class' => 'submit'); + +$attr_delete = array( + 'name' => 'submit', + 'value' => 'Delete!', + 'class' => 'submit'); +?> + + +
+ Editing: [] +
+ + + + + + + +
+
+ [] +
+
+ +
+
+ + + +
+ + + + + +
+
+ Add: +
+
+ + +
+
+ + diff --git a/Mourne-CI/application/views/admin/technology_tool/list.php b/Mourne-CI/application/views/admin/technology_tool/list.php new file mode 100755 index 0000000..547a609 --- /dev/null +++ b/Mourne-CI/application/views/admin/technology_tool/list.php @@ -0,0 +1,35 @@ +load->helper('url'); + +$link_edit = 'admin/technology/'; +$link_new = 'admin/technology'; + +$link_back = 'admin/admin_panel'; +?> + + +
+ + + + +
+ +
+ +
+ [] +
+
+ +
+
+ Edit +
+
+ + diff --git a/Mourne-CI/application/views/admin/technology_tool/technology.php b/Mourne-CI/application/views/admin/technology_tool/technology.php new file mode 100755 index 0000000..2be0a90 --- /dev/null +++ b/Mourne-CI/application/views/admin/technology_tool/technology.php @@ -0,0 +1,485 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_back = 'admin/technology_tool'; + +$attr_description = array( + 'name' => 'description', + 'rows' => '5', + 'cols' => '50', + 'class' => 'textarea'); + +$attr_time = array( + 'name' => 'time', + 'class' => 'input'); + +$attr_score = array( + 'name' => 'score', + 'class' => 'input'); + +$opt_flag_ai = array( + '0' => 'No', + '1' => 'Yes'); + +$attr_num_creates = array( + 'name' => 'num_creates', + 'class' => 'input'); + +$attr_time_to_build = array( + 'name' => 'time_to_build', + 'class' => 'input'); + +$attr_cost_food = array( + 'name' => 'cost_food', + 'class' => 'input'); + +$attr_cost_wood = array( + 'name' => 'cost_wood', + 'class' => 'input'); + +$attr_cost_stone = array( + 'name' => 'cost_stone', + 'class' => 'input'); + +$attr_cost_iron = array( + 'name' => 'cost_iron', + 'class' => 'input'); + +$attr_cost_mana = array( + 'name' => 'cost_mana', + 'class' => 'input'); + +$attr_mod_max_food = array( + 'name' => 'mod_max_food', + 'class' => 'input'); + +$attr_mod_max_wood = array( + 'name' => 'mod_max_wood', + 'class' => 'input'); + +$attr_mod_max_stone = array( + 'name' => 'mod_max_stone', + 'class' => 'input'); + +$attr_mod_max_iron = array( + 'name' => 'mod_max_iron', + 'class' => 'input'); + +$attr_mod_max_mana = array( + 'name' => 'mod_max_mana', + 'class' => 'input'); + + +$attr_mod_rate_food = array( + 'name' => 'mod_rate_food', + 'class' => 'input'); + +$attr_mod_rate_wood = array( + 'name' => 'mod_rate_wood', + 'class' => 'input'); + +$attr_mod_rate_stone = array( + 'name' => 'mod_rate_stone', + 'class' => 'input'); + +$attr_mod_rate_iron = array( + 'name' => 'mod_rate_iron', + 'class' => 'input'); + +$attr_mod_rate_mana = array( + 'name' => 'mod_rate_mana', + 'class' => 'input'); + +$attr_mod_percent_food = array( + 'name' => 'mod_percent_food', + 'class' => 'input'); + +$attr_mod_percent_wood = array( + 'name' => 'mod_percent_wood', + 'class' => 'input'); + +$attr_mod_percent_stone = array( + 'name' => 'mod_percent_stone', + 'class' => 'input'); + +$attr_mod_percent_iron = array( + 'name' => 'mod_percent_iron', + 'class' => 'input'); + +$attr_mod_percent_mana = array( + 'name' => 'mod_percent_mana', + 'class' => 'input'); + +$name_mod_spell_id = 'mod_spell_id'; +$attr_mod_spell_id = 'class="drop"'; + +$name_mod_create_id = 'mod_create_id'; +$attr_mod_create_id = 'class="drop"'; + +$attr_drop = 'class="drop"'; + +$name_is_secondary = 'is_secondary'; +$attr_is_secondary = 'class="drop"'; + +$opt_is_secondary = array( + '0' => 'Primary', + '1' => 'Secondary'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'submit'); + +if ($new) +{ + //set every value with set_value() + $link_form = 'admin/technology'; + $attr_description['value'] = set_value('description'); + $attr_time['value'] = set_value('time'); + + $attr_score['value'] = set_value('score'); + + $attr_cost_food['value'] = set_value('cost_food'); + $attr_cost_wood['value'] = set_value('cost_wood'); + $attr_cost_stone['value'] = set_value('cost_stone'); + $attr_cost_iron['value'] = set_value('cost_iron'); + $attr_cost_mana['value'] = set_value('cost_mana'); + + $attr_mod_max_food['value'] = set_value('mod_max_food'); + $attr_mod_max_wood['value'] = set_value('mod_max_wood'); + $attr_mod_max_stone['value'] = set_value('mod_max_stone'); + $attr_mod_max_iron['value'] = set_value('mod_max_iron'); + $attr_mod_max_mana['value'] = set_value('mod_max_mana'); + + $attr_mod_rate_food['value'] = set_value('mod_rate_food'); + $attr_mod_rate_wood['value'] = set_value('mod_rate_wood'); + $attr_mod_rate_stone['value'] = set_value('mod_rate_stone'); + $attr_mod_rate_iron['value'] = set_value('mod_rate_iron'); + $attr_mod_rate_mana['value'] = set_value('mod_rate_mana'); + + $attr_mod_percent_food['value'] = set_value('mod_percent_food'); + $attr_mod_percent_wood['value'] = set_value('mod_percent_wood'); + $attr_mod_percent_stone['value'] = set_value('mod_percent_stone'); + $attr_mod_percent_iron['value'] = set_value('mod_percent_iron'); + $attr_mod_percent_mana['value'] = set_value('mod_percent_mana'); +} +else +{ + //set every value from data sent + $link_form = 'admin/technology/' . $technology['id']; + $attr_description['value'] = $technology['description']; + + $attr_time['value'] = $technology['time']; + + $attr_score['value'] = $technology['score']; + + $attr_cost_food['value'] = $technology['cost_food']; + $attr_cost_wood['value'] = $technology['cost_wood']; + $attr_cost_stone['value'] = $technology['cost_stone']; + $attr_cost_iron['value'] = $technology['cost_iron']; + $attr_cost_mana['value'] = $technology['cost_mana']; + + $attr_mod_max_food['value'] = $technology['mod_max_food']; + $attr_mod_max_wood['value'] = $technology['mod_max_wood']; + $attr_mod_max_stone['value'] = $technology['mod_max_stone']; + $attr_mod_max_iron['value'] = $technology['mod_max_iron']; + $attr_mod_max_mana['value'] = $technology['mod_max_mana']; + + $attr_mod_rate_food['value'] = $technology['mod_rate_food']; + $attr_mod_rate_wood['value'] = $technology['mod_rate_wood']; + $attr_mod_rate_stone['value'] = $technology['mod_rate_stone']; + $attr_mod_rate_iron['value'] = $technology['mod_rate_iron']; + $attr_mod_rate_mana['value'] = $technology['mod_rate_mana']; + + $attr_mod_percent_food['value'] = $technology['mod_percent_food']; + $attr_mod_percent_wood['value'] = $technology['mod_percent_wood']; + $attr_mod_percent_stone['value'] = $technology['mod_percent_stone']; + $attr_mod_percent_iron['value'] = $technology['mod_percent_iron']; + $attr_mod_percent_mana['value'] = $technology['mod_percent_mana']; + + $sspid = $technology['mod_spell_id']; + $smcid = $technology['mod_create_id']; + $sflai = $technology['flag_ai']; + + $selissec = $technology['is_secondary']; +} +?> + +
+ + Creating! + + Editing! + +
+ + + +
+
+Description: +
+
+ +
+
+ +
+ +
+
+Time: +
+
+ +
+
+ +
+ +
+
+Score: +
+
+ +
+
+ +
+ +
+
+Cost Food: +
+
+ +
+
+ +
+
+Cost Wood: +
+
+ +
+
+ +
+
+Cost Stone: +
+
+ +
+
+ +
+
+Cost iron: +
+
+ +
+
+ +
+
+Cost Mana: +
+
+ +
+
+ +
+ +
+
+Mod Max Food: +
+
+ +
+
+ +
+
+Mod Max Wood: +
+
+ +
+
+ +
+
+Mod Max Stone: +
+
+ +
+
+ +
+
+Mod Max Iron: +
+
+ +
+
+ +
+
+Mod Max Mana: +
+
+ +
+
+ +
+ +
+
+Mod Rate Food: +
+
+ +
+
+ +
+
+Mod Rate Wood: +
+
+ +
+
+ +
+
+Mod Rate Stone: +
+
+ +
+
+ +
+
+Mod Rate Iron: +
+
+ +
+
+ +
+
+Mod Rate Mana: +
+
+ +
+
+ +
+ +
+
+Mod Percent Food: +
+
+ +
+
+ +
+
+Mod Percent Wood: +
+
+ +
+
+ +
+
+Mod Percent Stone: +
+
+ +
+
+ +
+
+Mod Percent Iron: +
+
+ +
+
+ +
+
+Mod Percent Mana: +
+
+ +
+
+ +
+ +
+
+Mod Spell Id: +
+
+ +
+
+ +
+
+Mod Create Id: +
+
+ +
+
+ +
+ +
+
+Flag AI: +
+
+ +
+
+ +
+ +
+
+Type: +
+
+ +
+
+ +
+ +
+ diff --git a/Mourne-CI/application/views/admin/unit_tool/list.php b/Mourne-CI/application/views/admin/unit_tool/list.php new file mode 100755 index 0000000..fd5fa9e --- /dev/null +++ b/Mourne-CI/application/views/admin/unit_tool/list.php @@ -0,0 +1,38 @@ +load->helper('url'); + +$link_edit = 'admin/unit/'; +$link_new = 'admin/unit'; +$link_back = 'admin/admin_panel'; +?> + + +
+ + + + +
+ +
+ +
+ [] +
+
+ [Cost U: ] +
+
+ +
+
+ Edit +
+
+ + +
diff --git a/Mourne-CI/application/views/admin/unit_tool/unit.php b/Mourne-CI/application/views/admin/unit_tool/unit.php new file mode 100755 index 0000000..134e9e2 --- /dev/null +++ b/Mourne-CI/application/views/admin/unit_tool/unit.php @@ -0,0 +1,400 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_back = 'admin/unit_tool'; + +$attr_drop = 'class="drop"'; + +$attr_name = array( + 'name' => 'name', + 'class' => 'input'); + +$attr_type = array( + 'name' => 'type', + 'class' => 'input'); + +$attr_icon = array( + 'name' => 'icon', + 'class' => 'input'); + +$attr_score = array( + 'name' => 'score', + 'class' => 'input'); + +$opt_can_defend = array( + '0' => 'Not', + '1' => 'Yes'); + +$attr_defense = array( + 'name' => 'defense', + 'class' => 'input'); + +$attr_attack = array( + 'name' => 'attack', + 'class' => 'input'); + +$attr_turn = array( + 'name' => 'turn', + 'class' => 'input'); + +$attr_ability = array( + 'name' => 'ability', + 'class' => 'input'); + +$attr_time_to_create = array( + 'name' => 'time_to_create', + 'class' => 'input'); + +$name_cost_unit = 'cost_unit'; + +$attr_cost_unit = 'class="drop"'; + +$attr_cost_num_unit = array( + 'name' => 'cost_num_unit', + 'class' => 'input'); + +$attr_cost_food = array( + 'name' => 'cost_food', + 'class' => 'input'); + +$attr_cost_wood = array( + 'name' => 'cost_wood', + 'class' => 'input'); + +$attr_cost_stone = array( + 'name' => 'cost_stone', + 'class' => 'input'); + +$attr_cost_iron = array( + 'name' => 'cost_iron', + 'class' => 'input'); + +$attr_cost_mana = array( + 'name' => 'cost_mana', + 'class' => 'input'); + +$attr_mod_rate_food = array( + 'name' => 'mod_rate_food', + 'class' => 'input'); + +$attr_mod_rate_wood = array( + 'name' => 'mod_rate_wood', + 'class' => 'input'); + +$attr_mod_rate_stone = array( + 'name' => 'mod_rate_stone', + 'class' => 'input'); + +$attr_mod_rate_iron = array( + 'name' => 'mod_rate_iron', + 'class' => 'input'); + +$attr_mod_rate_mana = array( + 'name' => 'mod_rate_mana', + 'class' => 'input'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'submit'); + +if ($new) +{ + //set every value with set_value() + $link_form = 'admin/unit'; + $attr_type['value'] = set_value('type'); + $attr_name['value'] = set_value('name'); + $attr_icon['value'] = set_value('icon'); + + $attr_score['value'] = set_value('score'); + $attr_defense['value'] = set_value('icon'); + $attr_attack['value'] = set_value('icon'); + $attr_turn['value'] = set_value('icon'); + $attr_ability['value'] = set_value('icon'); + + $attr_time_to_create['value'] = set_value('time_to_create'); + + $attr_cost_unit['value'] = set_value('cost_unit'); + $attr_cost_num_unit['value'] = set_value('cost_num_unit'); + + $attr_cost_food['value'] = set_value('cost_food'); + $attr_cost_wood['value'] = set_value('cost_wood'); + $attr_cost_stone['value'] = set_value('cost_stone'); + $attr_cost_iron['value'] = set_value('cost_iron'); + $attr_cost_mana['value'] = set_value('cost_mana'); + + $attr_mod_rate_food['value'] = set_value('mod_rate_food'); + $attr_mod_rate_wood['value'] = set_value('mod_rate_wood'); + $attr_mod_rate_stone['value'] = set_value('mod_rate_stone'); + $attr_mod_rate_iron['value'] = set_value('mod_rate_iron'); + $attr_mod_rate_mana['value'] = set_value('mod_rate_mana'); +} +else +{ + //set every value from data sent + $link_form = 'admin/unit/' . $unit['id']; + $attr_type['value'] = $unit['type']; + $attr_name['value'] = $unit['name']; + $attr_icon['value'] = $unit['icon']; + + $attr_score['value'] = $unit['score']; + $scd = $unit['can_defend']; + $attr_defense['value'] = $unit['defense']; + $attr_attack['value'] = $unit['attack']; + $sstrong = $unit['strong_against']; + $sweak = $unit['weak_against']; + $attr_turn['value'] = $unit['turn']; + $attr_ability['value'] = $unit['ability']; + + $attr_time_to_create['value'] = $unit['time_to_create']; + + $costu = $unit['cost_unit']; + $attr_cost_num_unit['value'] = $unit['cost_num_unit']; + + $attr_cost_food['value'] = $unit['cost_food']; + $attr_cost_wood['value'] = $unit['cost_wood']; + $attr_cost_stone['value'] = $unit['cost_stone']; + $attr_cost_iron['value'] = $unit['cost_iron']; + $attr_cost_mana['value'] = $unit['cost_mana']; + + $attr_mod_rate_food['value'] = $unit['mod_rate_food']; + $attr_mod_rate_wood['value'] = $unit['mod_rate_wood']; + $attr_mod_rate_stone['value'] = $unit['mod_rate_stone']; + $attr_mod_rate_iron['value'] = $unit['mod_rate_iron']; + $attr_mod_rate_mana['value'] = $unit['mod_rate_mana']; +} +?> + +
+ + Creating! + + Editing! + +
+ + + +
+
+Name: +
+
+ +
+
+ +
+
+Icon: +
+
+ +
+
+ +
+
+Type: +
+
+ +
+
+ +
+
+Time to Create: +
+
+ +
+
+ +
+
+Score: +
+
+ +
+
+ +
+ +
+
+Can Defend? +
+
+ +
+
+ +
+
+Defense: +
+
+ +
+
+ +
+
+Attack: +
+
+ +
+
+ +
+
+Strong Against: +
+
+ +
+
+ +
+
+Weak Against: +
+
+ +
+
+ +
+
+Turn: +
+
+ +
+
+ +
+
+Ability: +
+
+ +
+
+ +
+ +
+
+Cost Unit: +
+
+ +X +
+
+ +
+ +
+
+Cost Food: +
+
+ +
+
+ +
+
+Cost Wood: +
+
+ +
+
+ +
+
+Cost Stone: +
+
+ +
+
+ +
+
+Cost iron: +
+
+ +
+
+ +
+
+Cost Mana: +
+
+ +
+
+ +
+ +
+
+Mos Rate Food: +
+
+ +
+
+ +
+
+Mod Rate Wood: +
+
+ +
+
+ +
+
+Mod Rate Stone: +
+
+ +
+
+ +
+
+Mod Rate Iron: +
+
+ +
+
+ +
+
+Mod Rate Mana: +
+
+ +
+
+ +
+ +
+ diff --git a/Mourne-CI/application/views/admin/weather_tool/list.php b/Mourne-CI/application/views/admin/weather_tool/list.php new file mode 100755 index 0000000..aef6875 --- /dev/null +++ b/Mourne-CI/application/views/admin/weather_tool/list.php @@ -0,0 +1,43 @@ +load->helper('url'); + +$link_edit = 'admin/weather/'; +$link_new = 'admin/weather'; + +$link_back = 'admin/admin_panel'; +?> + + +
+ + + + +
+ +
+ +
+ [] +
+
+ [Eff: ] +
+
+ [] +
+
+ +
+
+ Edit +
+ +
+ + +
\ No newline at end of file diff --git a/Mourne-CI/application/views/admin/weather_tool/weather.php b/Mourne-CI/application/views/admin/weather_tool/weather.php new file mode 100755 index 0000000..60ee8d0 --- /dev/null +++ b/Mourne-CI/application/views/admin/weather_tool/weather.php @@ -0,0 +1,323 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_back = 'admin/weather_tool'; + +$name_effect = 'effect'; +$attr_effect = 'class="drop"'; + +$attr_name = array( + 'name' => 'name', + 'class' => 'input'); + +$attr_description = array( + 'name' => 'description', + 'rows' => '5', + 'cols' => '50', + 'class' => 'textarea'); + +$attr_art = array( + 'name' => 'art', + 'class' => 'input'); + +$attr_css = array( + 'name' => 'css', + 'class' => 'input'); + +$attr_cost_food = array( + 'name' => 'cost_food', + 'class' => 'input'); + +$attr_cost_wood = array( + 'name' => 'cost_wood', + 'class' => 'input'); + +$attr_cost_stone = array( + 'name' => 'cost_stone', + 'class' => 'input'); + +$attr_cost_iron = array( + 'name' => 'cost_iron', + 'class' => 'input'); + +$attr_cost_mana = array( + 'name' => 'cost_mana', + 'class' => 'input'); + +$attr_mod_max_food = array( + 'name' => 'mod_max_food', + 'class' => 'input'); + +$attr_mod_max_wood = array( + 'name' => 'mod_max_wood', + 'class' => 'input'); + +$attr_mod_max_stone = array( + 'name' => 'mod_max_stone', + 'class' => 'input'); + +$attr_mod_max_iron = array( + 'name' => 'mod_max_iron', + 'class' => 'input'); + +$attr_mod_max_mana = array( + 'name' => 'mod_max_mana', + 'class' => 'input'); + + +$attr_mod_rate_food = array( + 'name' => 'mod_rate_food', + 'class' => 'input'); + +$attr_mod_rate_wood = array( + 'name' => 'mod_rate_wood', + 'class' => 'input'); + +$attr_mod_rate_stone = array( + 'name' => 'mod_rate_stone', + 'class' => 'input'); + +$attr_mod_rate_iron = array( + 'name' => 'mod_rate_iron', + 'class' => 'input'); + +$attr_mod_rate_mana = array( + 'name' => 'mod_rate_mana', + 'class' => 'input'); + + +$attr_mod_percent_food = array( + 'name' => 'mod_percent_food', + 'class' => 'input'); + +$attr_mod_percent_wood = array( + 'name' => 'mod_percent_wood', + 'class' => 'input'); + +$attr_mod_percent_stone = array( + 'name' => 'mod_percent_stone', + 'class' => 'input'); + +$attr_mod_percent_iron = array( + 'name' => 'mod_percent_iron', + 'class' => 'input'); + +$attr_mod_percent_mana = array( + 'name' => 'mod_percent_mana', + 'class' => 'input'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'submit'); + +if ($new) +{ + //set every value with set_value() + $link_form = 'admin/weather'; + + $attr_name['value'] = set_value('name'); + $attr_description['value'] = set_value('description'); + $attr_art['value'] = set_value('art'); + $attr_css['value'] = set_value('css'); + //weather effect goes from controller + + $attr_mod_max_food['value'] = set_value('mod_max_food'); + $attr_mod_max_wood['value'] = set_value('mod_max_wood'); + $attr_mod_max_stone['value'] = set_value('mod_max_stone'); + $attr_mod_max_iron['value'] = set_value('mod_max_iron'); + $attr_mod_max_mana['value'] = set_value('mod_max_mana'); + + $attr_mod_percent_food['value'] = set_value('mod_percent_food'); + $attr_mod_percent_wood['value'] = set_value('mod_percent_wood'); + $attr_mod_percent_stone['value'] = set_value('mod_percent_stone'); + $attr_mod_percent_iron['value'] = set_value('mod_percent_iron'); + $attr_mod_percent_mana['value'] = set_value('mod_percent_mana'); +} +else +{ + //set every value from data sent + $link_form = 'admin/weather/' . $weather['id']; + + + + $attr_name['value'] = $weather['name']; + $attr_description['value'] = $weather['description']; + $attr_art['value'] = $weather['art']; + $attr_css['value'] = $weather['css']; + + $seff = $weather['effect']; + + $attr_mod_max_food['value'] = $weather['mod_max_food']; + $attr_mod_max_wood['value'] = $weather['mod_max_wood']; + $attr_mod_max_stone['value'] = $weather['mod_max_stone']; + $attr_mod_max_iron['value'] = $weather['mod_max_iron']; + $attr_mod_max_mana['value'] = $weather['mod_max_mana']; + + $attr_mod_percent_food['value'] = $weather['mod_percent_food']; + $attr_mod_percent_wood['value'] = $weather['mod_percent_wood']; + $attr_mod_percent_stone['value'] = $weather['mod_percent_stone']; + $attr_mod_percent_iron['value'] = $weather['mod_percent_iron']; + $attr_mod_percent_mana['value'] = $weather['mod_percent_mana']; +} +?> + +
+ + Creating! + + Editing! + +
+ + + +
+
+Name: +
+
+ +
+
+ +
+
+Description: +
+
+ +
+
+ +
+
+Art: +
+
+ +
+
+ +
+
+CSS: +
+
+ +
+
+ +
+ +
+
+Effect: +
+
+ +
+
+ +
+ +
+
+Mod Max Food: +
+
+ +
+
+ +
+
+Mod Max Wood: +
+
+ +
+
+ +
+
+Mod Max Stone: +
+
+ +
+
+ +
+
+Mod Max Iron: +
+
+ +
+
+ +
+
+Mod Max Mana: +
+
+ +
+
+ +
+ +
+
+Mod Percent Food: +
+
+ +
+
+ +
+
+Mod Percent Wood: +
+
+ +
+
+ +
+
+Mod Percent Stone: +
+
+ +
+
+ +
+
+Mod Percent Iron: +
+
+ +
+
+ +
+
+Mod Percent Mana: +
+
+ +
+
+ + +
+ +
+ diff --git a/Mourne-CI/application/views/building/al_research.php b/Mourne-CI/application/views/building/al_research.php new file mode 100755 index 0000000..164f6a2 --- /dev/null +++ b/Mourne-CI/application/views/building/al_research.php @@ -0,0 +1,5 @@ +
+
+ Research in progress: +
+
\ No newline at end of file diff --git a/Mourne-CI/application/views/building/assignments.php b/Mourne-CI/application/views/building/assignments.php new file mode 100755 index 0000000..3c30860 --- /dev/null +++ b/Mourne-CI/application/views/building/assignments.php @@ -0,0 +1,80 @@ +load->helper('form'); +$link_form = 'building/doassign'; + +$attr_deass = array( + 'name' => 'submit', + 'value' => 'Deassign', + 'class' => 'submit'); + +$attr_input = array( + 'name' => 'num_assign', + 'maxlength' => '10', + 'size' => '8', + 'class' => 'input'); + +$attr_assign = array( + 'name' => 'submit', + 'value' => 'Assign', + 'class' => 'submit'); +?> +
+ + +
+ + + + + +
+
+
+
+
+
+ + + + Assigned + / + + +
+ + + + + +
+
+ +
+
+
+ + + + (You have: + + + + ) + + + + 0) + + / + + +
+ +
+ + +
+This building doesn't have assignments! +
+ +
diff --git a/Mourne-CI/application/views/building/building_create.php b/Mourne-CI/application/views/building/building_create.php new file mode 100755 index 0000000..9e24dfd --- /dev/null +++ b/Mourne-CI/application/views/building/building_create.php @@ -0,0 +1,113 @@ +load->helper('url'); +$this->load->helper('form'); +$this->load->helper('date'); + +$link_form = 'building/docreate/' . $slotid; + +$attr_create_num = array( + 'name' => 'create_num', + 'size' => '8', + 'maxlength' => '10', + 'class' => 'input'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Create!', + 'class' => 'submit'); + +?> +
+ +
+
+ Create: +
+
+
+
+ F: +
+
+ +
+
+
+
+ W: +
+
+ +
+
+
+
+ S: +
+
+ +
+
+
+
+ I: +
+
+ +
+
+
+
+ M: +
+
+ +
+
+
+
+
+
+ D: +
+
+ + / +
+
+
+
+
+
+
+ Unit: +
+
+ + + / + + + Nothing + +
+
+
+
+
+
+ +
+ / + +
+ +
+
+
+ +
+ This building cannot create units. +
+ +
\ No newline at end of file diff --git a/Mourne-CI/application/views/building/events.php b/Mourne-CI/application/views/building/events.php new file mode 100755 index 0000000..369910b --- /dev/null +++ b/Mourne-CI/application/views/building/events.php @@ -0,0 +1,28 @@ +load->helper('date'); + +$dstring = '%Y-%m-%d - %H:%i:%s'; +?> + +
+
+ + + +
+ +
+ + + Type: Vid: D1: + D2: Ends: + Left:
+
+ + +
+
+ +
+
+ diff --git a/Mourne-CI/application/views/building/header.php b/Mourne-CI/application/views/building/header.php new file mode 100755 index 0000000..3830ebe --- /dev/null +++ b/Mourne-CI/application/views/building/header.php @@ -0,0 +1,13 @@ +load->helper('murl'); +$this->load->helper('url'); + +$link_back = 'village/selected'; +?> +
+
+ +
+
\ No newline at end of file diff --git a/Mourne-CI/application/views/building/list.php b/Mourne-CI/application/views/building/list.php new file mode 100755 index 0000000..0f79759 --- /dev/null +++ b/Mourne-CI/application/views/building/list.php @@ -0,0 +1,86 @@ +load->helper('url'); +$this->load->helper('date'); +$this->load->helper('form'); + +$link_back = 'village/selected'; + +$link_form = 'building/dobuild'; + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Build!', + 'class' => 'submit'); +?> +
+ + +
+
+
+
+ D: +
+
+ +
+
+
+
+ F: +
+
+ +
+
+
+
+ W: +
+
+ +
+
+
+
+ S: +
+
+ +
+
+
+
+ I: +
+
+ +
+
+
+
+ M: +
+
+ +
+
+
+
+ : () +
+
+
+
+ + + + + +
+
+
+ +
diff --git a/Mourne-CI/application/views/building/menu.php b/Mourne-CI/application/views/building/menu.php new file mode 100755 index 0000000..de755db --- /dev/null +++ b/Mourne-CI/application/views/building/menu.php @@ -0,0 +1,36 @@ +load->helper('url'); + +$link_stats = 'building/stats/' . $slotid; +$link_create = 'building/create/' . $slotid; +$link_assignments = 'building/assign/' . $slotid; +$link_spells = 'building/spells/' . $slotid; +$link_research = 'building/research/' . $slotid; +$link_events = 'building/events/' . $slotid; +$link_upgrade = 'building/upgrade/' . $slotid; +?> +
+
+
+Stats +
+
+Create +
+ +
+Spells +
+ +
+Events +
+
+Uprade +
+
+
\ No newline at end of file diff --git a/Mourne-CI/application/views/building/next_event.php b/Mourne-CI/application/views/building/next_event.php new file mode 100755 index 0000000..bec0730 --- /dev/null +++ b/Mourne-CI/application/views/building/next_event.php @@ -0,0 +1,17 @@ + +load->helper('date'); + +$dstring = '%Y-%m-%d - %H:%i:%s'; +?> + +
+
+ Type: Vid: D1: + Ends: Left: +
+
+ + + diff --git a/Mourne-CI/application/views/building/research.php b/Mourne-CI/application/views/building/research.php new file mode 100755 index 0000000..7e17ea8 --- /dev/null +++ b/Mourne-CI/application/views/building/research.php @@ -0,0 +1,166 @@ +load->helper('form'); +$this->load->helper('date'); + +$link_form = 'building/doresearch'; + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Research!', + 'class' => 'submit'); +?> +
+ +
+Primary researches: +
+ +
+
+
+
+ D: +
+
+ +
+
+
+
+ F: +
+
+ +
+
+
+
+ W: +
+
+ +
+
+
+
+ S: +
+
+ +
+
+
+
+ I: +
+
+ +
+
+
+
+ M: +
+
+ +
+
+
+
+ +
+
+
+
+ + + + + +
+
+
+ +
+ +
+No primary researches. +
+ + +
+Secondary researches: +
+ +
+
+
+
+ D: +
+
+ +
+
+
+
+ F: +
+
+ +
+
+
+
+ W: +
+
+ +
+
+
+
+ S: +
+
+ +
+
+
+
+ I: +
+
+ +
+
+
+
+ M: +
+
+ +
+
+
+
+ +
+
+
+
+ + + + + +
+
+
+ + +
+No Secondary researches. +
+ +
\ No newline at end of file diff --git a/Mourne-CI/application/views/building/spacer.php b/Mourne-CI/application/views/building/spacer.php new file mode 100755 index 0000000..650aa1b --- /dev/null +++ b/Mourne-CI/application/views/building/spacer.php @@ -0,0 +1,2 @@ +
+
\ No newline at end of file diff --git a/Mourne-CI/application/views/building/spells.php b/Mourne-CI/application/views/building/spells.php new file mode 100755 index 0000000..b4e83d3 --- /dev/null +++ b/Mourne-CI/application/views/building/spells.php @@ -0,0 +1,103 @@ +load->helper('form'); +$this->load->helper('date'); + +$link_form = 'building/dospell'; + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Use', + 'class' => 'submit'); +?> +
+ + +
+ + + +
+
+
+ D: +
+
+ +
+
+
+
+ C: +
+
+ +
+
+
+
+ F: +
+
+ +
+
+
+
+ W: +
+
+ +
+
+
+
+ S: +
+
+ +
+
+
+
+ I: +
+
+ +
+
+
+
+ M: +
+
+ +
+
+
+
+ +
+
+
+
+ + + + + + + + + + + +
+
+
+ + +
+ This building doesn't have spells. +
+ +
\ No newline at end of file diff --git a/Mourne-CI/application/views/building/stats.php b/Mourne-CI/application/views/building/stats.php new file mode 100755 index 0000000..bc5f0ba --- /dev/null +++ b/Mourne-CI/application/views/building/stats.php @@ -0,0 +1,91 @@ +
+
+
+ Modifies Maximum Vales: +
+
+
+ F: +
+
+ +
+
+
+
+ W: +
+
+ +
+
+
+
+ S: +
+
+ +
+
+
+
+ I: +
+
+ +
+
+
+
+ M: +
+
+ +
+
+
+
+ Modifies Rates: +
+
+
+ F: +
+
+ +
+
+
+
+ W: +
+
+ +
+
+
+
+ S: +
+
+ +
+
+
+
+ I: +
+
+ +
+
+
+
+ M: +
+
+ +
+
+
+
\ No newline at end of file diff --git a/Mourne-CI/application/views/building/upgrade.php b/Mourne-CI/application/views/building/upgrade.php new file mode 100755 index 0000000..58e4d44 --- /dev/null +++ b/Mourne-CI/application/views/building/upgrade.php @@ -0,0 +1,98 @@ +load->helper('url'); +$this->load->helper('form'); +$this->load->helper('date'); + +$link_form = 'building/doupgrade/'; + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Upgrade!', + 'class' => 'submit'); +?> +
+ + + + +
+
+
+
+ D: +
+
+ +
+
+
+
+ F: +
+
+ +
+
+
+
+ W: +
+
+ +
+
+
+
+ S: +
+
+ +
+
+
+
+ I: +
+
+ +
+
+
+
+ M: +
+
+ +
+
+
+
+ + Already upgrading. + + Technology requirement not met. + + Not enough resources. + + Every requirement met. + +
+
+
+
+ + + + + + Cannot Upgrade. + +
+
+
+ +
+ This building cannot be upgraded. +
+ +
\ No newline at end of file diff --git a/Mourne-CI/application/views/changelog/changelog.php b/Mourne-CI/application/views/changelog/changelog.php new file mode 100755 index 0000000..9e99c1b --- /dev/null +++ b/Mourne-CI/application/views/changelog/changelog.php @@ -0,0 +1,30 @@ +changelog lawl!
+load->helper('date'); +$datestring = '%y.%m.%d - %H:%i'; +?> + + $required_userlevel): + $this->load->helper('url'); + + $link_new_commit = 'changelog/add_new_commit'; + $link_new_version = 'changelog/add_new_version'; +?> + New Commit + New version
+ + + + +
+ Version:
+ + + () -
+ + +
+ + + sorry, nothing here :( + diff --git a/Mourne-CI/application/views/changelog/new_commit.php b/Mourne-CI/application/views/changelog/new_commit.php new file mode 100755 index 0000000..0000df3 --- /dev/null +++ b/Mourne-CI/application/views/changelog/new_commit.php @@ -0,0 +1,27 @@ +New commit lawl! +load->helper('url'); +$this->load->helper('form'); + +$link_back = 'changelog/show'; + +$link_form = 'changelog/add_new_commit'; + +$attr_form = array( + 'class' => 'changelog_form'); + +$attr_text = array( + 'name' => 'text', + 'class' => 'changelog_input'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'changelog_submit'); +?> +Back
+ + + + + diff --git a/Mourne-CI/application/views/changelog/new_version.php b/Mourne-CI/application/views/changelog/new_version.php new file mode 100755 index 0000000..144d617 --- /dev/null +++ b/Mourne-CI/application/views/changelog/new_version.php @@ -0,0 +1,27 @@ +New version lawl! +load->helper('url'); +$this->load->helper('form'); + +$link_back = 'changelog/show'; + +$link_form = 'changelog/add_new_version'; + +$attr_form = array( + 'class' => 'changelog_form'); + +$attr_text = array( + 'name' => 'text', + 'class' => 'changelog_input'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Submit', + 'class' => 'changelog_submit'); +?> +Back
+ + + + + diff --git a/Mourne-CI/application/views/forum/notimpl.php b/Mourne-CI/application/views/forum/notimpl.php new file mode 100755 index 0000000..9eb5514 --- /dev/null +++ b/Mourne-CI/application/views/forum/notimpl.php @@ -0,0 +1,5 @@ +
+
+The Forum is a Lie! +
+
\ No newline at end of file diff --git a/Mourne-CI/application/views/hero/character.php b/Mourne-CI/application/views/hero/character.php new file mode 100644 index 0000000..0360ea9 --- /dev/null +++ b/Mourne-CI/application/views/hero/character.php @@ -0,0 +1,379 @@ +load->helper('equipment'); +$this->load->helper('murl'); +$this->load->helper('class'); +$this->load->helper('url'); + +if (($d1 !== FALSE) && ($d2 !== FALSE)) + $link_sel = 'hero/selected/inventory/' . $d1 . '/' . $d2 . '/'; +else + $link_sel = 'hero/selected/inventory/'; +?> +
+ +
+
+
+
+ +
+
+ Level +
+
+ +
+
+ +
+
+
+ +
+
+
+
+
+
+ Agi: +
+
+ +
+
+
+
+ Str: +
+
+ +
+
+
+
+ Sta: +
+
+ +
+
+
+
+ Int: +
+
+ +
+
+
+
+ Spi: +
+
+ +
+
+
+
+
+
+ Ap: +
+
+ +
+
+
+
+ Dodge: +
+
+ % +
+
+
+
+ Parry: +
+
+ % +
+
+
+
+ Hit: +
+
+ % +
+
+
+
+ Crit: +
+
+ % +
+
+
+
+
+
+
+ Armor: +
+
+ +
+
+
+
+ Damage Min: +
+
+ +
+
+
+
+ Damage Max: +
+
+ +
+
+
+
+ Ranged Damage Min: +
+
+ +
+
+
+
+ Ranged Damage Max: +
+
+ +
+
+
+
+ Heal Min: +
+
+ +
+
+
+
+ Life Leech: +
+
+ % +
+
+
+
+ Mana Leech: +
+
+ % +
+
+
+
+ + + + +
+ +
\ No newline at end of file diff --git a/Mourne-CI/application/views/hero/create.php b/Mourne-CI/application/views/hero/create.php new file mode 100644 index 0000000..db84ccc --- /dev/null +++ b/Mourne-CI/application/views/hero/create.php @@ -0,0 +1,190 @@ +load->helper('form'); + +$link_form = 'hero/create'; + +$attr_name = array( + 'name' => 'name', + 'size' => '17', + 'maxlength' => 15, + 'class' => 'input'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Create!', + 'class' => 'submit'); + +$gender = set_value('gender'); + +$m = FALSE; +$fm = FALSE; + +if ($gender == 1) + $m = TRUE; +elseif ($gender == 2) + $fm = TRUE; + +$c1 = FALSE; +$c2 = FAlSE; +$c3 = FALSE; +$c4 = FALSE; +$c5 = FALSE; +$c6 = FALSE; + +$cl = set_value('class'); + +switch ($cl) +{ + case 1: + $c1 = TRUE; + break; + case 2: + $c2 = TRUE; + break; + case 3: + $c3 = TRUE; + break; + case 4: + $c4 = TRUE; + break; + case 5: + $c5 = TRUE; + break; + case 6: + $c6 = TRUE; + break; +} +?> + +
+
+
+Create new hero! +
+ +
+ +
+
+name: +
+
+ +
+
+
+ +
+Gender: +
+
+
+
+Male: +
+
+Female: +
+
+
+
+Class: +
+
+
+Fighter Classes: +
+ +
+
+
+Warrior +
+
+cool description here +
+
+
+
+ +
+
+
+ +
+
+
+Rogue +
+
+cool description here +
+
+
+
+ +
+
+
+ +
+
+
+Archer +
+
+cool description here +
+
+
+
+ +
+
+
+
+
+Healer classes: +
+ +
+
+
+? +
+
+cool description here +
+
+
+
+ +
+
+
+
+
+Hybrid classes: +
+ +
+
+
+? +
+
+cool description here +
+
+
+
+ +
+
+
+
+ +
+ +
+
\ No newline at end of file diff --git a/Mourne-CI/application/views/hero/delete_confirm.php b/Mourne-CI/application/views/hero/delete_confirm.php new file mode 100644 index 0000000..4a7ae09 --- /dev/null +++ b/Mourne-CI/application/views/hero/delete_confirm.php @@ -0,0 +1,40 @@ +load->helper('url'); +$this->load->helper('form'); +$this->load->helper('class'); + +$link_back = 'hero/select'; + +$link_form = 'hero/delete/' . $id; + +$attr_confirm = array( + 'name' => 'confirm', + 'class' => 'input'); + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Delete!', + 'class' => 'submit'); +?> +
+ + +
+ If you sure you want to delete this character write DELETE (hase to be all uppercase!) + into the field and hit Delete! +
+
+ + [Level ] + + +
+
+ + + + +
+
\ No newline at end of file diff --git a/Mourne-CI/application/views/hero/hero_menu.php b/Mourne-CI/application/views/hero/hero_menu.php new file mode 100644 index 0000000..bf721d4 --- /dev/null +++ b/Mourne-CI/application/views/hero/hero_menu.php @@ -0,0 +1,29 @@ +load->helper('url'); + +$link_stats = 'hero/selected/stats'; +$link_inventory = 'hero/selected/inventory'; +$link_talents = 'hero/selected/talents'; +$link_spells = 'hero/selected/spells'; +$link_actionbars = 'hero/selected/actionbars'; +?> +
+
+
+Stats +
+ + +
+Spells +
+ +
+
+
diff --git a/Mourne-CI/application/views/hero/inventory.php b/Mourne-CI/application/views/hero/inventory.php new file mode 100644 index 0000000..6c471cd --- /dev/null +++ b/Mourne-CI/application/views/hero/inventory.php @@ -0,0 +1,43 @@ +load->helper('murl'); +$this->load->helper('url'); +$this->load->helper('equipment'); + +if (!isset($d1)) + $d1 = FALSE; + +if (!isset($d2)) + $d2 = FALSE; + +if (!isset($target)) + $target = 'hero/selected/inventory/'; + +if (($d1 !== FALSE) && ($d2 !== FALSE)) + $link_sel = $target . $d1 . '/' . $d2 . '/'; +else + $link_sel = $target; +?> + +
+ + + +
+ + + + + +
+
+ +
+ + + +
\ No newline at end of file diff --git a/Mourne-CI/application/views/hero/inventory_view.php b/Mourne-CI/application/views/hero/inventory_view.php new file mode 100644 index 0000000..180e8f6 --- /dev/null +++ b/Mourne-CI/application/views/hero/inventory_view.php @@ -0,0 +1,22 @@ +
+ +
+ +
+ +
+
+ +
+
+ +
+
+
+ + + + + + + diff --git a/Mourne-CI/application/views/hero/menu.php b/Mourne-CI/application/views/hero/menu.php new file mode 100644 index 0000000..a8a3c7f --- /dev/null +++ b/Mourne-CI/application/views/hero/menu.php @@ -0,0 +1,45 @@ +load->helper('url'); + +$link_quest = 'hero/quest'; +$link_hero = 'hero/selected'; +$link_village = 'hero/village'; +$link_settings = 'hero/settings'; +$link_select = 'hero/select'; + +switch ($this->hero['class']) +{ + case 1: + $class = 'warrior'; + break; + case 2: + $class = 'rogue'; + break; + case 3: + $class = 'archer'; + break; + default: + $class = ''; + break; +} + +?> +
+
+
+Quest +
+
+ +
+ + +
+Select +
+
+
\ No newline at end of file diff --git a/Mourne-CI/application/views/hero/select.php b/Mourne-CI/application/views/hero/select.php new file mode 100644 index 0000000..3b1839a --- /dev/null +++ b/Mourne-CI/application/views/hero/select.php @@ -0,0 +1,61 @@ +load->helper('url'); +$this->load->helper('form'); +$this->load->helper('class'); +$this->load->helper('murl'); + +$link_create = 'hero/create'; +$link_delete = 'hero/delete/'; + +$link_form = 'hero/select'; + +$attr_submit = array( + 'name' => 'submit', + 'value' => 'Select!', + 'class' => 'submit'); +?> +
+ + + + +
+
+ + [Level ] + + +
+
+
+ Delete +
+
+ + + + + + + Selected + +
+
+
+ + + + +
+ You don't have any Heroes. +
+ + +
\ No newline at end of file diff --git a/Mourne-CI/application/views/hero/stats.php b/Mourne-CI/application/views/hero/stats.php new file mode 100644 index 0000000..b1561a0 --- /dev/null +++ b/Mourne-CI/application/views/hero/stats.php @@ -0,0 +1,298 @@ +load->helper('form'); +//$this->load->helper('url'); +$this->load->helper('class'); +$this->load->helper('murl'); + +$link_form = 'hero/addstat'; + +$attr_add_submit = array( + 'name' => 'submit', + 'value' => 'Add!', + 'class' => 'submit'); + +?> +
+
+
+
+ + [Level ] + + +
+ 0): ?> +
+
+
+
+ / +
+
+
+
+
+
+ / +
+
+
+
+
+
+ / +
+
+ +
+
+
+
+ Dead +
+
+
+
+
+
+
+
+ / +
+
+ +
+
+ +
+
+
+ +
+
+ Agility: + () +
+
+ Increases your critical chance, attackpower, dodge. +
+
+ + + + + + + No Points + +
+
+ +
+
+ Strength: + () +
+
+ Increases your critical chance, attackpower, parry chance. +
+
+ + + + + + + No Points + +
+
+
+
+ Stamina: + () +
+
+ Increases your maximum health. +
+
+ + + + + + + No Points + +
+
+
+
+ Intellect: + () +
+
+ Increases your maximum mana, critical chance. +
+
+ + + + + + + No Points + +
+
+
+
+ Spirit: + () +
+
+ Increases your in combat regeneration. +
+
+ + + + + + + No Points + +
+
+
+
+ Stat Points: +
+
+
+
+
+
+
+
+ Attackpower: +
+
+ +
+
+
+
+ Dodge: +
+
+ % +
+
+
+
+ Parry: +
+
+ % +
+
+
+
+ Hit: +
+
+ % +
+
+
+
+ Crit: +
+
+ % +
+
+
+
+ Armor: +
+
+ +
+
+
+
+ Mana Leech: +
+
+ % +
+
+
+
+
+
+
+
+ Damage Min: +
+
+ +
+
+
+
+ Damage Max: +
+
+ +
+
+
+
+ Ranged Damage Min: +
+
+ +
+
+
+
+ Ranged Damage Max: +
+
+ +
+
+
+
+ Heal Min: +
+
+ +
+
+
+
+ Heal Max: +
+
+ +
+
+
+
+ Life Leech: +
+
+ % +
+
+ + + +
+
+
+
\ No newline at end of file diff --git a/Mourne-CI/application/views/index.html b/Mourne-CI/application/views/index.html new file mode 100755 index 0000000..c942a79 --- /dev/null +++ b/Mourne-CI/application/views/index.html @@ -0,0 +1,10 @@ + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + + \ No newline at end of file diff --git a/Mourne-CI/application/views/login/login.php b/Mourne-CI/application/views/login/login.php new file mode 100755 index 0000000..bdc310e --- /dev/null +++ b/Mourne-CI/application/views/login/login.php @@ -0,0 +1,33 @@ +login lawl! +load->helper('url'); + +$link_register = 'user/register'; + +$attr_form = array('class' => 'login_form'); + +$attr_username = array( + 'name' => 'username', + 'maxlength' => '32', + 'class' => 'login_input'); +$attr_username['value'] = set_value('username'); + +$attr_password = array( + 'name' => 'password', + 'maxlength' => '32', + 'class' => 'login_input'); + +$attr_submit = array( + 'name' => 'login', + 'value' => 'Login', + 'class' => 'login_submit'); +?> + + + + +Username:
+Password:
+ + +Register diff --git a/Mourne-CI/application/views/mail/drafts.php b/Mourne-CI/application/views/mail/drafts.php new file mode 100755 index 0000000..c1f0f3a --- /dev/null +++ b/Mourne-CI/application/views/mail/drafts.php @@ -0,0 +1,71 @@ +load->helper('url'); +$this->load->helper('date'); + +$ds = "%Y-%m-%d - %H:%i:%s"; + +$link_read = "mail/compose/"; +$link_delete = "mail/del_draft/"; +?> +
+ + +
+ +
+ Del +
+ +
+ Time +
+ +
+ To +
+ +
+ Subject +
+ +
+ + + +
+ + + + + +
+You don't have drafts. +
+ +
\ No newline at end of file diff --git a/Mourne-CI/application/views/mail/inbox.php b/Mourne-CI/application/views/mail/inbox.php new file mode 100755 index 0000000..7107659 --- /dev/null +++ b/Mourne-CI/application/views/mail/inbox.php @@ -0,0 +1,69 @@ +load->helper('url'); +$this->load->helper('date'); + +$ds = "%Y-%m-%d - %H:%i:%s"; + +$link_read = "mail/read/"; + +?> +
+ + +
+ +
+ New +
+ +
+ Time +
+ +
+ Sender +
+ +
+ Subject +
+ +
+ + + + + +
+ +
+ + +
+ + ! + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+
+ + + +
+You don't have mails. +
+ +
\ No newline at end of file diff --git a/Mourne-CI/application/views/mail/menu.php b/Mourne-CI/application/views/mail/menu.php new file mode 100755 index 0000000..63c3aec --- /dev/null +++ b/Mourne-CI/application/views/mail/menu.php @@ -0,0 +1,29 @@ +load->helper('url'); + +$link_inbox = 'mail/inbox'; +$link_new = 'mail/compose'; +$link_drafts = 'mail/drafts'; +$link_sent = 'mail/sent'; +$link_friends = 'mail/friends'; + +?> +
+
+
+Inbox +
+
+New +
+
+Drafts +
+
+Sent +
+ +
+
\ No newline at end of file diff --git a/Mourne-CI/application/views/mail/new.php b/Mourne-CI/application/views/mail/new.php new file mode 100755 index 0000000..f727161 --- /dev/null +++ b/Mourne-CI/application/views/mail/new.php @@ -0,0 +1,89 @@ +load->helper('url'); +$this->load->helper('form'); + +$link_form = 'mail/compose'; + +$attr_name = array( + 'name' => 'name', + 'class' => 'input'); + +$attr_subject = array( + 'name' => 'subject', + 'size' => '68', + 'maxlenght' => '100', + 'class' => 'input'); + +$attr_textarea = array( + 'name' => 'message', + 'rows' => '15', + 'cols' => '90', + 'class' => 'textarea'); + +$attr_send = array( + 'name' => 'send', + 'value' => 'Send!', + 'class' => 'submit'); + +$attr_draft = array( + 'name' => 'draft', + 'value' => 'To Drafts', + 'class' => 'submit'); + +if ($draft) +{ + $attr_name['value'] = $draft['name']; + $attr_subject['value'] = $draft['subject']; + $attr_textarea['value'] = $draft['body']; +} +else +{ + $attr_name['value'] = set_value('name'); + $attr_subject['value'] = set_value('subject'); + $attr_message['value'] = set_value('message'); +} + +?> +
+ + + +
+
+Username: +
+
+ +
+
+ +
+
+Subject: +
+
+ +
+
+ +
+
+Message: +
+
+ +
+ +
+ +
+ +
+ +
+ +
+ + + +
\ No newline at end of file diff --git a/Mourne-CI/application/views/mail/read.php b/Mourne-CI/application/views/mail/read.php new file mode 100755 index 0000000..887eb6c --- /dev/null +++ b/Mourne-CI/application/views/mail/read.php @@ -0,0 +1,65 @@ +load->helper('form'); +$this->load->helper('url'); +$this->load->helper('date'); + +$ds = '%Y.%m.%d %H:%m:%s'; + +$link_back = 'mail/inbox'; + +if ($mail) +{ + $link_reply = 'mail/compose/' . $mail['id']; + $link_delete = 'mail/delete/' . $mail['id']; +} +?> +
+ + +
+
+ Sender: +
+
+ +
+
+
+
+ Sent at: +
+
+ +
+
+
+
+ Subject: +
+
+ +
+
+
+ +
+ + +
+You cannot read that message. +
+ +
\ No newline at end of file diff --git a/Mourne-CI/application/views/mail/sent.php b/Mourne-CI/application/views/mail/sent.php new file mode 100755 index 0000000..22b3214 --- /dev/null +++ b/Mourne-CI/application/views/mail/sent.php @@ -0,0 +1,65 @@ +load->helper('url'); +$this->load->helper('date'); + +$ds = "%Y-%m-%d - %H:%i:%s"; + +$link_read = "mail/sread/"; + +?> +
+ + +
+ +
+
+ +
+ Time +
+ +
+ To +
+ +
+ Subject +
+ +
+ + + + + +
+ +
+ + +
+
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+
+ + + +
+You don't have sent mails. +
+ +
\ No newline at end of file diff --git a/Mourne-CI/application/views/mail/sread.php b/Mourne-CI/application/views/mail/sread.php new file mode 100755 index 0000000..555ab95 --- /dev/null +++ b/Mourne-CI/application/views/mail/sread.php @@ -0,0 +1,48 @@ +load->helper('form'); +$this->load->helper('url'); +$this->load->helper('date'); + +$ds = '%Y.%m.%d %H:%m:%s'; + +$link_back = 'mail/inbox'; + +?> +
+ + +
+
+ Sent to: +
+
+ +
+
+
+
+ Sent at: +
+
+ +
+
+
+
+ Subject: +
+
+ +
+
+
+ +
+ +
+You cannot read that message. +
+ +
\ No newline at end of file diff --git a/Mourne-CI/application/views/menu.php b/Mourne-CI/application/views/menu.php new file mode 100755 index 0000000..ec8adb4 --- /dev/null +++ b/Mourne-CI/application/views/menu.php @@ -0,0 +1,88 @@ +load->helper('url'); ?> + + +