├── .circleci └── config.yml ├── .gitignore ├── .gitmodules ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── dev │ │ │ └── flutter │ │ │ └── devrpg │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable │ │ └── launch_background.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── artwork └── speech bubble.pxm ├── assets ├── docs │ ├── code_chomper_alpha.dart │ ├── code_chomper_beta.dart │ ├── dev-rpg-research-tree.graphml │ └── research-tree.png ├── flare │ ├── Chomper FUI Type.flr │ ├── Chomper.flr │ ├── CodeIcon.flr │ ├── Coin.flr │ ├── CoordinationIcon.flr │ ├── CowboyCoder.flr │ ├── Designer.flr │ ├── EngineeringIcon.flr │ ├── Joy.flr │ ├── NotificationIcon.flr │ ├── ProgramManager.flr │ ├── SelectArrow.flr │ ├── Sourcerer.flr │ ├── Stars.flr │ ├── TasksIcon.flr │ ├── TeamIcon.flr │ ├── Tester.flr │ ├── TheArchitect.flr │ ├── TheHacker.flr │ ├── TheJack.flr │ ├── TheRefactorer.flr │ ├── UXResearcher.flr │ ├── Users.flr │ └── UxIcon.flr ├── fonts │ ├── Gotham XNarrow Medium.otf │ ├── Montserrat-Bold.otf │ ├── Montserrat-Medium.otf │ ├── Montserrat-Regular.otf │ ├── Roboto-Regular.ttf │ ├── RobotoCondensed-Bold.ttf │ ├── SpaceMono-Bold.ttf │ └── SpaceMono-Regular.ttf ├── images │ ├── 2.0x │ │ ├── 2dimensions.png │ │ ├── 2dimensions_wide.png │ │ └── flare_logo.png │ ├── 2dimensions.png │ ├── 2dimensions_wide.png │ ├── 3.0x │ │ ├── 2dimensions.png │ │ ├── 2dimensions_wide.png │ │ └── flare_logo.png │ ├── flare_logo.png │ └── flutter_logo.png └── style_sphinx │ ├── green_bed.png │ ├── orange_cat.png │ ├── pyramid.png │ ├── red_bed.png │ ├── sphinx.png │ ├── sphinx_no_glasses.png │ ├── start_background.png │ ├── sunglasses.png │ └── yellow_cat.png ├── ios ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon.png │ │ ├── icon_20pt.png │ │ ├── icon_20pt@2x.png │ │ ├── icon_20pt@3x.png │ │ ├── icon_29pt.png │ │ ├── icon_29pt@2x.png │ │ ├── icon_29pt@3x.png │ │ ├── icon_40pt.png │ │ ├── icon_40pt@2x.png │ │ ├── icon_40pt@3x.png │ │ ├── icon_60pt@2x.png │ │ ├── icon_60pt@3x.png │ │ ├── icon_76pt.png │ │ ├── icon_76pt@2x.png │ │ └── icon_83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── main.dart └── src │ ├── about_screen.dart │ ├── code_chomper │ ├── code_chomper.dart │ └── code_chomper_screen.dart │ ├── game_screen.dart │ ├── game_screen │ ├── add_task_button.dart │ ├── bug_picker_modal.dart │ ├── character_modal.dart │ ├── character_pool_page.dart │ ├── character_style.dart │ ├── project_picker_modal.dart │ ├── task_pool_page.dart │ └── team_picker_modal.dart │ ├── game_screen_slim.dart │ ├── game_screen_wide.dart │ ├── rpg_layout_builder.dart │ ├── shared_state │ ├── game │ │ ├── bug.dart │ │ ├── character.dart │ │ ├── character_pool.dart │ │ ├── company.dart │ │ ├── skill.dart │ │ ├── src │ │ │ ├── aspect.dart │ │ │ ├── aspect_container.dart │ │ │ └── child_aspect.dart │ │ ├── task.dart │ │ ├── task_blueprint.dart │ │ ├── task_pool.dart │ │ ├── task_prerequisite.dart │ │ ├── task_tree │ │ │ ├── animations.dart │ │ │ ├── backend_infrastructure.dart │ │ │ ├── beta.dart │ │ │ ├── design.dart │ │ │ ├── geolocation.dart │ │ │ ├── image_messaging.dart │ │ │ ├── launch.dart │ │ │ ├── natural_language.dart │ │ │ ├── pre_alpha.dart │ │ │ ├── pre_launch.dart │ │ │ ├── responsive_design.dart │ │ │ ├── task_tree.dart │ │ │ ├── theme.dart │ │ │ ├── tree_hierarchy.dart │ │ │ └── ux_testing.dart │ │ ├── work_item.dart │ │ └── world.dart │ └── user.dart │ ├── style.dart │ ├── style_sphinx │ ├── axis_questions.dart │ ├── breathing_animations.dart │ ├── flex_questions.dart │ ├── kittens.dart │ ├── question_arguments.dart │ ├── question_scaffold.dart │ ├── sphinx_buttton.dart │ ├── sphinx_image.dart │ ├── sphinx_screen.dart │ ├── success_route.dart │ └── text_bubble.dart │ ├── welcome_screen.dart │ └── widgets │ ├── app_bar │ ├── coin_badge.dart │ ├── joy_badge.dart │ ├── stat_badge.dart │ ├── stat_separator.dart │ └── users_badge.dart │ ├── buttons │ ├── welcome_button.dart │ └── wide_button.dart │ ├── flare │ ├── desaturated_actor.dart │ ├── hiring_bust.dart │ ├── hiring_particles.dart │ ├── skill_icon.dart │ ├── start_screen_hero.dart │ ├── warmup_flare.dart │ └── work_team.dart │ ├── game_over.dart │ ├── keyboard.dart │ ├── prowess_progress.dart │ ├── screen_layout_builder.dart │ ├── skill_badge.dart │ ├── task_picker │ ├── task_picker_header.dart │ └── task_picker_item.dart │ └── work_items │ ├── bug_header.dart │ ├── bug_list_item.dart │ ├── skill_dot.dart │ ├── task_header.dart │ ├── task_list_item.dart │ ├── tasks_button_header.dart │ ├── tasks_section_header.dart │ ├── work_list_item.dart │ └── work_list_progress.dart ├── pubspec.yaml ├── test ├── character_test.dart ├── style_sphinx │ ├── question_arguments_test.dart │ └── sphinx_button_test.dart ├── widget_test.dart └── world_test.dart ├── test_driver ├── .gitignore ├── durations.tsv ├── generate-graphs.R ├── parse_timeline.dart ├── perf_stats.tsv ├── performance.dart └── performance_test.dart └── tool └── lock_android_scaling.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/dev/flutter/devrpg/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/android/app/src/main/kotlin/dev/flutter/devrpg/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /artwork/speech bubble.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/artwork/speech bubble.pxm -------------------------------------------------------------------------------- /assets/docs/code_chomper_alpha.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/docs/code_chomper_alpha.dart -------------------------------------------------------------------------------- /assets/docs/code_chomper_beta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/docs/code_chomper_beta.dart -------------------------------------------------------------------------------- /assets/docs/dev-rpg-research-tree.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/docs/dev-rpg-research-tree.graphml -------------------------------------------------------------------------------- /assets/docs/research-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/docs/research-tree.png -------------------------------------------------------------------------------- /assets/flare/Chomper FUI Type.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/Chomper FUI Type.flr -------------------------------------------------------------------------------- /assets/flare/Chomper.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/Chomper.flr -------------------------------------------------------------------------------- /assets/flare/CodeIcon.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/CodeIcon.flr -------------------------------------------------------------------------------- /assets/flare/Coin.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/Coin.flr -------------------------------------------------------------------------------- /assets/flare/CoordinationIcon.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/CoordinationIcon.flr -------------------------------------------------------------------------------- /assets/flare/CowboyCoder.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/CowboyCoder.flr -------------------------------------------------------------------------------- /assets/flare/Designer.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/Designer.flr -------------------------------------------------------------------------------- /assets/flare/EngineeringIcon.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/EngineeringIcon.flr -------------------------------------------------------------------------------- /assets/flare/Joy.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/Joy.flr -------------------------------------------------------------------------------- /assets/flare/NotificationIcon.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/NotificationIcon.flr -------------------------------------------------------------------------------- /assets/flare/ProgramManager.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/ProgramManager.flr -------------------------------------------------------------------------------- /assets/flare/SelectArrow.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/SelectArrow.flr -------------------------------------------------------------------------------- /assets/flare/Sourcerer.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/Sourcerer.flr -------------------------------------------------------------------------------- /assets/flare/Stars.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/Stars.flr -------------------------------------------------------------------------------- /assets/flare/TasksIcon.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/TasksIcon.flr -------------------------------------------------------------------------------- /assets/flare/TeamIcon.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/TeamIcon.flr -------------------------------------------------------------------------------- /assets/flare/Tester.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/Tester.flr -------------------------------------------------------------------------------- /assets/flare/TheArchitect.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/TheArchitect.flr -------------------------------------------------------------------------------- /assets/flare/TheHacker.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/TheHacker.flr -------------------------------------------------------------------------------- /assets/flare/TheJack.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/TheJack.flr -------------------------------------------------------------------------------- /assets/flare/TheRefactorer.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/TheRefactorer.flr -------------------------------------------------------------------------------- /assets/flare/UXResearcher.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/UXResearcher.flr -------------------------------------------------------------------------------- /assets/flare/Users.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/Users.flr -------------------------------------------------------------------------------- /assets/flare/UxIcon.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/flare/UxIcon.flr -------------------------------------------------------------------------------- /assets/fonts/Gotham XNarrow Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/fonts/Gotham XNarrow Medium.otf -------------------------------------------------------------------------------- /assets/fonts/Montserrat-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/fonts/Montserrat-Bold.otf -------------------------------------------------------------------------------- /assets/fonts/Montserrat-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/fonts/Montserrat-Medium.otf -------------------------------------------------------------------------------- /assets/fonts/Montserrat-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/fonts/Montserrat-Regular.otf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/fonts/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/fonts/SpaceMono-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/2.0x/2dimensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/images/2.0x/2dimensions.png -------------------------------------------------------------------------------- /assets/images/2.0x/2dimensions_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/images/2.0x/2dimensions_wide.png -------------------------------------------------------------------------------- /assets/images/2.0x/flare_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/images/2.0x/flare_logo.png -------------------------------------------------------------------------------- /assets/images/2dimensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/images/2dimensions.png -------------------------------------------------------------------------------- /assets/images/2dimensions_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/images/2dimensions_wide.png -------------------------------------------------------------------------------- /assets/images/3.0x/2dimensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/images/3.0x/2dimensions.png -------------------------------------------------------------------------------- /assets/images/3.0x/2dimensions_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/images/3.0x/2dimensions_wide.png -------------------------------------------------------------------------------- /assets/images/3.0x/flare_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/images/3.0x/flare_logo.png -------------------------------------------------------------------------------- /assets/images/flare_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/images/flare_logo.png -------------------------------------------------------------------------------- /assets/images/flutter_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/images/flutter_logo.png -------------------------------------------------------------------------------- /assets/style_sphinx/green_bed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/style_sphinx/green_bed.png -------------------------------------------------------------------------------- /assets/style_sphinx/orange_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/style_sphinx/orange_cat.png -------------------------------------------------------------------------------- /assets/style_sphinx/pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/style_sphinx/pyramid.png -------------------------------------------------------------------------------- /assets/style_sphinx/red_bed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/style_sphinx/red_bed.png -------------------------------------------------------------------------------- /assets/style_sphinx/sphinx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/style_sphinx/sphinx.png -------------------------------------------------------------------------------- /assets/style_sphinx/sphinx_no_glasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/style_sphinx/sphinx_no_glasses.png -------------------------------------------------------------------------------- /assets/style_sphinx/start_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/style_sphinx/start_background.png -------------------------------------------------------------------------------- /assets/style_sphinx/sunglasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/style_sphinx/sunglasses.png -------------------------------------------------------------------------------- /assets/style_sphinx/yellow_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/assets/style_sphinx/yellow_cat.png -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_20pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_20pt.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_20pt@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_20pt@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_40pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_40pt.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_40pt@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_40pt@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_60pt@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_60pt@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_76pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_76pt.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_76pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_76pt@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/src/about_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/about_screen.dart -------------------------------------------------------------------------------- /lib/src/code_chomper/code_chomper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/code_chomper/code_chomper.dart -------------------------------------------------------------------------------- /lib/src/code_chomper/code_chomper_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/code_chomper/code_chomper_screen.dart -------------------------------------------------------------------------------- /lib/src/game_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/game_screen.dart -------------------------------------------------------------------------------- /lib/src/game_screen/add_task_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/game_screen/add_task_button.dart -------------------------------------------------------------------------------- /lib/src/game_screen/bug_picker_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/game_screen/bug_picker_modal.dart -------------------------------------------------------------------------------- /lib/src/game_screen/character_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/game_screen/character_modal.dart -------------------------------------------------------------------------------- /lib/src/game_screen/character_pool_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/game_screen/character_pool_page.dart -------------------------------------------------------------------------------- /lib/src/game_screen/character_style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/game_screen/character_style.dart -------------------------------------------------------------------------------- /lib/src/game_screen/project_picker_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/game_screen/project_picker_modal.dart -------------------------------------------------------------------------------- /lib/src/game_screen/task_pool_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/game_screen/task_pool_page.dart -------------------------------------------------------------------------------- /lib/src/game_screen/team_picker_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/game_screen/team_picker_modal.dart -------------------------------------------------------------------------------- /lib/src/game_screen_slim.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/game_screen_slim.dart -------------------------------------------------------------------------------- /lib/src/game_screen_wide.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/game_screen_wide.dart -------------------------------------------------------------------------------- /lib/src/rpg_layout_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/rpg_layout_builder.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/bug.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/bug.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/character.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/character.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/character_pool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/character_pool.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/company.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/company.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/skill.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/skill.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/src/aspect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/src/aspect.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/src/aspect_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/src/aspect_container.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/src/child_aspect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/src/child_aspect.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_blueprint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_blueprint.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_pool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_pool.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_prerequisite.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_prerequisite.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_tree/animations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_tree/animations.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_tree/backend_infrastructure.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_tree/backend_infrastructure.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_tree/beta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_tree/beta.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_tree/design.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_tree/design.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_tree/geolocation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_tree/geolocation.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_tree/image_messaging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_tree/image_messaging.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_tree/launch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_tree/launch.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_tree/natural_language.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_tree/natural_language.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_tree/pre_alpha.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_tree/pre_alpha.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_tree/pre_launch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_tree/pre_launch.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_tree/responsive_design.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_tree/responsive_design.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_tree/task_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_tree/task_tree.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_tree/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_tree/theme.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_tree/tree_hierarchy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_tree/tree_hierarchy.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/task_tree/ux_testing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/task_tree/ux_testing.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/work_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/work_item.dart -------------------------------------------------------------------------------- /lib/src/shared_state/game/world.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/game/world.dart -------------------------------------------------------------------------------- /lib/src/shared_state/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/shared_state/user.dart -------------------------------------------------------------------------------- /lib/src/style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/style.dart -------------------------------------------------------------------------------- /lib/src/style_sphinx/axis_questions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/style_sphinx/axis_questions.dart -------------------------------------------------------------------------------- /lib/src/style_sphinx/breathing_animations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/style_sphinx/breathing_animations.dart -------------------------------------------------------------------------------- /lib/src/style_sphinx/flex_questions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/style_sphinx/flex_questions.dart -------------------------------------------------------------------------------- /lib/src/style_sphinx/kittens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/style_sphinx/kittens.dart -------------------------------------------------------------------------------- /lib/src/style_sphinx/question_arguments.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/style_sphinx/question_arguments.dart -------------------------------------------------------------------------------- /lib/src/style_sphinx/question_scaffold.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/style_sphinx/question_scaffold.dart -------------------------------------------------------------------------------- /lib/src/style_sphinx/sphinx_buttton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/style_sphinx/sphinx_buttton.dart -------------------------------------------------------------------------------- /lib/src/style_sphinx/sphinx_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/style_sphinx/sphinx_image.dart -------------------------------------------------------------------------------- /lib/src/style_sphinx/sphinx_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/style_sphinx/sphinx_screen.dart -------------------------------------------------------------------------------- /lib/src/style_sphinx/success_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/style_sphinx/success_route.dart -------------------------------------------------------------------------------- /lib/src/style_sphinx/text_bubble.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/style_sphinx/text_bubble.dart -------------------------------------------------------------------------------- /lib/src/welcome_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/welcome_screen.dart -------------------------------------------------------------------------------- /lib/src/widgets/app_bar/coin_badge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/app_bar/coin_badge.dart -------------------------------------------------------------------------------- /lib/src/widgets/app_bar/joy_badge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/app_bar/joy_badge.dart -------------------------------------------------------------------------------- /lib/src/widgets/app_bar/stat_badge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/app_bar/stat_badge.dart -------------------------------------------------------------------------------- /lib/src/widgets/app_bar/stat_separator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/app_bar/stat_separator.dart -------------------------------------------------------------------------------- /lib/src/widgets/app_bar/users_badge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/app_bar/users_badge.dart -------------------------------------------------------------------------------- /lib/src/widgets/buttons/welcome_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/buttons/welcome_button.dart -------------------------------------------------------------------------------- /lib/src/widgets/buttons/wide_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/buttons/wide_button.dart -------------------------------------------------------------------------------- /lib/src/widgets/flare/desaturated_actor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/flare/desaturated_actor.dart -------------------------------------------------------------------------------- /lib/src/widgets/flare/hiring_bust.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/flare/hiring_bust.dart -------------------------------------------------------------------------------- /lib/src/widgets/flare/hiring_particles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/flare/hiring_particles.dart -------------------------------------------------------------------------------- /lib/src/widgets/flare/skill_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/flare/skill_icon.dart -------------------------------------------------------------------------------- /lib/src/widgets/flare/start_screen_hero.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/flare/start_screen_hero.dart -------------------------------------------------------------------------------- /lib/src/widgets/flare/warmup_flare.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/flare/warmup_flare.dart -------------------------------------------------------------------------------- /lib/src/widgets/flare/work_team.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/flare/work_team.dart -------------------------------------------------------------------------------- /lib/src/widgets/game_over.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/game_over.dart -------------------------------------------------------------------------------- /lib/src/widgets/keyboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/keyboard.dart -------------------------------------------------------------------------------- /lib/src/widgets/prowess_progress.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/prowess_progress.dart -------------------------------------------------------------------------------- /lib/src/widgets/screen_layout_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/screen_layout_builder.dart -------------------------------------------------------------------------------- /lib/src/widgets/skill_badge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/skill_badge.dart -------------------------------------------------------------------------------- /lib/src/widgets/task_picker/task_picker_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/task_picker/task_picker_header.dart -------------------------------------------------------------------------------- /lib/src/widgets/task_picker/task_picker_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/task_picker/task_picker_item.dart -------------------------------------------------------------------------------- /lib/src/widgets/work_items/bug_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/work_items/bug_header.dart -------------------------------------------------------------------------------- /lib/src/widgets/work_items/bug_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/work_items/bug_list_item.dart -------------------------------------------------------------------------------- /lib/src/widgets/work_items/skill_dot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/work_items/skill_dot.dart -------------------------------------------------------------------------------- /lib/src/widgets/work_items/task_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/work_items/task_header.dart -------------------------------------------------------------------------------- /lib/src/widgets/work_items/task_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/work_items/task_list_item.dart -------------------------------------------------------------------------------- /lib/src/widgets/work_items/tasks_button_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/work_items/tasks_button_header.dart -------------------------------------------------------------------------------- /lib/src/widgets/work_items/tasks_section_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/work_items/tasks_section_header.dart -------------------------------------------------------------------------------- /lib/src/widgets/work_items/work_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/work_items/work_list_item.dart -------------------------------------------------------------------------------- /lib/src/widgets/work_items/work_list_progress.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/lib/src/widgets/work_items/work_list_progress.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/character_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/test/character_test.dart -------------------------------------------------------------------------------- /test/style_sphinx/question_arguments_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/test/style_sphinx/question_arguments_test.dart -------------------------------------------------------------------------------- /test/style_sphinx/sphinx_button_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/test/style_sphinx/sphinx_button_test.dart -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /test/world_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/test/world_test.dart -------------------------------------------------------------------------------- /test_driver/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | *.tsv 3 | download_results.sh 4 | -------------------------------------------------------------------------------- /test_driver/durations.tsv: -------------------------------------------------------------------------------- 1 | id build rasterizer frameRequest sha description 2 | -------------------------------------------------------------------------------- /test_driver/generate-graphs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/test_driver/generate-graphs.R -------------------------------------------------------------------------------- /test_driver/parse_timeline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/test_driver/parse_timeline.dart -------------------------------------------------------------------------------- /test_driver/perf_stats.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/test_driver/perf_stats.tsv -------------------------------------------------------------------------------- /test_driver/performance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/test_driver/performance.dart -------------------------------------------------------------------------------- /test_driver/performance_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/test_driver/performance_test.dart -------------------------------------------------------------------------------- /tool/lock_android_scaling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2d-inc/developer_quest/HEAD/tool/lock_android_scaling.sh --------------------------------------------------------------------------------