123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Data;
- using System.Windows.Documents;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Imaging;
- using System.Windows.Navigation;
- using System.Windows.Shapes;
- namespace Clicker
- {
- /// <summary>
- /// Логика взаимодействия для MainWindow.xaml
- /// </summary>
- public partial class MainWindow : Window
- {
- public MainWindow()
- {
- InitializeComponent();
- }
- long point = 110;
- static int click = 1;
- double sol_b1 = 10 + 10 * (30 + click * 0.2);
- double sol_b2 = 20 + 20 * (60 + click * 0.4);
- double sol_b3 = 30 + 30 * (90 + click * 0.6);
- double sol_b4 = 40 + 40 * (120 + click * 0.8);
- public void Update()
- {
- poi.Content = "Points: " + point; // Вывод Points в первый label
- cli.Content = "Points for click: " + click; // Вывод Points per click во второй label
- b1.Content = (sol_b1).ToString(); // Вывод цены Upgrade для Points per click на кнопке
- b2.Content = (sol_b2).ToString();
- b3.Content = (sol_b3).ToString();
- b4.Content = (sol_b4).ToString();
- }
- private void Image_MouseDown(object sender, MouseButtonEventArgs e)
- {
- point += click;
- Update();
- }
- private void b1_Click(object sender, RoutedEventArgs e)
- {
- if (point >= (sol_b1))
- {
- point -= Convert.ToInt64(Math.Round(sol_b1));
- click += 3;
- Update();
- }
- }
- public int b1_test(long point, double sol_b1)
- {
- if (point >= (sol_b1))
- {
- point -= Convert.ToInt64(Math.Round(sol_b1));
- click += 3;
- Update();
- return click;
- }
- else
- {
- return click;
- }
- }
- private void b2_Click(object sender, RoutedEventArgs e)
- {
- if (point >= (sol_b2))
- {
- point -= Convert.ToInt64(Math.Round(sol_b2));
- click += 6;
- Update();
- }
- }
- public int b2_test(long point, double sol_b2)
- {
- for (int i = 0; i < 2; i++)
- {
- if (point >= (sol_b2))
- {
- point -= Convert.ToInt64(Math.Round(sol_b2));
- click += 6;
- Update();
- }
- }
- return click;
- }
- private void b3_Click(object sender, RoutedEventArgs e)
- {
- if (point >= (sol_b3))
- {
- point -= Convert.ToInt64(Math.Round(sol_b3));
- click += 9;
- Update();
- }
- }
- public int b3_test(long point, double sol_b2)
- {
- for (int i = 0; i < 2; i++)
- {
- if (point >= (sol_b2))
- {
- point -= Convert.ToInt64(Math.Round(sol_b2));
- click += 9;
- Update();
- }
- }
- return click;
- }
- private void b4_Click(object sender, RoutedEventArgs e)
- {
- if (point >= (sol_b4))
- {
- point -= Convert.ToInt64(Math.Round(sol_b4));
- click += 12;
- Update();
- }
- }
- public int b4_test(long point, double sol_b2)
- {
- for (int i = 0; i < 2; i++)
- {
- if (point >= (sol_b2))
- {
- point -= Convert.ToInt64(Math.Round(sol_b2));
- click += 12;
- Update();
- }
- }
- return click;
- }
- private void Button_Click(object sender, RoutedEventArgs e)
- {
- Application.Current.Shutdown();
- }
- }
- }
|