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

Rake task for the archery project #11

Merged
merged 20 commits into from
Feb 11, 2022
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
9 changes: 9 additions & 0 deletions .pryrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# frozen_string_literal: true

if defined?(PryByebug)
Pry.config.pager = false
Pry.commands.alias_command 'c', 'continue'
Pry.commands.alias_command 's', 'step'
Pry.commands.alias_command 'n', 'next'
Pry.commands.alias_command 'f', 'finish'
end
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ group :development, :test do
gem 'dotenv-rails'
gem 'factory_bot_rails'
gem 'faker'
gem 'pry-byebug'
gem 'rspec'
gem 'rspec_junit_formatter'
gem 'rspec-rails'
Expand Down
9 changes: 9 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ GEM
bootsnap (1.9.3)
msgpack (~> 1.0)
builder (3.2.4)
byebug (11.1.3)
coderay (1.1.3)
concurrent-ruby (1.1.9)
crass (1.0.6)
diff-lcs (1.4.4)
Expand Down Expand Up @@ -112,6 +114,12 @@ GEM
parser (3.0.3.2)
ast (~> 2.4.1)
pg (1.2.3)
pry (0.13.1)
coderay (~> 1.1)
method_source (~> 1.0)
pry-byebug (3.9.0)
byebug (~> 11.0)
pry (~> 0.13.0)
puma (5.5.2)
nio4r (~> 2.0)
racc (1.6.0)
Expand Down Expand Up @@ -233,6 +241,7 @@ DEPENDENCIES
importmap-rails
jbuilder
pg (~> 1.1)
pry-byebug
puma (~> 5.0)
rack-cors
rails (~> 7.0.0)
Expand Down
1 change: 1 addition & 0 deletions app/models/component.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

class Component < ApplicationRecord
belongs_to :project
end
2 changes: 1 addition & 1 deletion app/models/project.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class Project < ApplicationRecord
before_validation :check_unique_not_null, on: :create
validates :identifier, presence: true, uniqueness: true
has_many :components, dependent: :destroy
has_many :components, -> { order(:index) }, dependent: :destroy, inverse_of: :project

private

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddIndexFieldToProjectComponents < ActiveRecord::Migration[7.0]
def change
add_column :components, :index, :integer
end
end
3 changes: 2 additions & 1 deletion db/schema.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions lib/tasks/project_components/hello_world_example/emoji.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Emoji variables to use in your project

world = '🌍🌎🌏'
python = '🐍⌨️'
sums = '✖️➗➖➕'
calendar = '📅'
clock = '🕒'
projects = '🎨🎮🔬'
fun = '🎉🕶️'
dice = '🎲'
unicorn = '🦄'
space = '🚀'
happy = '😃'
silly = '😜'
heart = '❤️'
games = '🎮'
books = '📚'
sports = '⚽🎾👟'
green = '♻️'
nature = '🌳'
fire = '🔥'
sparkles = '✨'
plead = '🥺'
hundred = '💯'
star = '⭐'
yellow_heart = '💛'
rainbow = '🌈'
45 changes: 45 additions & 0 deletions lib/tasks/project_components/hello_world_example/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#!/bin/python3

from emoji import *
from datetime import *
from random import randint

# Put function definitions under here

def roll_dice():
print(python, 'can make a', dice)
max = input('How many sides?') # get input from the user
print('That is a D', max) # use the number the user entered
roll = randint(1, int(max)) # generate a random number
print('You rolled a', roll) # print the value of the roll variable
print(fire * roll) # repeat the fire text roll times

def hobbies():
hobby = input('What do you like?')
print('That sounds', fun)
print('You could make a', python, 'project about', hobby)

# Put code to run under here
# Useful characters :',()*_/.#

print('Hello', world)
print('Welcome to', python)

input() # wait for the user to tap Enter

print(python, 'is very good at', sums)
print(230 * 5782 ** 2 / 23781)

input()

now = datetime.now() # get the current date and time
print('The', calendar, clock, 'is', now) # print with emoji

input()

roll_dice() # Call the roll_dice function

input()

hobbies() # Call the hobbies function

19 changes: 19 additions & 0 deletions lib/tasks/project_components/hello_world_example/noemoji.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Add ASCII art alternatives
# Before emoji we used emoticons made from characters

world = 'o'
python = '~~~-<'
happy = ':-)'
heart = '♡' # or '<3'
star = '☆'
sparkles = '✺'
silly = ';)'
sums = '+-*/'
hundred = '100!'
plead = '◔◔'
fire = '/\\'
books = '≣'
rainbow = '⌒'
dice = '⊡'
clock = '◷'
calendar = '▦'
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
NAME: "Hello 🌍🌎🌏 Example"
IDENTIFIER: "python-emoji-example"
COMPONENTS:
- name: "main"
extension: "py"
location: "main.py"
index: 0
- name: "emoji"
extension: "py"
location: "emoji.py"
index: 1
- name: "noemoji"
extension: "py"
location: "noemoji.py"
index: 2
27 changes: 27 additions & 0 deletions lib/tasks/project_components/hello_world_starter/emoji.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Emoji variables to use in your project

