AI-PCG Engine for Games: Worlds, Quests, Dialogues

We design and deploy artificial intelligence systems: from prototype to production-ready solutions. Our team combines expertise in machine learning, data engineering and MLOps to make AI work not in the lab, but in real business.
Showing 1 of 1All 1564 services
AI-PCG Engine for Games: Worlds, Quests, Dialogues
Complex
~2-4 weeks
Frequently Asked Questions

AI Development Areas

AI Solution Development Stages

Latest works

  • image_website-b2b-advance_0.webp
    B2B ADVANCE company website development
    1358
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1251
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    957
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1188
  • image_logo-advance_0.webp
    B2B Advance company logo design
    646
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    929

You're a game designer, and manually generating 10,000 quests takes half a year for a team of five writers? Yet players still finish the game in 40 hours — the world feels dead. Typical PCG based on Perlin noise yields monotony: every forest is a clone of the previous one. The only way to avoid this is to use AI generation with semantic context understanding. We solve this problem using LLMs and diffusion models. Our AI-PCG engine combines procedural content generation with LLM for NPC dialogues and RAG for quests, ensuring unique game world generation. Procedural generation (PCG) is not a panacea, but with AI it becomes a tool that creates unique worlds, narratives, and loot on the fly. Our system generates content 10x faster than manual work, and time savings on quests reach 95%.

How AI-PCG Solves the Problem of Content Monotony

Traditional PCG relies on Perlin noise and templates: every forest looks like the previous one. We add LLMs (GPT-4o, LLaMA 3) and diffusion models (Stable Diffusion). The neural network generates semantically coherent world lore, adaptive NPC dialogues with memory, and procedural textures — all tied to the player's seed. The result: each playthrough is a new story. The key difference is generating not just templates, but a holistic narrative. The LLM creates the world's history, factions, and their relationships. NPC dialogues remember previous encounters instead of repeating canned phrases.

Component Traditional PCG AI-PCG (Our Approach)
World Generation Perlin noise, manual biomes Octave noise + LLM narrative
Quests Predefined templates Dynamic objectives with moral choices
Dialogues Scripted branches NLP with memory, emotions, RAG
Loot Random stats Affixes tied to world theme, level-balanced
Integration In-game code REST API + Unity/Unreal plugins
Content Type Manual Generation AI-PCG Speedup
World map (100x100) 2 weeks 2 hours x168
Branching quest 8 hours 15 minutes x32
NPC dialogue (10 lines) 1 hour 2 seconds x1800

Why We Don’t Use Off-the-Shelf Generators

Ready-made solutions (e.g., Wave Function Collapse) are good for maps, but not for narrative. Our approach is hybrid: traditional algorithms for maps + LLM for meaning. This delivers adaptive difficulty: the system adjusts enemy counts and quest complexity based on the player's level without breaking immersion.

Architecture of the AI-PCG System

World and Biome Generation

from openai import AsyncOpenAI
from dataclasses import dataclass, field
import json
import random
import numpy as np

client = AsyncOpenAI()

@dataclass
class WorldConfig:
    seed: int
    size: tuple               # (width, height) in tiles
    biomes: list[str]         # ["forest", "desert", "tundra", "swamp"]
    civilization_level: str   # primitive, medieval, industrial, futuristic
    magic_system: bool = True
    danger_zones: int = 5
    settlements: int = 10

