Esempio n. 1
0
def test_campaign_map_with_special_rules(test):
    res = test
    from soundrts.campaign import Campaign
    from soundrts.definitions import rules, get_ai, style
    c = Campaign("soundrts/tests/single/campaign1")
    c.load_resources()
    map1 = c.chapters[1]
    map1.load_resources()
    map1.load_rules_and_ai(res)
    map1.load_style(res)
    assert rules.get("test", "cost") == [0, 0]
    assert rules.get("peasant", "cost") == [7000, 0]
    assert get_ai("easy") == ['get 7 peasant', 'goto -1']
    assert style.get("peasant", "noise") == ["7"]
    assert sounds.get_text("0") == "campaign1 map1"
    map1.unload_resources()
    c.unload_resources()
Esempio n. 2
0
def test_campaign(test):
    from soundrts.campaign import Campaign

    c = Campaign("soundrts/tests/single/campaign1")
    c.load_resources()
    assert sounds.get_text("0") == "campaign1"
    c.unload_resources()
Esempio n. 3
0
def test_campaign_map_with_special_rules(test):
    res = test
    from soundrts.campaign import Campaign
    from soundrts.definitions import rules, get_ai, style
    c = Campaign("soundrts/tests/single/campaign1")
    c.load_resources()
    map1 = c.chapters[1]
    map1.load_resources()
    map1.load_rules_and_ai(res)
    map1.load_style(res)
    assert rules.get("test", "cost") == [0, 0]
    assert rules.get("peasant", "cost") == [7000, 0]
    assert get_ai("easy") == ['get 7 peasant', 'goto -1']
    assert style.get("peasant", "noise") == ["7"]
    assert sounds.get_text("0") == "campaign1 map1"
    map1.unload_resources()
    c.unload_resources()
Esempio n. 4
0
def test_campaign_map(test):
    res = test
    from soundrts.campaign import Campaign
    from soundrts.definitions import get_ai, rules, style

    c = Campaign("soundrts/tests/single/campaign1")
    c.load_resources()
    map0 = c.chapters[0]
    map0.load_resources()
    map0.load_rules_and_ai(res)
    map0.load_style(res)
    assert rules.get("test", "cost") == [0, 0]
    assert rules.get("peasant", "cost") == [5000, 0]
    assert get_ai("easy") == ["get 5 peasant", "goto -1"]
    assert style.get("peasant", "noise") == ["5"]
    assert sounds.get_text("0") == "campaign1"
    map0.unload_resources()
    c.unload_resources()
Esempio n. 5
0
def test_campaign(test):
    from soundrts.campaign import Campaign
    c = Campaign("soundrts/tests/single/campaign1")
    c.load_resources()
    assert sounds.get_text("0") == "campaign1"
    c.unload_resources()