world = '🌍🌎🌏'
python = '🐍⌨️'
sums = '✖️➗➖➕'
calendar = '📅'
clock = '🕒'
projects = '🎨🎮🔬'
fun = '🎉🕶️'
dice = '🎲'
unicorn = '🦄'
space = '🚀'
happy = '😃'
silly = '😜'
heart = '❤️'
games = '🎮'
books = '📚'
sports = '⚽🎾👟'
green = '♻️'
nature = '🌳'
fire = '🔥'
sparkles = '✨'
plead = '🥺'
hundred = '💯'
star = '⭐'
yellow_heart = '💛'
rainbow = '🌈'
12 changes: 12 additions & 0 deletions lib/tasks/project_components/hello_world_starter/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/python3

from emoji import *
from datetime import *
from random import randint

# Put function definitions under here

# Useful characters :',()*_/.#

# Put code to run under here

19 changes: 19 additions & 0 deletions lib/tasks/project_components/hello_world_starter/noemoji.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Add ASCII art alternatives
# Before emoji we used emoticons made from characters

world = 'o'
python = '~~~-<'
happy = ':-)'
heart = '♡' # or '<3'
star = '☆'
sparkles = '✺'
silly = ';)'
sums = '+-*/'
hundred = '100!'
plead = '◔◔'
fire = '/\\'
books = '≣'
rainbow = '⌒'
dice = '⊡'
clock = '◷'
calendar = '▦'
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
NAME: "Hello 🌍🌎🌏"
IDENTIFIER: "python-hello-starter"
COMPONENTS:
- name: "main"
extension: "py"
location: "main.py"
index: 0
- name: "emoji"
extension: "py"
location: "emoji.py"
index: 1
- name: "noemoji"
extension: "py"
location: "noemoji.py"
index: 2
61 changes: 61 additions & 0 deletions lib/tasks/project_components/target_practice_example/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
#!/bin/python3

# Import library code
from p5 import *
from math import *
from random import randint

# The mouse_pressed function goes here
def mouse_pressed():
if hit_color == outer:
print('You hit the outer circle, 50 points!') #Like functions, 'if' statements are indented
elif hit_color == inner:
print('You hit the inner circle, 200 points!')
elif hit_color == bullseye:
print('You hit the bullseye, 500 points!')
else:
print('You missed! No points!')

# The shoot_arrow function goes here
def shoot_arrow():
global hit_color
arrow_x = randint(100, 300)
arrow_y = randint(100, 300)
hit_color = get(arrow_x, arrow_y)
ellipse(arrow_x, arrow_y, 15, 15)

def setup():
# Setup your game here
size(400, 400) # width and height
frame_rate(2)


def draw():
# Things to do in every frame
global outer, inner, bullseye
sky = color(92, 204, 206) # Red = 92, Green = 204, Blue = 206
grass = color(149, 212, 122)
wood = color(145, 96, 51)
outer = color(0, 120, 180)
inner = color(210, 60, 60)
bullseye = color(220, 200, 0)

no_stroke()
fill(sky)
rect(0, 0, 400, 250)
fill(grass)
rect(0, 250, 400, 150)

fill(wood)
triangle(150, 350, 200, 150, 250, 350)
fill(outer)
ellipse(200, 200, 170, 170)
fill(inner)
ellipse(200, 200, 110, 110) #Inner circle
fill(bullseye)
ellipse(200, 200, 30, 30) #Bullseye

fill(wood)
shoot_arrow()
# Keep this to run your code
run()
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
NAME: "Target Practice Example"
IDENTIFIER: "python-archery-example"
COMPONENTS:
- name: "main"
extension: "py"
location: "main.py"
index: 0
27 changes: 27 additions & 0 deletions lib/tasks/project_components/target_practice_starter/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/bin/python3

# Import library code
from p5 import *
from math import *
from random import randint

# The mouse_pressed function goes here

# The shoot_arrow function goes here

def setup():
# Setup your game here
size(400, 400) # width and height
frame_rate(2)


def draw():
# Things to do in every frame
sky = color(92, 204, 206) # Red = 92, Green = 204, Blue = 206
grass = color(149, 212, 122)
wood = color(145, 96, 51)
outer = color(0, 120, 180)


# Keep this to run your code
run()
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
NAME: "Target Practice"
IDENTIFIER: "python-archery-starter"
COMPONENTS:
- name: "main"
extension: "py"
location: "main.py"
index: 0
Loading