class ProceduralWorldGenerator:
    def __init__(self, config: WorldConfig):
        self.config = config
        self.rng = random.Random(config.seed)
        self.np_rng = np.random.default_rng(config.seed)

    def generate_heightmap(self) -> np.ndarray:
        """Generate a heightmap via Perlin noise (opensimplex)"""
        from opensimplex import OpenSimplex
        noise = OpenSimplex(seed=self.config.seed)
        w, h = self.config.size
        heightmap = np.zeros((h, w))

        # Octave noise for realistic terrain
        for y in range(h):
            for x in range(w):
                nx, ny = x / w, y / h
                heightmap[y][x] = (
                    1.0 * noise.noise2(1 * nx, 1 * ny) +
                    0.5 * noise.noise2(2 * nx, 2 * ny) +
                    0.25 * noise.noise2(4 * nx, 4 * ny) +
                    0.125 * noise.noise2(8 * nx, 8 * ny)
                )
        return (heightmap + 1) / 2  # normalize to [0, 1]

    def assign_biomes(self, heightmap: np.ndarray, moisture_map: np.ndarray) -> np.ndarray:
        """Biome assignment using Whittaker biome diagram"""
        biome_map = np.zeros_like(heightmap, dtype=int)
        BIOME_RULES = [
            (0.0, 0.3, "ocean"),
            (0.3, 0.4, "beach"),
            (0.4, 0.6, "plains"),
            (0.6, 0.8, "forest"),
            (0.8, 0.9, "mountain"),
            (0.9, 1.0, "snow_peak")
        ]
        biome_ids = {b[2]: i for i, b in enumerate(BIOME_RULES)}
        for y in range(heightmap.shape[0]):
            for x in range(heightmap.shape[1]):
                h = heightmap[y][x]
                m = moisture_map[y][x]
                # Moisture consideration for mixed biomes
                if 0.4 < h < 0.8 and m < 0.3:
                    biome_map[y][x] = biome_ids.get("desert_variant", 2)
                else:
                    for min_h, max_h, biome_name in BIOME_RULES:
                        if min_h <= h < max_h:
                            biome_map[y][x] = biome_ids[biome_name]
                            break
        return biome_map

    def place_settlements(self, heightmap: np.ndarray, biome_map: np.ndarray) -> list[dict]:
        """Place settlements in habitable locations"""
        settlements = []
        valid_positions = np.argwhere(
            (heightmap > 0.4) & (heightmap < 0.7) & (biome_map != 0)
        )
        chosen = self.np_rng.choice(
            len(valid_positions),
            size=min(self.config.settlements, len(valid_positions)),
            replace=False
        )
        for idx in chosen:
            y, x = valid_positions[idx]
            settlements.append({
                "x": int(x), "y": int(y),
                "type": self.rng.choice(["village", "town", "city", "fortress"]),
                "population": self.rng.randint(50, 10000),
                "name": ""  # to be filled via LLM
            })
        return settlements

Narrative and Quests

async def generate_world_lore(
    world_config: WorldConfig,
    settlements: list[dict],
    biomes: list[str]
) -> dict:
    response = await client.chat.completions.create(
        model="gpt-4o",
        messages=[{
            "role": "system",
            "content": f"""You are a narrative designer for a procedurally generated game world.
            Create a coherent world history. Civilization level: {world_config.civilization_level}.
            Magic: {"yes" if world_config.magic_system else "no"}.

            Return JSON: {{
                world_name: "...",
                history_eras: [{{name, years_ago, key_event}}],
                factions: [{{name, ideology, home_biome, relation_to_others}}],
                settlement_names: [{{id, name, local_legend}}],
                notable_artifacts: [{{name, description, location_hint}}],
                creation_myth: "...",
                current_conflict: "main conflict of the era"
            }}"""
        }, {
            "role": "user",
            "content": f"""
            Biomes: {', '.join(biomes)}
            Settlements: {len(settlements)}, types: {[s['type'] for s in settlements[:5]]}...
            Danger zones: {world_config.danger_zones}
            World seed: {world_config.seed}
            """
        }],
        response_format={"type": "json_object"}
    )
    return json.loads(response.choices[0].message.content)


