about summary refs log tree commit diff stats
path: root/Archipelago/messages.gd
blob: 63ce182856e18338486c50e044cd7c38d6093287 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
extends Node


func _ready():
	var label = Label.new()
	label.set_name("label")
	label.margin_right = 1920.0
	label.margin_bottom = 1080.0 - 20
	label.margin_left = 20.0
	label.align = Label.ALIGN_LEFT
	label.valign = Label.VALIGN_BOTTOM

	var dynamic_font = DynamicFont.new()
	dynamic_font.font_data = load("res://fonts/Lingo.ttf")
	dynamic_font.size = 36
	dynamic_font.outline_color = Color(0, 0, 0, 1)
	dynamic_font.outline_size = 2
	label.add_font_override("font", dynamic_font)

	add_child(label)


func showMessage(text):
	var label = self.get_node("label")
	if !label.text == "":
		label.text += "\n"
	label.text += text

	yield(get_tree().create_timer(10.0), "timeout")

	var newline = label.text.find("\n")
	if newline == -1:
		label.text = ""
	else:
		label.text = label.text.substr(newline + 1)
span> ["hatkirby"] )] class LingoWorld(World): """ Lingo is a first person indie puzzle game in the vein of The Witness. You find yourself in a mazelike, non-Euclidean world filled with 800 word puzzles that use a variety of different mechanics. """ game = "Lingo" web = LingoWebWorld() base_id = 444400 topology_present = True options_dataclass = LingoOptions options: LingoOptions item_name_to_id = { name: data.code for name, data in ALL_ITEM_TABLE.items() } location_name_to_id = { name: data.code for name, data in ALL_LOCATION_TABLE.items() } item_name_groups = ITEMS_BY_GROUP location_name_groups = LOCATIONS_BY_GROUP player_logic: LingoPlayerLogic def generate_early(self): if not (self.options.shuffle_doors or self.options.shuffle_colors or (self.options.sunwarp_access >= SunwarpAccess.option_unlock and self.options.victory_condition == VictoryCondition.option_pilgrimage)): if self.multiworld.players == 1: warning(f"{self.player_name}'s Lingo world doesn't have any progression items. Please turn on Door" f" Shuffle or Color Shuffle, or use item-blocked sunwarps with the Pilgrimage victory condition" f" if that doesn't seem right.") else: raise OptionError(f"{self.player_name}'s Lingo world doesn't have any progression items. Please turn on" f" Door Shuffle or Color Shuffle, or use item-blocked sunwarps with the Pilgrimage" f" victory condition.") self.player_logic = LingoPlayerLogic(self) def create_regions(self): create_regions(self) if not self.options.shuffle_postgame: state = CollectionState(self.multiworld) state.collect(LingoItem("Prevent Victory", ItemClassification.progression, None, self.player), True) # Note: relies on the assumption that real_items is a definitive list of real progression items in this # world, and is not modified after being created. for item in self.player_logic.real_items: state.collect(self.create_item(item), True) # Exception to the above: a forced good item is not considered a "real item", but needs to be here anyway. if self.player_logic.forced_good_item != "": state.collect(self.create_item(self.player_logic.forced_good_item), True) all_locations = self.multiworld.get_locations(self.player) state.sweep_for_advancements(locations=all_locations) unreachable_locations = [location for location in all_locations if not state.can_reach_location(location.name, self.player)] for location in unreachable_locations: if location.name in self.player_logic.event_loc_to_item.keys(): continue self.player_logic.real_locations.remove(location.name) location.parent_region.locations.remove(location) if len(self.player_logic.real_items) > len(self.player_logic.real_locations): raise OptionError(f"{self.player_name}'s Lingo world does not have enough locations to fit the number" f" of required items without shuffling the postgame. Either enable postgame" f" shuffling, or choose different options.") def create_items(self): pool = [self.create_item(name) for name in self.player_logic.real_items] if self.player_logic.forced_good_item != "": new_item = self.create_item(self.player_logic.forced_good_item) location_obj = self.multiworld.get_location("Second Room - Good Luck", self.player) location_obj.place_locked_item(new_item) item_difference = len(self.player_logic.real_locations) - len(pool) if item_difference: trap_percentage = self.options.trap_percentage traps = int(item_difference * trap_percentage / 100.0) non_traps = item_difference - traps if non_traps: skip_percentage = self.options.puzzle_skip_percentage skips = int(non_traps * skip_percentage / 100.0) non_skips = non_traps - skips for i in range(0, non_skips): pool.append(self.create_item(self.get_filler_item_name())) for i in range(0, skips): pool.append(self.create_item("Puzzle Skip")) if traps: if self.options.speed_boost_mode: self.options.trap_weights.value["Slowness Trap"] = 0 total_weight = sum(self.options.trap_weights.values()) if total_weight == 0: raise OptionError("Sum of trap weights must be at least one.") trap_counts = {name: int(weight * traps / total_weight) for name, weight in self.options.trap_weights.items()} trap_difference = traps - sum(trap_counts.values()) if trap_difference > 0: allowed_traps = [name for name in TRAP_ITEMS if self.options.trap_weights[name] > 0] for i in range(0, trap_difference): trap_counts[allowed_traps[i % len(allowed_traps)]] += 1 for name, count in trap_counts.items(): for i in range(0, count): pool.append(self.create_item(name)) self.multiworld.itempool += pool def create_item(self, name: str) -> Item: item = ALL_ITEM_TABLE[name] classification = item.classification if hasattr(self, "options") and self.options.shuffle_paintings and len(item.painting_ids) > 0 \ and not item.has_doors and all(painting_id not in self.player_logic.painting_mapping for painting_id in item.painting_ids) \ and "pilgrim_painting2" not in item.painting_ids: # If this is a "door" that just moves one or more paintings, and painting shuffle is on and those paintings # go nowhere, then this item should not be progression. The Pilgrim Room painting is special and needs to be # excluded from this. classification = ItemClassification.filler return LingoItem(name, classification, item.code, self.player) def set_rules(self): self.multiworld.completion_condition[self.player] = lambda state: state.has("Victory", self.player) def fill_slot_data(self): slot_options = [ "death_link", "victory_condition", "shuffle_colors", "shuffle_doors", "shuffle_paintings", "shuffle_panels", "enable_pilgrimage", "sunwarp_access", "mastery_achievements", "level_2_requirement", "location_checks", "early_color_hallways", "pilgrimage_allows_roof_access", "pilgrimage_allows_paintings", "shuffle_sunwarps", "group_doors", "speed_boost_mode" ] slot_data = { "seed": self.random.randint(0, 1000000), **self.options.as_dict(*slot_options), } if self.options.shuffle_paintings: slot_data["painting_entrance_to_exit"] = self.player_logic.painting_mapping if self.options.shuffle_sunwarps: slot_data["sunwarp_permutation"] = self.player_logic.sunwarp_mapping return slot_data def get_filler_item_name(self) -> str: if self.options.speed_boost_mode: return "Speed Boost" else: filler_list = [":)", "The Feeling of Being Lost", "Wanderlust", "Empty White Hallways"] return self.random.choice(filler_list)