Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add python den game pages #1682

Merged
merged 24 commits into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions game/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ def difficulty(self):
7: "medium-hard",
8: "medium-hard",
9: "brainteasers",
10: "hard",
11: "advanced",
12: "loops",
13: "loops",
14: "loops",
15: "loops",
10: "split-python",
11: "split-python",
12: "python",
13: "python",
14: "python",
15: "python",
}

return difficulty_map.get(self.id, "easy")
Expand Down
16 changes: 4 additions & 12 deletions game/static/game/css/backgrounds.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,14 @@
background-color: #c90548;
}

.bg--hard {
background-color: #8967d3;
}

.bg--advanced {
background-color: #754fc8;
}

.bg--shared-levels {
background-color: #f6be00;
}

.bg--loops {
background-color: #3F3F3F;
.bg--split-python {
background-color: #213CE7;
}

.bg--loops-coming-soon {
background-color: #CBCBCB;
.bg--python {
background-color: #152584;
}
8 changes: 8 additions & 0 deletions game/static/game/css/game.css
Original file line number Diff line number Diff line change
Expand Up @@ -393,3 +393,11 @@ div > .navigation_button_kurono {
bottom: 0px;
background-image : url('/static/game/image/actions/btn_zoom_in.svg');
}

/**************/
/* Python den */
/**************/

.game-header {
width: 100%;
}
19 changes: 19 additions & 0 deletions game/static/game/image/python_den_header.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 24 additions & 18 deletions game/templates/game/game.html
Original file line number Diff line number Diff line change
Expand Up @@ -152,16 +152,30 @@
</div>

<div id="wrapper" class="unselectable">
{% if level.pythonViewEnabled or level.pythonEnabled %}
<img src="{% static 'game/image/python_den_header.svg' %}" class="game-header">
{% endif %}
<span id="game_page"></span>

<div id="tabs" class='no-print bg--{{ level.difficulty }}'>
<div id="blockly_tab" class="tab selectable {% if level.blocklyEnabled %}{% else %}hidden{% endif %}">

<div id="blockly_tab"
class="tab selectable {% if not level.blocklyEnabled and not level.pythonViewEnabled %}hidden{% endif %}">
<input type="radio" name="tabs" id="blockly_radio" checked>
<label for="blockly_radio">
<img src="{% static 'game/image/icons/blockly.svg' %}">
<span>{% trans "Blockly" %}</span>
</label>
</div>

<div id="python_tab" class="tab selectable {% if not level.pythonEnabled %}hidden{% endif %}">
<input type="radio" name="tabs" id="python_radio">
<label for="python_radio">
<img src="{% static 'game/image/icons/python.svg' %}">
<span>{% trans "Python Den" %}</span>
</label>
</div>

<div id="language_tab" class="tab">
<select name="language_dropdown" class="tab selectable bg--{{level.difficulty}} {% if level.pythonEnabled %}hidden{% endif %}" id="language_dropdown" onchange="gameUpdateBlockLanguageAndCookie(this.value)">
{% for language_code, language in available_language_dict.items %}
Expand All @@ -172,14 +186,6 @@

<div class="tab_break"></div>

<div id="python_tab" class="tab selectable {% if level.pythonEnabled %}{% else %}hidden{% endif %}">
<input type="radio" name="tabs" id="python_radio">
<label for="python_radio">
<img src="{% static 'game/image/icons/python.svg' %}">
<span>{% trans "Python" %}</span>
</label>
</div>

<div id="clear_tab" class="tab">
<input type="radio" name="tabs" id="clear_program_radio">
<label for="clear_program_radio">
Expand Down Expand Up @@ -551,12 +557,12 @@ <h2 class="title"><img class="modal_image" src="{% static 'game/image/icons/shar
<path id="d" fill="#fff" stroke-width="0px" d="M68.91,70.86h-7.35c-.28,0-.48-.26-.42-.53l2.49-10.37c.11-.46-.49-.74-.77-.35l-11.46,16.1c-.2.28,0,.68.35.68h7.35c.28,0,.48.26.42.53l-2.49,10.37c-.11.46.49.74.77.35l11.46-16.1c.2-.28,0-.68-.35-.68Z"/>
<g id="e" isolation="isolate">
<g isolation="isolate">
<text
id="Text_percentage"
data-name="Text percentage"
<text
id="Text_percentage"
data-name="Text percentage"
font-family="LilitaOne, 'Lilita One'"
font-size="16px"
transform="translate(43.2 48.2)"
transform="translate(43.2 48.2)"
fill="#4ba0dd">
<tspan id="Text_percentage_value" x="0" y="0">100%</tspan>
</text>
Expand All @@ -581,13 +587,13 @@ <h2 class="title"><img class="modal_image" src="{% static 'game/image/icons/shar
s-.66,8.1-1.87,11.82
c-2.52,7.76-7.44,14.42-13.9,19.12Z"
/>
<circle
<circle
id="emptying_circle"
cx="59.79"
cy="59.79"
r="43.5"
stroke-width="11"
stroke="#213a47"
r="43.5"
stroke-width="11"
stroke="#213a47"
fill="transparent"
stroke-dasharray="273.18"
stroke-dashoffset="273.18"
Expand All @@ -613,4 +619,4 @@ <h2 class="title"><img class="modal_image" src="{% static 'game/image/icons/shar
})
</script>

{% endblock %}
{% endblock %}
Loading