QUEST_TEMPLATES = {
    "fetch": {
        "structure": "Get [item] from [NPC/location] and bring to [quest giver]",
        "complications": ["item is guarded", "NPC requires a favor in return", "multiple claimants"]
    },
    "eliminate": {
        "structure": "Destroy [threat] in [location]",
        "complications": ["threat is an innocent victim", "final boss is hidden", "collateral damage"]
    },
    "escort": {
        "structure": "Escort [character] from [A] to [B]",
        "complications": ["character hides a secret", "ambushes along the route", "moral choice at the end"]
    },
    "investigation": {
        "structure": "Investigate [event] at [location]",
        "complications": ["multiple suspects", "false lead", "clues destroyed"]
    }
}

async def generate_quest(
    template_type: str,
    world_lore: dict,
    player_level: int,
    location: dict
) -> dict:
    template = QUEST_TEMPLATES[template_type]
    complication = random.choice(template["complications"])

    response = await client.chat.completions.create(
        model="gpt-4o",
        messages=[{
            "role": "system",
            "content": f"""Create a quest for an RPG game. Player level: {player_level}.
            Template: {template['structure']}.
            Complication: {complication}.
            Use factions and world history for context.

            Return JSON: {{
                title, description, giver_npc, objectives: [{{id, text, optional: bool}}],
                rewards: {{xp, gold, items: []}},
                moral_choice: {{description, option_a, option_b, consequences}},
                estimated_time_minutes: int
            }}"""
        }, {
            "role": "user",
            "content": f"World: {json.dumps(world_lore, ensure_ascii=False)[:1000]}\nLocation: {location}"
        }],
        response_format={"type": "json_object"}
    )
    return json.loads(response.choices[0].message.content)

Dialogues and Items

from dataclasses import dataclass, field

@dataclass
class NPCProfile:
    name: str
    race: str
    occupation: str
    faction: str
    personality: list[str]     # ["suspicious", "greedy", "loyal"]
    knowledge: list[str]       # what the NPC knows about the world
    relationship: str          # "friendly", "neutral", "hostile"
    memory: list[dict] = field(default_factory=list)  # dialogue history

async def generate_npc_response(
    npc: NPCProfile,
    player_input: str,
    game_context: dict
) -> dict:
    memory_context = "\n".join([
        f"[{m['timestamp']}] Player: {m['player']} → NPC: {m['npc']}"
        for m in npc.memory[-5:]  # last 5 exchanges
    ])

    response = await client.chat.completions.create(
        model="gpt-4o",
        messages=[{
            "role": "system",
            "content": f"""You are an NPC in an RPG. Stay strictly in character.

            NPC: {npc.name}, {npc.race}, {npc.occupation}
            Faction: {npc.faction} | Traits: {', '.join(npc.personality)}
            Attitude to player: {npc.relationship}
            Knows: {', '.join(npc.knowledge)}

            Dialogue history:
            {memory_context}

            Respond in character. Do not break role.
            Return JSON: {{
                speech: "NPC line",
                emotion: "neutral|happy|angry|scared|suspicious",
                action: null | "give_item" | "start_quest" | "attack" | "flee",
                hint: null | "hint for the player if appropriate"
            }}"""
        }, {
            "role": "user",
            "content": f"Player says: {player_input}\nContext: {game_context.get('location', 'unknown')}"
        }],
        response_format={"type": "json_object"}
    )
    result = json.loads(response.choices[0].message.content)
    npc.memory.append({"timestamp": "now", "player": player_input, "npc": result["speech"]})
    return result


ITEM_RARITIES = {
    "common":    {"prob": 0.60, "affix_count": (0, 1), "base_multiplier": 1.0},
    "uncommon":  {"prob": 0.25, "affix_count": (1, 2), "base_multiplier": 1.3},
    "rare":      {"prob": 0.10, "affix_count": (2, 3), "base_multiplier": 1.7},
    "epic":      {"prob": 0.04, "affix_count": (3, 4), "base_multiplier": 2.5},
    "legendary": {"prob": 0.01, "affix_count": (4, 5), "base_multiplier": 4.0},
}

def generate_item(
    item_type: str,
    player_level: int,
    world_theme: str,
    rng: random.Random
) -> dict:
    # Rarity selection by weights
    rarity = rng.choices(
        list(ITEM_RARITIES.keys()),
        weights=[v["prob"] for v in ITEM_RARITIES.values()]
    )[0]
    spec = ITEM_RARITIES[rarity]

    base_stats = {
        "damage": player_level * 5 * spec["base_multiplier"] if item_type == "weapon" else 0,
        "defense": player_level * 3 * spec["base_multiplier"] if item_type == "armor" else 0,
        "durability": rng.randint(50, 100)
    }

    # Affixes from a pool based on world theme
    AFFIXES = {
        "fantasy": ["of Flames", "of the Ancient", "Cursed", "Holy", "Shadow"],
        "scifi": ["Mk.II", "Prototype", "Military Grade", "Corrupted", "Quantum"]
    }
    prefix_pool = AFFIXES.get(world_theme, AFFIXES["fantasy"])
    affixes = rng.sample(prefix_pool, k=rng.randint(*spec["affix_count"]))

    return {
        "name": f"{' '.join(affixes)} {item_type.title()}",
        "rarity": rarity,
        "type": item_type,
        "stats": base_stats,
        "level_requirement": max(1, player_level - 2)
    }

How We Combat LLM Hallucinations

We use few-shot prompts with strict role systems and validate responses against a JSON schema. Additionally, we have a RAG layer backed by the world's knowledge base. Key facts (names, locations) are verified via lookup before output. This ensures that an NPC never names a non-existent location or confuses factions.

Common Mistakes When Implementing AI-PCG

  • Passing the entire context in every request increases latency. We use RAG with caching.
  • Lack of hallucination control—we introduce JSON schemas and fact validation.
  • Ignoring latency for real-time dialogues—we use vLLM and batch inference.

Why Our Solution Handles Production Loads

We've progressed from prototype to integration in commercial projects. Our team has 7+ years of experience in ML for games and 5 successful PCG engine deployments. We guarantee the system handles 10,000 concurrent players with p99 NPC response latency under 300 ms. We use vLLM for inference and ONNX Runtime to optimize models on GPUs. We apply an MLOps approach: monitoring data drift, A/B testing models, automatic retraining.

For adaptation to your setting, we use LoRA (Low-Rank Adaptation)—fine-tuning only 0.1% of parameters. This takes 2–3 days on a single GPU and does not require full fine-tuning. The result: the model generates content in your style without hallucinations.

What's Included in the Work and Timelines

  • Project analysis and architecture selection.
  • Configuration of LoRA adapters for your setting.
  • Integration via REST API.
  • Load testing (10,000 CCU).
  • Production deployment.
  • Documentation: OpenAPI specification, integration examples for Unity and Unreal.
  • Team training: 2-day workshop on fine-tuning models for your setting.
  • Support: 3 months of free fixes and consultations via a dedicated Slack channel.
  • Source code: Python backend, model configurations, DB migrations.
  • Pricing starts at $50,000 for a full engine integration.

We evaluate your project for free within 2–3 business days. Timelines: MVP for world and quest generation — 6 to 8 weeks. Full PCG engine with adaptive balance and textures — 4–6 months. Contact us—we'll prepare a customized commercial proposal. Order a pilot project and evaluate the effectiveness of AI-PCG on your data.

Generative AI Development: From Prompt to Production API

We often receive a task "generate a product image" — on the surface it seems simple. But behind this lies a choice between dozens of models, configuring the inference pipeline, manually solving consistency issues, integrating into the product backend, and answering why the model generates hands with six fingers in staging but not in production. Let's break down the directions we work with.

Image Generation: From Prompt to Production API

The current landscape includes FLUX.1 [dev/schnell/pro] from Black Forest Labs and Stable Diffusion 3.5. FLUX.1 [schnell] takes 4 steps instead of 20–50 for SDXL — 5–12 times faster — while maintaining higher quality. On an A100 80GB — 1.2–1.8 s per 1024×1024 image at batch_size=4.

A typical deployment issue: FLUX.1 [dev] requires 24+ GB VRAM in fp16. On A10G 24GB it fits tightly; at batch_size>1 — OOM. Solution: torch_dtype=torch.bfloat16 + enable_model_cpu_offload() from diffusers, or quantization via bitsandbytes to NF4 — minimal quality drop, memory consumption drops to 12–14 GB.

ControlNet and IP-Adapter are key tools for production tasks where controllability is needed. ControlNet with Canny/Depth/Pose maps provides structural control. IP-Adapter (especially IP-Adapter-FaceID) allows transferring character identity to generations — this is the foundation for personalized content. More about ControlNet can be found on Wikipedia.

Case study: e-commerce photography. A retailer with 8000 SKUs needed lifestyle photos for each product. Pipeline: product segmentation (Segment Anything Model 2) → background removal → inpainting with FLUX.1 [dev] using product image as IP-Adapter reference → upscale via RealESRGAN_x4plus. The generation cost is negligible compared to professional photography, providing huge savings. Throughput — 200 images/hour on 2× A100. Our extensive experience from 30+ projects ensures we select the optimal model for your task — an evaluation can be obtained upfront.

Why Is Model Selection Only Half the Battle?

Fine-tuning for a Specific Style or Character

Dreambooth and LoRA are the standard for adapting to a specific visual style or object. LoRA trains in 2–4 hours on 20–30 reference images on a single A100. Rank 16–32 is usually sufficient for style; rank 64+ is needed for precise face reproduction.

A common mistake: training LoRA too long — the model overfits to references, losing the ability to vary. Sign: at cfg_scale=7, all images look like copy-paste of references. Solved by early stopping (usually 1500–2000 steps for 20 images) and prior_preservation_loss.

For deeper customization — full fine-tuning via diffusers + accelerate with FSDP on multiple GPUs. But that already takes 40–80 hours of training and requires a truly large dataset (1000+ images).

Comparison of Image Generation Approaches

Model Speed (1024×1024, A100) Quality (CLIP score) Controllability (ControlNet, IP-Adapter) VRAM (fp16)
Stable Diffusion 3.5 2.0–3.5 s 0.28–0.31 via ControlNet (allowed) 16–20 GB
FLUX.1 [schnell] 0.8–1.2 s 0.30–0.33 limited (no ControlNet) 12–14 GB (4‑step)
FLUX.1 [dev] 3–5 s (50 steps) 0.32–0.34 via IP-Adapter, ControlNet (adapter) 24+ GB
Midjourney (API) 5–10 s (queue) 0.31–0.33 prompt + style reference not required

Video Generation: Which Models Are Best?

Model Availability Duration Resolution Controllability
Sora (OpenAI) API (limited) up to 60 s 1080p prompt, image-to-video
Wan2.1 (Alibaba) open weights up to 81 frames 720p prompt, I2V, V2V
CogVideoX-5B open weights 6 s 720p prompt, I2V
Kling 1.6 API up to 30 s 1080p prompt, I2V
Mochi-1 open weights 5.4 s 480p prompt

Open-weight video models still lag behind commercial ones in stability and length. Wan2.1 is the best choice for self-hosting: 14B parameters, runs on 2× A100, delivers acceptable quality for short clips.

The main pain of video generation is temporal consistency: the character changes clothing color at the third second, objects "drift." Partial solution — generation with motion_bucket_id and noise_aug_strength in Stable Video Diffusion, or using I2V (image-to-video) instead of pure text-to-video. As noted in VideoPoet research, consistency is achieved by training on long sequences.

AnimateDiff remains a working tool for short loops and motion effects on top of SD/FLUX. Not Sora, but deployable locally and predictable.

Music and Audio Generation

AudioCraft from Meta (MusicGen + AudioGen) is a production-ready stack for music generation. musicgen-large (3.3B) generates 30 s of music in ~8 s on A100. Control via text prompt and melody conditioning — you can specify a melody by humming.

Stable Audio Open from Stability AI is an alternative with length up to 47 s, better structural control (intro/verse/chorus). Deployment is similar: diffusers + FastAPI.

For voice-over and dubbing — ElevenLabs API or self-hosted XTTS v2 (see Speech AI service). For sound design and foley — AudioGen.

3D Generation: Current Practical State

3D generation has not yet reached the same maturity as 2D. But for specific tasks, tools are already working:

TripoSG and Shap-E — text/image-to-3D. Shap-E from OpenAI generates simple 3D meshes in seconds, but geometry is rough. TripoSG gives more detailed results but requires post-processing (remeshing, UV unwrapping).

Wonder3D and Zero123++ — 3D reconstruction from a single image. They work by generating multi-views (6–8 views) and then 3D reconstruction via NeuS or instant-ngp.

Gaussian Splatting (3DGS) — not generation, but reconstruction from a series of photos/videos. For product cards and real estate it's already production: 50–200 photos → 3DGS model in 15–30 min on RTX 4090 → interactive 3D viewer in browser.

What Infrastructure Is Needed for Generative AI Deployment?

Critical for generative models:

  • Task queue — Celery + Redis or Ray Serve. Synchronous HTTP for image generation is unacceptable with >5 concurrent requests.
  • Caching — similar prompts yield similar results. Semantic cache via embeddings (faiss + sentence-transformers) can reduce GPU load by 20–40%.
  • Quality monitoring — CLIP score for text-image alignment, FID for evaluating generation distribution. Integrate into MLflow or Weights & Biases.
  • Storage — generated images immediately to S3/MinIO, not on the inference server disk.

What's Included in the Deliverables

We take the project turnkey — from model selection to deployment and monitoring. The result includes:

  • Model (or API integration) with performance benchmarks (latency p99, throughput).
  • Pipeline documentation (prompt engineering guide, model card, dependency versions).
  • Integration with your backend (REST/gRPC, queues).
  • Configured monitoring (dashboards, alerts for quality drift).
  • Training workshop for the team (2–4 hours).
  • Warranty support for 3 months after launch — as part of our quality certificate.

We have completed 30+ projects in generative AI — this gives us the right to guarantee results.

How Is the Generative AI Development Process Structured?

  1. Analysis (1–2 days): audit of current architecture, clarification of use case, selection of models and success metrics. We evaluate the project free of charge.
  2. Proof of Concept (1–3 weeks): quick prototype on your data — to see real quality, not blog demos.
  3. Design (1–2 weeks): pipeline architecture, infrastructure (GPU cluster/API), A/B testing plan.
  4. Implementation and fine-tuning (4–12 weeks): development, LoRA/full fine-tuning, integration with queue and cache.
  5. Testing (1–2 weeks): load tests, metric validation, edge-case verification (negative scenarios).
  6. Deployment and monitoring (1–2 weeks): production deployment, monitoring setup, documentation.
What We Verify at the Proof of Concept Stage
  • Alignment of expectations and actual generation quality (CLIP score, user study).
  • Inference speed at different batch sizes and GPU types.
  • Likelihood of toxic/incorrect generations — checking safety filters.
  • Scalability: will the model handle peak load.

Timeline Estimates

Integration of a ready API (DALL·E 3, Midjourney API, Stability API) — 1–2 weeks. Self-hosted pipeline with fine-tuning — 6–12 weeks. Full platform with UI, queues and monitoring — 3–6 months. The specific cost is calculated individually after analyzing your scenario.

Contact us — order a consultation, and we will select the optimal architecture for your project. Get a preliminary cost and timeline estimate for free.